:root {
    --primary: #1a3a6c;
    --secondary: #f17624;
    --accent: #4caf50;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn:hover {
    background-color: #e69500;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: end;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu li.active a {
    color: var(--secondary);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Enhanced Language Selector */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    background: rgba(26, 58, 108, 0.05);
    border: none;
    border-radius: 30px;
    padding: 8px 20px 8px 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(26, 58, 108, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.lang-btn i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.lang-btn:hover i {
    transform: rotate(15deg);
}

.lang-btn span {
    color: var(--primary);
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.language-selector.active .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.lang-option {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.lang-option:hover {
    background: rgba(245, 166, 35, 0.08);
}

.lang-option.active {
    background: rgba(26, 58, 108, 0.05);
}

.lang-option.active:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    color: var(--accent);
}

.lang-name {
    font-weight: 500;
    color: var(--dark);
}

.lang-code {
    color: var(--gray);
    font-size: 13px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(3, 26, 63, 0.9)), url('../Images/photo-1504384308090-c894fdcc538d.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Mobile Language Selector */
.mobile-lang-selector {
    display: none;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-lang-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.mobile-lang-title i {
    margin-right: 10px;
    color: var(--secondary);
}

.mobile-lang-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(26, 58, 108, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-option:hover {
    background: rgba(245, 166, 35, 0.1);
}

.mobile-lang-option.active {
    background: rgba(26, 58, 108, 0.1);
    border: 1px solid var(--primary);
}

/* Card Styles */
.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--secondary);
}

/* Products Section */
.products {
    background-color: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(26, 58, 108, 0.05);
    border-radius: var(--radius);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Partners Section */
.partners {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.partners-title {
    text-align: center;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: var(--transition);
    text-align: center;
}

.partner-logo:hover {
    filter: grayscale(0) brightness(100%);
    opacity: 1;
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
}

/* Hero Section for Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(3, 26, 63, 0.85)), url('../Images/wp4863785.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Section for Contact Page */
.contact-section {
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary), #14325a);
    color: white;
    position: relative;
}

.contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Images/45-degree-fabric-light.png');
    opacity: 0.05;
}

.contact-info h2 {
    color: white;
    margin-bottom: 30px;
    position: relative;
    font-size: 2.2rem;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.contact-info p {
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.contact-details h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-details p,
.contact-details a {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
}

.social-contact a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.contact-form {
    padding: 60px 40px;
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
}

.contact-form h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
    outline: none;
    background: white;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map Section */
.map-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* QR Code and Instant Contact Section */
.qr-contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.qr-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    padding: 30px 25px;
    position: relative;
    z-index: 1;
}

.qr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.qr-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.qr-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 15px;
}

.qr-icon.whatsapp {
    background: linear-gradient(to bottom right, #25D366, #128C7E);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.qr-icon.wechat {
    background: linear-gradient(to bottom right, #07C160, #069548);
    box-shadow: 0 5px 15px rgba(7, 193, 96, 0.3);
}

.qr-icon.telegram {
    background: linear-gradient(to bottom right, #60c4f2, #48abe0);
    box-shadow: 0 5px 15px rgba(96, 191, 242, 0.3);
}

.qr-code {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px 0;
}

.qr-code img {
    width: 180px;
    height: 180px;
    display: block;
    margin: 0 auto;
}

.qr-info p {
    margin: 15px 0;
    color: var(--gray);
}

.direct-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-option {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-option .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 58, 108, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-option .contact-details {
    flex: 1;
}

.contact-option h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-option a:not(.btn) {
    color: var(--primary);
    font-weight: 500;
    font-size: 18px;
    display: block;
    margin: 10px 0;
    transition: var(--transition);
}

.contact-option a:not(.btn):hover {
    color: var(--secondary);
}

/* FAQ Section */
.faq-section {
    margin-top: 100px;
    background: white;
    border-radius: 15px;
    padding: 70px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
}

.faq-question i {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: #1a1f2e;
    color: #a0aec0;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.margin-t70 {
    margin-top: 70px;
}

.margin-b40 {
    margin-bottom: 40px;
}

.margin-b60 {
    margin-bottom: 60px;
}

        /* Additional styles specific to about page */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(3, 26, 63, 0.8)), url('../Images/about-hero-77705c0f0d4a.avif');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 80px;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .about-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            animation: fadeInUp 1.2s ease;
        }

        .journey-section {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .journey-container {
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 100px auto 50px;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            animation: fadeIn 1s ease;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--secondary);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -13px;
        }

        .timeline-item:nth-child(even)::after {
            left: -13px;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .timeline-year {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
        }

        .values-section {
            padding: 100px 0;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 30px;
            text-align: center;
            border-top: 5px solid var(--secondary);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: rgba(245, 166, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: var(--secondary);
        }

        .team-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .team-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-img img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 25px 20px;
        }

        .team-name {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .team-role {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .team-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            transition: all 0.3s ease;
            color: var(--primary);
        }

        .team-social a:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }

        .global-presence {
            padding: 80px 0;
            background: white;
        }

        .map-container {
            position: relative;
            margin-top: 50px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        .map-container img {
            object-fit: cover;
        }

        .map-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 300px;
        }

        .stats-section {
            padding: 100px 0;
            background: linear-gradient(to right, var(--primary), #14325a);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../Images/trade-consulting-banner-2.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }


/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
            .about-hero h1 {
                font-size: 2.8rem;
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item:nth-child(odd) .timeline-content {
                text-align: left;
            }

            .timeline-item::after {
                left: 18px;
                right: auto;
            }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 280px;
        height: calc(100vh - 80px);
        padding: 30px 0 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0 30px 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .language-selector {
        display: none;
    }

    .mobile-lang-selector {
        display: block;
    }

    .contact-hero {
        padding: 150px 0 80px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .section {
        padding: 70px 0;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .qr-grid,
    .direct-contact {
        grid-template-columns: 1fr;
    }

    .direct-contact {
        padding: 30px;
    }

    .qr-card {
        padding: 25px 20px;
    }

            .about-hero {
                padding: 150px 0 80px;
            }

            .about-hero h1 {
                font-size: 2.2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 100%;
    }

    .map-overlay {
        display: none;
    }

    .stat-box {
        padding: 15px;
    }

    .contact-info-container,
    .contact-form-container {
        padding: 40px 25px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-bottom: 15px;
    }

    .contact-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }