@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif; /* Apply Urbanist font globally */
}

/* --- Hero Banner Styles --- */
.hero-banner {
    width: 100%;
    overflow: hidden; /* Needed for slider */
    position: relative; /* Crucial for positioning the absolute content */
    height: 600px; /* Set height on the main container */
    display: flex; /* Use flex to help center content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
}

/* Add a dark overlay directly to the banner for text readability */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity */
    z-index: 2; /* Above images, below text and controls */
}

.hero-slider {
    position: absolute; /* Take slider out of flow */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind the overlay and content */
}

.hero-slider .swiper-slide {
    height: 100%; /* Make slides fill the container height */
    background-size: cover;
    background-position: center;
    /* Remove display flex and align-items from slide */
    /* Remove position relative and color white */
}

/* Remove the overlay from individual slides */
/* .hero-slider .swiper-slide::before { ... remove this rule ... } */

.hero-content {
    position: relative; /* Keep content relative within the flex container */
    z-index: 3; /* Above the overlay and slider */
    max-width: 1200px;
    width: 90%; /* Ensure content doesn't touch edges */
    margin: 0 auto;
    padding: 0 20px; /* Adjust padding */
    text-align: left;
    color: #fff; /* Set text color here */
}

/* Keep existing styles for subtitle, title, description, cta-button */
.hero-content .subtitle {
    /* font-family rule inherited from * selector */
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* --- Typing Animation Styles --- */
.hero-content .title {
    /* font-family rule inherited from * selector */
    font-size: 80px; /* Adjust as needed */
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    display: inline-block; /* Needed for cursor positioning */
    position: relative; /* Needed for cursor positioning */
}

/* Blinking cursor effect */
.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 5px;
    animation: blink 0.7s infinite;
    position: absolute; /* Position relative to the title */
    bottom: 0; /* Adjust as needed */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-content .cta-button {
    display: inline-block;
    background-color: #0a6595; /* Match header blue */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 60px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Added color and border-color to transition */
    border: 2px solid #fff; /* Changed border color to white */
}

.hero-content .cta-button i {
    margin-right: 8px;
    color: #fff; /* Ensure icon color is white */
}

.hero-content .cta-button:hover {
    background-color: #fff; /* Change background to white on hover */
    color: #0a6595; /* Change text color to blue on hover */
    border-color: #fff; /* Keep border white on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-banner {
        height: 500px; /* Adjust height for mobile */
    }
    .hero-content {
        padding: 0 20px; /* Adjust padding */
        text-align: center; /* Center text on mobile */
        width: 90%;
    }
    .hero-content .title {
        font-size: 40px; /* Adjust font size */
    }
    /* Adjust cursor position/size for mobile if needed */
    .typing-cursor::after {
        bottom: 5px; /* Example adjustment */
        font-size: 40px; /* Match title size */
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        font-size: 12px;
        width: 30px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        color: #13709a;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
        font-weight: bold;
    }
}

.about-section {
    background: #fff;
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 48px;
    width: 90%;
}

.about-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    background: #f5f5f5;
    display: block;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-highlight {
    color: #13709a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.2;
}

.about-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .about-image img {
        width: 90vw;
        max-width: 350px;
        height: auto;
    }
    .about-content {
        align-items: center;
        text-align: center;
    }
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.about-checklist li {
    font-size: 17px;
    color: #222;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
}

.about-checklist li i {
    color: #13709a;
    font-size: 20px;
    margin-right: 10px;
    margin-top: 2px;
}

.why-choose-section {
    background: #fff;
    padding: 60px 0 60px 0;
    text-align: center;
}

.why-choose-header {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.why-choose-highlight {
    color: #13709a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.2;
}

.why-choose-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 0;
    line-height: 1.7;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 40px auto 0 auto;
    justify-items: center;
}

.flip-card {
    background: transparent;
    width: 100%;
    max-width: 240px;
    height: 240px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.4,2,.6,1);
    transform-style: preserve-3d;
    will-change: transform;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    background: radial-gradient(circle at 30% 30%, #072e43 50%, #006399 100%);
    color: #fff;
    padding: 24px 18px;
    transition: box-shadow 0.3s;
}

.flip-card-front i {
    font-size: 36px;
    margin-bottom: 18px;
    color: #fff;
}

.flip-card-front h3,
.flip-card-back h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.flip-card-front p,
.flip-card-back p {
    font-size: 15px;
    line-height: 1.5;
    color: #e6e6e6;
}

.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    backface-visibility: hidden;
    transform: rotateY(180deg);
    overflow: hidden;
}

.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.flip-card-back .flip-back-img {
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

@media (max-width: 1100px) {
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .flip-card {
        max-width: 340px;
        height: 200px;
        margin: 0 auto;
    }
    .why-choose-title {
        font-size: 26px;
    }
}

/* Products Showcase Section */
.products-showcase {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.showcase-subtitle {
    color: #13709a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.showcase-title {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    background-color: #13709a;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn i {
    margin-left: 8px;
}

.contact-btn:hover {
    background-color: #0a5a7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-category {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category:hover .category-image img {
    transform: scale(1.05);
}

.category-title {
    text-align: center;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .showcase-title {
        font-size: 28px;
    }
}

/* Newsletter Subscription Section */
.newsletter-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/gallery/about-welder.png') no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    z-index: 1;
}

.newsletter-container {
    position: relative;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.newsletter-content {
    flex: 1;
    padding-right: 40px;
}

.newsletter-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #13709a;
    margin-bottom: 20px;
}

.newsletter-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
}

.subscribe-btn {
    padding: 0 25px;
    height: 50px;
    background-color: #13709a;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #0a5a7a;
}

.newsletter-image {
    position: relative;
    width: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.worker-image {
    max-height: 400px;
    object-fit: contain;
}

/* Footer Styles */
.main-footer {
    background-color: #13709a;
    color: white;
    padding: 40px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    margin-right: 30px;
}

.footer-newsletter {
    display: flex;
}

.footer-newsletter input {
    height: 40px;
    width: 240px;
    padding: 0 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.footer-subscribe-btn {
    padding: 0 20px;
    height: 40px;
    background-color: white;
    color: #13709a;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-subscribe-btn:hover {
    background-color: #f0f0f0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .newsletter-container {
        flex-direction: column;
    }
    
    .newsletter-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .newsletter-image {
        width: 100%;
        justify-content: center;
    }
    
    .worker-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-logo img {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .subscribe-btn {
        width: 100%;
        border-radius: 4px;
    }
    
    .footer-newsletter {
        width: 100%;
    }
    
    .footer-newsletter input {
        flex: 1;
    }
}

/* Page Hero Section */
.page-hero {
    background: url('../images/export.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add overlay for better text readability */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 59, 82, 0.438), rgba(19, 111, 154, 0.445));
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/* About Content Section */
.about-content-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Company Section */
.about-content-section {
    padding: 80px 0;
}

.about-company-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.about-company-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-company-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-company-image:hover img {
    transform: scale(1.03);
}

.about-company-content {
    flex: 1;
}

.about-subtitle {
    color: #13709a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-description {
    margin-bottom: 25px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.about-features li i {
    color: #13709a;
    margin-right: 10px;
    font-size: 18px;
    margin-top: 2px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    background-color: #13709a;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-btn i {
    margin-right: 8px;
}

.call-btn:hover {
    background-color: #0a5a7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-company-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-company-image,
    .about-company-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-content-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-features li {
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
}
/* Industries We Serve Section */
.industries-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.industries-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0056b3;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.industry-image {
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #fff;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 0 15px;
}

.solutions-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    overflow: hidden;
}

.solutions-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.solutions-image:hover img {
    transform: scale(1.05);
}

.solutions-content {
    flex: 1;
    min-width: 300px;
}

.solutions-subtitle {
    color: #0056b3;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.solutions-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solutions-description p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.solutions-tabs {
    display: flex;
    margin: 30px 0 20px;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    color: #555;
    transition: color 0.3s ease;
}

.tab-button:hover {
    color: #0056b3;
}

.tab-button.active {
    color: #0056b3;
    font-weight: 600;
}

.tab-button.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0056b3;
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.tab-content p {
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-container {
        flex-direction: column;
    }
    
    .solutions-image, .solutions-content {
        width: 100%;
    }
    
    .solutions-tabs {
        flex-wrap: wrap;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header h5 {
    color: #0056b3;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonials-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.testimonials-intro {
    flex: 1;
    min-width: 300px;
}

.testimonials-intro p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.testimonials-intro strong {
    color: #333;
}

.testimonials-slider {
    flex: 1;
    min-width: 300px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    color: #333;
    margin: 0 0 5px;
}

.author-info p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* Swiper customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #0056b3;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials-content {
        flex-direction: column;
    }
}

/* Contact Page Styles */

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-content {
    flex: 1;
    min-width: 300px;
}

.contact-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-content h3 {
    font-size: 28px;
    color: #0056b3;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-support {
    color: #555;
    margin-bottom: 10px;
}

.contact-phone {
    margin-bottom: 30px;
}

.contact-phone a {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover {
    color: #0056b3;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.instagram {
    background-color: #e1306c;
}

.social-link.pinterest {
    background-color: #bd081c;
}

.social-link.linkedin {
    background-color: #0077b5;
}

.social-link.twitter {
    background-color: #1da1f2;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-detail-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-detail-item .icon {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-detail-item .detail h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.contact-detail-item .detail p {
    color: #555;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    outline: none;
}

.submit-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #003d7a;
}

/* Map Section */
.map-section {
    height: 450px;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    display: block;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-container,
    .contact-form-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-content h2 {
        font-size: 28px;
    }
    
    .contact-content h3 {
        font-size: 22px;
    }
    
    .contact-phone a {
        font-size: 24px;
    }
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-cards-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 20px;
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background-color: #002a4e;
    color: #fff;
    border-radius: 10px;
    margin: 0 20px 80px;
}

.support-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.support-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.support-content {
    flex: 2;
    min-width: 300px;
}

.support-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.support-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.call-us-btn {
    display: inline-block;
    background-color: #fff;
    color: #002a4e;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.call-us-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.support-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.feature i {
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-cards-container {
        flex-direction: column;
    }
    
    .support-container {
        flex-direction: column;
    }
    
    .support-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Export Page Styles */

/* Export Introduction Section */
.export-intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.export-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.export-intro-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.export-intro-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.export-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.export-intro-image:hover img {
    transform: scale(1.05);
}

.export-intro-content {
    flex: 1;
    min-width: 300px;
}

.export-intro-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.export-intro-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* World Map Styles */
.global-presence-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.global-presence-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0056b3;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.world-map-container {
    position: relative;
    margin: 40px auto;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
}

.region-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.region-marker {
    position: absolute;
    background-color: rgba(51, 51, 51, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

/* Position each region label based on the image */
.region-marker.asia {
    top: 32%;
    right: 27%;
}

.region-marker.europe {
    top: 14%;
    left: 52%;
}

.region-marker.middle-east {
    top: 30%;
    left: 55%;
}

.region-marker.africa {
    top: 52%;
    left: 50%;
}

.region-marker.north-america {
    top: 20%;
    left: 10%;
}

.region-marker.south-america {
    top: 58%;
    left: 24%;
}
.region-marker.Australia {
    top: 67%;
    right: 12%;
    
}

/* Blue dots on the map */
.region-marker::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 50%;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .region-marker {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 576px) {
    .region-markers .region-marker {
        position: static;
        display: inline-block;
        margin: 5px;
        transform: none;
    }
    
    .region-markers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        position: static;
    }
    
    .region-marker::before {
        display: none;
    }
}

.export-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.export-product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.export-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.export-product-card:hover .product-image img {
    transform: scale(1.1);
}

.export-product-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #333;
}

.export-product-card p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}



.advantages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.advantage-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.advantage-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.advantage-check i {
    color: #0056b3;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-check p {
    margin: 0;
    text-align: left;
}

/* Export Process Section */
.export-process-section {
    padding: 80px 0;
    background-color: #fff;
}

.export-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.process-step h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.process-step p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Call to Action Section */
/* Export CTA Section with Fixed Background */
.export-cta-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/export.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3);
    z-index: -1;
}

.export-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.export-map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.export-map-container {
    margin-top: 30px;
    text-align: center;
}

.full-width-map {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.primary-btn {
    background-color: #fff;
    color: #0056b3;
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-5px);
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #F5F9FC;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 1s ease;
    font-weight: 500;
    font-size: 20px;
    color: #333;
    position: relative;
}

.faq-item summary:hover {
    background-color: #f5f5f5;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0077cc;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding: 35px 35px 35px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .export-products-grid,
    .advantages-container,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .export-intro-container {
        flex-direction: column;
    }
    
    .export-cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .export-products-grid,
    .advantages-container,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}