/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC:wght@400&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #00204E;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: #00204e;
    backdrop-filter: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Country Selector Styles */
.country-selector {
    display: flex;
    align-items: center;
}

.country-dropdown {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: 'Nunito Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.country-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.country-dropdown:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #B6CEF0;
    box-shadow: 0 0 0 2px rgba(182, 206, 240, 0.3);
}

.country-dropdown option {
    background-color: #00204E;
    color: white;
    padding: 8px 12px;
    font-family: 'Nunito Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', Arial, sans-serif;
}

.nav-link {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 0 0 0;
    position: relative;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 100vh;
}

.hero-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.hero-image {
    width: auto;
    height: calc(100vh - 80px);
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    display: block;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 40px 80px;
    min-height: 100vh;
    text-align: center;
    text-indent: -1px;
}

.hero-heading {
    font-family: 'Nunito Sans', 'Futura', 'Arial', sans-serif;
    font-size: 55px;
    font-weight: normal;
    line-height: 1.2;
    color: white;
    margin: 0;
    text-align: center;
}

.heading-line {
    display: block;
}

.subheading-line {
    display: block;
}

/* Mobile layout - keep heading and subheading as single line */
@media (max-width: 768px) {
    .heading-line {
        display: inline;
    }
    
    .subheading-line {
        display: inline;
    }
    
    /* Force horizontal layout + allow shrinking */
    .header-content {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        min-width: 0; /* important for flex children */
        padding: 0 15px;
        width: 100%;
        height: 60px;
    }

    /* Let flex children actually shrink */
    .header-content > * { min-width: 0; }

    /* Logo: allow shrink, remove hard max calc */
    .logo {
        /* height/width can stay if needed, but allow shrink */
        flex: 1 1 auto;
        min-width: 0;
        order: 2;
    }

    /* If .logo is a wrapper around <img>, control the image size here */
    .logo img {
        display: block;
        height: 20px;   /* adjust as you like */
        width: auto;
        max-width: 100%;
    }

    /* Right side: keep content tight */
    .header-right {
        display: flex;
        align-items: center;
        flex: 0 0 auto; /* don't grow, don't shrink */
        order: 1;
    }

    /* Hamburger button as inline-flex (z-index works only if positioned) */
    .hamburger-menu {
        display: inline-flex;
        position: relative; /* so z-index works if needed */
        width: 28px;
        height: 28px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: #fff; /* tweak per theme */
        border-radius: 1px;
        transition: all 0.3s ease;
    }

    .nav-menu {
        display: none;
    }

    .country-selector {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-right {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .country-dropdown {
        font-size: 11px;
        padding: 5px 6px;
        min-width: 100px;
    }
}

.hero-subheading {
    font-family: 'Nunito Sans', 'Futura', 'Arial', sans-serif;
    font-size: 35px;
    font-weight: normal;
    line-height: 1.4;
    color: white;
    margin: 20px 0 0 0;
    text-align: center;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.cta-button {
    font-family: 'Nunito Sans', 'Futura', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background-color: #B6CEF0;
    color: #1a365d;
    border-color: #B6CEF0;
}

.cta-primary:hover {
    background-color: #a3c1ed;
    border-color: #a3c1ed;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-secondary:hover {
    background-color: white;
    color: #1a365d;
    transform: translateY(-2px);
}

.hero-heading .highlight {
    color: #B6CEF0;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Secondary Section */
.secondary-section {
    background-color: #B6CEF0;
    padding: 80px 0;
    width: 100%;
}

.secondary-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.secondary-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: #00204F;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.secondary-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: #2C3E50;
    margin: 0 0 50px 0;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #00204F;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.service-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.3;
}

.service-description {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: #E8E8E8;
}

.learn-more-btn {
    display: inline-block;
    background-color: #6393dd;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.learn-more-btn:hover {
    background-color: #5580cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 147, 221, 0.3);
}

/* Why Sentivora Section */
.why-section {
    background-color: white;
    padding: 80px 0;
    width: 100%;
}

.why-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.why-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: #00204F;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.why-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: #666666;
    margin: 0 auto 50px auto;
    line-height: 1.4;
    max-width: 800px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: #00204F;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.feature-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #E8E8E8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #B6CEF0;
    padding: 80px 0;
    width: 100%;
}

.testimonials-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.testimonials-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: #00204F;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.testimonials-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: #00204F;
    margin: 0 auto 50px auto;
    line-height: 1.4;
    max-width: 900px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    overflow: hidden;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.company-logo-image {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.mld-homes-logo {
    max-height: 55px;
}

.trenzi-logo {
    max-height: 30px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #00204F;
    margin: 0;
}

.profile-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.testimonial-text {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin: 0 0 20px 0;
    font-style: italic;
    flex-grow: 1;
}

.company-logo {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #00204F;
    text-align: center;
    padding: 10px;
    border-top: 2px solid #B6CEF0;
    margin-top: auto;
}

/* Contact Section */
.contact-section {
    background-color: #00204F;
    padding: 80px 0;
    width: 100%;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.contact-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.contact-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    color: white;
    margin: 0 auto 50px auto;
    line-height: 1.4;
    max-width: 600px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}

.contact-form-wrapper {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    font-family: 'Nunito Sans', Arial, sans-serif;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00204F;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    font-family: 'Nunito Sans', Arial, sans-serif;
    background-color: #00204e;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #001a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 32, 78, 0.3);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details {
    background-color: #00204F;
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.contact-info-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: white;
}

.contact-text p {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    color: #E8E8E8;
    line-height: 1.4;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: black;
    padding: 40px 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    color: #E8E8E8;
    margin: 0;
    line-height: 1.4;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #00204F;
    color: white;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
    background-color: #ffffff;
    color: #00204F;
    transform: translateY(0) scale(1.1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #00204F;
    line-height: 1.3;
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 20px 30px 30px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.modal-body .contact-form-wrapper {
    margin: 0;
}

.modal-body .contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group input,
.modal-body .form-group textarea,
.modal-body .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Nunito Sans', Arial, sans-serif;
    background-color: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal-body .form-group input:focus,
.modal-body .form-group textarea:focus,
.modal-body .form-group select:focus {
    outline: none;
    border-color: #00204F;
}

.modal-body .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #00204e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-body .submit-btn:hover {
    background-color: #001a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 32, 78, 0.3);
}

/* Phone Input Group Styling */
.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-input-group select {
    width: 30% !important;
    min-width: 100px !important;
    max-width: 150px !important;
    flex: none !important;
}

.phone-input-group input[type="tel"] {
    width: 70% !important;
    flex: none !important;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 5px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        border-radius: 15px;
        max-height: calc(100vh - 40px);
        width: calc(100% - 10px);
        margin: 0 auto;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 15px 15px 10px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 1;
    }
    
    .modal-header h2 {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .modal-body {
        padding: 10px 15px 15px;
    }
    
    .modal-body .form-group {
        margin-bottom: 15px;
    }
    
    .modal-body .form-group input,
    .modal-body .form-group textarea,
    .modal-body .form-group select {
        padding: 10px;
        font-size: 14px;
    }
    
    .modal-body .submit-btn {
        padding: 12px;
        font-size: 14px;
        margin-top: 5px;
    }
    
    /* Phone input responsive adjustments */
    .phone-input-group {
        gap: 8px;
    }
    
    .phone-input-group select {
        width: 35% !important;
        min-width: 90px !important;
        max-width: 120px !important;
    }
    
    .phone-input-group input[type="tel"] {
        width: 65% !important;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 2px;
        padding-top: 10px;
    }
    
    .modal-content {
        border-radius: 10px;
        max-height: calc(100vh - 20px);
        width: calc(100% - 4px);
    }
    
    .modal-header {
        padding: 12px 12px 8px;
    }
    
    .modal-header h2 {
        font-size: 16px;
    }
    
    /* Phone input responsive adjustments for very small screens */
    .phone-input-group {
        gap: 5px;
    }
    
    .phone-input-group select {
        width: 40% !important;
        min-width: 80px !important;
        max-width: 100px !important;
    }
    
    .phone-input-group input[type="tel"] {
        width: 60% !important;
    }
    
    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
    
    .modal-body {
        padding: 8px 12px 12px;
    }
    
    .modal-body .form-group {
        margin-bottom: 12px;
    }
    
    .modal-body .form-group input,
    .modal-body .form-group textarea,
    .modal-body .form-group select {
        padding: 8px;
        font-size: 13px;
    }
    
    .modal-body .submit-btn {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .modal-overlay {
        padding: 1px;
        padding-top: 5px;
    }
    
    .modal-content {
        border-radius: 8px;
        max-height: calc(100vh - 10px);
        width: calc(100% - 2px);
    }
    
    .modal-header {
        padding: 10px 10px 6px;
    }
    
    .modal-header h2 {
        font-size: 14px;
    }
    
    .modal-body {
        padding: 6px 10px 10px;
    }
    
    .modal-body .form-group {
        margin-bottom: 10px;
    }
    
    .modal-body .form-group input,
    .modal-body .form-group textarea,
    .modal-body .form-group select {
        padding: 6px;
        font-size: 12px;
    }
    
    .modal-body .submit-btn {
        padding: 8px;
        font-size: 12px;
    }
}

.logo {
    width: 318px;
    height: auto;
    object-fit: contain;
}

/* Full-page container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 0.75rem 1rem;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .logo {
        width: auto;
        height: 50px;
        max-width: calc(100vw - 100px);
        flex: 1;
        margin-left: 20px;
        order: 2;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero {
        padding: 0;
        flex-direction: column;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .hero-left {
        order: 2;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        object-fit: cover;
        object-position: left bottom;
    }
    
    .hero-right {
        order: 1;
        padding: 120px 20px 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        min-height: auto;
    }
    
    .hero-heading {
        font-size: 42px;
        text-align: center;
    }
    
    .hero-subheading {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .secondary-section {
        padding: 60px 0;
    }
    
    .secondary-content {
        padding: 0 20px;
    }
    
    .secondary-heading {
        font-size: 45px;
    }
    
    .secondary-subheading {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .why-section {
        padding: 60px 0;
    }
    
    .why-content {
        padding: 0 20px;
    }
    
    .why-heading {
        font-size: 45px;
    }
    
    .why-subheading {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-content {
        padding: 0 20px;
    }
    
    .testimonials-heading {
        font-size: 45px;
    }
    
    .testimonials-subheading {
        font-size: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-title {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .company-logo {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-heading {
        font-size: 45px;
    }
    
    .contact-subheading {
        font-size: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-details {
        padding: 30px 25px;
    }
    
    .contact-info-title {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .contact-text strong {
        font-size: 15px;
    }
    
    .contact-text p {
        font-size: 15px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .header {
        padding: 0.5rem 0.75rem;
    }
    
    .logo {
        width: 180px;
        height: auto;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    

    
    .hero {
        padding: 0;
        flex-direction: column;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .hero-left {
        order: 2;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        max-width: 350px;
        border-radius: 10px;
        object-fit: contain;
    }
    
    .hero-right {
        order: 1;
        padding: 80px 20px 40px;
        min-height: auto;
    }
    
    .hero-heading {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-subheading {
        font-size: 22px;
        text-align: center;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
        width: 100%;
        max-width: 280px;
    }
    
    .secondary-section {
        padding: 40px 0;
    }
    
    .secondary-content {
        padding: 0 20px;
    }
    
    .secondary-heading {
        font-size: 36px;
    }
    
    .secondary-subheading {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .why-section {
        padding: 40px 0;
    }
    
    .why-content {
        padding: 0 20px;
    }
    
    .why-heading {
        font-size: 36px;
    }
    
    .why-subheading {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-content {
        padding: 0 20px;
    }
    
    .testimonials-heading {
        font-size: 36px;
    }
    
    .testimonials-subheading {
        font-size: 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .profile-image {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 10px;
    }
    
    .profile-name {
        font-size: 15px;
    }
    
    .profile-title {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .company-logo {
        font-size: 13px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .contact-subheading {
        font-size: 18px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-details {
        padding: 25px 20px;
    }
    
    .contact-info-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .contact-icon {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .contact-text strong {
        font-size: 14px;
    }
    
    .contact-text p {
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 12px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-text p {
        font-size: 14px;
    }
}

/* Ensure no horizontal scroll */
body {
    overflow-x: hidden;
}

/* Mosaic Transition Styles */
.mosaic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    display: none;
    /* Remove CSS transitions - GSAP will handle all animations */
}

.mosaic-overlay.active {
    pointer-events: all;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(8, 1fr);
    width: 100%;
    height: 100%;
    gap: 1px;
    perspective: 1200px;
}

.mosaic-tile {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    border-radius: 2px;
}

.tile-front,
.tile-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-front {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: rotateY(0deg);
}

.tile-back {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: rotateY(180deg);
}

.tile-services-preview {
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .tile-services-preview {
        font-size: 0.6rem;
    }
}

.mosaic-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    backface-visibility: hidden;
}

/* CSS transition delays removed - GSAP handles all staggered animations */

/* Services Page Styles */
.services-page {
    min-height: 100vh;
    padding: 120px 0 80px 0;
    background-color: #00204E;
}

.services-page-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.services-page-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: white;
    margin: 0 0 80px 0;
    line-height: 1.2;
}

/* Service Section Styles */
.service-section {
    margin-bottom: 4rem;
    text-align: left;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-text {
    padding-right: 1rem;
}

.service-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-title a:hover {
    opacity: 0.8;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card-link:hover {
    transform: translateY(-5px);
}

.service-card-link:hover .service-card {
    box-shadow: 0 15px 40px rgba(0, 32, 79, 0.15);
}

.service-description {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E8E8E8;
    margin: 0;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile styles for services page */
@media (max-width: 768px) {
    .services-page {
        padding: 100px 0 60px 0;
    }
    
    .services-page-content {
        padding: 0 20px;
    }
    
    .services-page-heading {
        font-size: 42px;
        margin-bottom: 60px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-text {
        padding-right: 0;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .mosaic-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(8, 1fr);
    }
}

/* Pricing Table Styles */
.ai-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 4px;
    border-radius: 4px;
    margin-left: 6px;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    top: -1px;
    text-align: center;
    width: 16px;
    height: 16px;
    line-height: 12px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
    }
}
.pricing-section {
    padding: 80px 0;
    background-color: #00204E;
}

.pricing-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.pricing-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.pricing-subheading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    color: #E8E8E8;
    margin: 0 0 60px 0;
    line-height: 1.4;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.2);
    border-color: #4facfe;
}

.pricing-card.popular {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito Sans', Arial, sans-serif;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.plan-price {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 18px;
    color: #4facfe;
    font-weight: 600;
}

.plan-features {
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #E8E8E8;
}

.checkmark {
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-button {
    width: 100%;
    padding: 15px 30px;
    background-color: #6393dd;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: #5a7bc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 147, 221, 0.3);
}

.plan-button:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Mobile styles for pricing table */
@media (max-width: 768px) {
    .pricing-content {
        padding: 0 20px;
    }
    
    .pricing-heading {
        font-size: 36px;
    }
    
    .pricing-subheading {
        font-size: 18px;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .feature-item {
        font-size: 13px;
    }
}

/* Full width utility class for future use */
.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Pricing Button Styles */
.pricing-btn {
    background-color: #6393dd;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.pricing-btn:hover {
    background-color: #5a7bc4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 147, 221, 0.3);
}

/* E-commerce Platform Page Styles */
.feature-section-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 8px;
    min-height: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-image-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.image-placeholder-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.placeholder-text {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.placeholder-subtitle {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive design for feature sections */
@media (max-width: 768px) {
    .feature-section-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-image-placeholder {
        min-height: 150px;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    .placeholder-subtitle {
        font-size: 0.8rem;
    }
}

/* E-commerce Platform Page Styles */
.ecommerce-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.section-heading {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.feature-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E8E8E8;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E8E8E8;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-list strong {
    color: white;
    font-weight: 600;
}

/* Mobile styles for e-commerce page */
@media (max-width: 768px) {
    .ecommerce-content {
        padding: 0 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .feature-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description,
    .feature-list li {
        font-size: 0.9rem;
    }
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #00204E 0%, #1a3a6b 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.team-hero .hero-title {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.team-hero .hero-subtitle {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.2rem;
    color: #B6CEF0;
    margin: 0;
    line-height: 1.4;
}

.team-section {
    padding: 80px 0;
    background-color: #00204E;
}

/* Founder Row - Featured Layout */
.founder-row {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.founder-card {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(79, 172, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
}

.founder-card .member-image {
    flex-shrink: 0;
    margin-bottom: 0;
}

.founder-card .profile-img {
    width: 180px;
    height: 180px;
    border: 5px solid rgba(79, 172, 254, 0.5);
    border-radius: 50%;
    object-fit: cover;
}

.founder-card .member-info {
    flex: 1;
    text-align: left;
}

.founder-card .member-name {
    font-size: 2.2rem;
    color: #4facfe;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.founder-card .member-position {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #4facfe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.founder-card .member-bio {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #E8E8E8;
    max-height: 6rem; /* Approximately 4 lines (1.5 line-height * 4 lines) */
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar styling for founder bio */
.founder-card .member-bio::-webkit-scrollbar {
    width: 6px;
}

.founder-card .member-bio::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.founder-card .member-bio::-webkit-scrollbar-thumb {
    background: rgba(79, 172, 254, 0.6);
    border-radius: 3px;
}

.founder-card .member-bio::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 172, 254, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.member-image {
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover .profile-img {
    border-color: #4facfe;
    transform: scale(1.05);
}

.member-name {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.member-position {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #E8E8E8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.member-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.member-email {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 0.9rem;
    color: #B6CEF0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

/* Keep founder card social links left-aligned */
.founder-card .member-social {
    justify-content: flex-start;
}

.member-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #B6CEF0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social .social-link:hover {
    background: #4facfe;
    color: white;
    transform: translateY(-2px);
}

/* Navigation active state for team page */
.nav-link.active {
    color: #4facfe;
    font-weight: 600;
}

/* Mobile styles for team page */
@media (max-width: 768px) {
    .team-hero {
        padding: 100px 20px 60px;
    }
    
    .team-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .team-section {
        padding: 60px 20px;
    }
    
    .founder-row {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .founder-card {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .founder-card .member-image {
        margin-bottom: 1rem;
    }
    
    .founder-card .profile-img {
        width: 140px;
        height: 140px;
    }
    
    .founder-card .member-info {
        text-align: center;
    }
}

/* Expand Bio Button Styles */
.expand-bio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: #4facfe;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Nunito Sans', Arial, sans-serif;
}

.expand-bio-btn:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.5);
    transform: translateY(-1px);
}

.expand-bio-btn svg {
    transition: transform 0.3s ease;
}

.expand-bio-btn:hover svg {
    transform: scale(1.1);
}

/* Bio Modal Styles */
.bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bio-modal.show {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.bio-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #B6CEF0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 1rem 2rem 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 120px);
}

.modal-bio-content {
    font-family: 'Nunito Sans', Arial, sans-serif;
    line-height: 1.7;
    color: #E8E8E8;
}

.modal-bio-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.modal-bio-content p:last-child {
    margin-bottom: 0;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(79, 172, 254, 0.6);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 172, 254, 0.8);
}

/* Mobile styles for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
        max-height: calc(85vh - 100px);
    }
    
    .modal-bio-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .expand-bio-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .founder-card .member-name {
        font-size: 1.8rem;
    }
    
    .founder-card .member-position {
        font-size: 1.1rem;
    }
    
    .founder-card .member-bio {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-position {
        font-size: 0.9rem;
    }
    
    .member-bio {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1001;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #00204f;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #B6CEF0;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    color: #4A90E2;
    padding-left: 30px;
}

.mobile-country-selector {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-country-dropdown {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .country-selector {
        display: none;
    }
}
