/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #1A3C5A;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar */
.boxed-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.boxed-navbar.scrolled {
    background: #1A3C5A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.boxed-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px; /* Original: Increased from 80px to give more room for larger logo on desktop */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.boxed-logo {
    padding: 10px 0; /* Added breathing room around logo */
}

.boxed-logo img {
    height: auto; /* Switch to auto for aspect ratio preservation */
    width: auto;
    max-width: 250px; /* Width-based scaling for larger, consistent appearance (adjust based on your logo's natural size) */
    object-fit: contain; /* Handles any transparency/padding in image */
    transition: transform 0.3s ease; /* Optional hover effect */
}

.boxed-logo img:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 20px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") center/contain no-repeat;
}

.boxed-nav-links {
    display: flex;
    align-items: center;
}

.boxed-nav-links a {
    padding: 16px 20px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.boxed-nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #00A3AD;
}

.connect-btn {
    margin-left: 20px;
    padding: 10px 20px;
    border: 1px solid #1A3C5A;
    border-radius: 6px;
    background-color: #3B6D88;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.connect-btn:hover {
    background-color: #00A3AD;
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 163, 173, 0.3);
}

@media (max-width: 768px) {
    .boxed-container {
        flex-direction: row;
        justify-content: space-between;
        height: 100px; /* Original: Increased from 80px for mobile to allow larger logo without cramping toggler */
        padding: 10px 20px; /* Extra padding for better spacing on mobile */
        align-items: center;
    }

    .boxed-logo img {
        max-width: 180px; /* Original: Larger on mobile (increased from effective 45px height equivalent); scales like footer (80% feel) */
        height: auto;
    }

    .navbar-toggler {
        display: block;
        margin-left: 10px; /* Prevent overlap with logo */
    }

    .boxed-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px; /* Original: Updated to match new mobile height */
        left: 0;
        right: 0;
        background: #1A3C5A;
        padding: 20px;
        text-align: center;
    }

    .boxed-nav-links.active {
        display: flex;
    }

    .boxed-nav-links a {
        padding: 10px;
        font-size: 14px;
        border: none;
        width: 100%;
        color: #FFFFFF;
    }

    .boxed-nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #00A3AD;
    }

    .connect-btn {
        margin: 10px 0;
        width: fit-content;
        align-self: center;
        background-color: #3B6D88;
    }

    .connect-btn:hover {
        background-color: #00A3AD;
    }
}

@media (max-width: 576px) {
    .boxed-container {
        height: 90px; /* Original: Slightly reduce for very small screens if needed */
        padding: 10px 15px;
    }

    .boxed-logo img {
        max-width: 150px; /* Original: Further scale down for tiny screens to avoid toggler issues */
    }

    .boxed-nav-links {
        top: 90px; /* Original: Match the height */
    }
}

/* Base Hero Section */
.hero {
    min-height: 600px;
    padding: 120px 20px 20px; /* Original final override: Account for fixed navbar (90px + buffer) */
    background: linear-gradient(to bottom right, rgba(26, 60, 90, 0.9), rgba(0, 0, 0, 0.8)), center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #FFFFFF;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Fullscreen Hero - For index.php only */
.hero.hero-full {
    min-height: 100vh;
    padding: 20px;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    padding: 0 15px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
    overflow-wrap: break-word;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.cta-button {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary {
    background: #1A3C5A;
    color: #FFFFFF;
    border: 1px solid #1A3C5A;
}

.cta-button.primary:hover {
    background: #00A3AD;
    border-color: #00A3AD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 163, 173, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-button.secondary:hover {
    background: #FFFFFF;
    color: #1A3C5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* About Label */
.about-label {
    display: inline-block;
    background: #00A3AD;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 110px 15px 20px; /* Synced with mobile navbar (100px + buffer) */
        background-size: cover;
        background-position: center;
    }

    .hero.hero-full {
        min-height: 80vh;
        padding: 15px;
    }

    .hero-content {
        padding: 0 10px;
        max-width: 90vw;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 350px;
        padding: 100px 10px 20px; /* Adjusted for xs navbar (90px + buffer) */
    }

    .hero.hero-full {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Contact Details Section */
.contact-details-section {
    padding: 40px 0;
    background: #F8FAFC;
    text-align: center;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: stretch;
}

.contact-left {
    justify-content: flex-start;
}

.contact-right {
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    flex-direction: column;
}

.contact-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A3C5A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    font-size: 1.25rem;
    color: #00A3AD;
}

.contact-item p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 6px;
}

.contact-item a {
    color: #00A3AD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1A3C5A;
    text-decoration: underline;
}

.contact-right h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0;
    padding: 20px;
    background: #3B6D88;
    border-radius: 8px 8px 0 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.contact-right h3:hover {
    background: #00A3AD;
}

.contact-form-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1A3C5A;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    font-size: 0.95rem;
    color: #64748B;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A3AD;
    box-shadow: 0 0 5px rgba(0, 163, 173, 0.3);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    flex: 1;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #64748B;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #00A3AD;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #1A3C5A;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: auto;
}

.submit-button:hover {
    background: #00A3AD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 163, 173, 0.3);
}

/* Contact Map Section */
.contact-map-section {
    padding: 40px 0;
    background: #F8FAFC;
    text-align: center;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-details-section,
    .contact-map-section {
        padding: 40px 0;
    }

    .contact-columns {
        flex-direction: column;
        gap: 20px;
    }

    .contact-column {
        flex: 1 1 100%;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-item h3 {
        font-size: 1.15rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-item i {
        font-size: 1.15rem;
    }

    .contact-right h3 {
        font-size: 1.3rem;
        padding: 15px;
    }

    .contact-form-container {
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 8px;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 8px;
    }

    .checkbox-group label {
        font-size: 0.9rem;
    }

    .submit-button {
        font-size: 0.9rem;
        padding: 10px;
    }

    .contact-map {
        height: 250px;
    }
}

/* Stats Section */
.stats-section {
    margin-top: -45px;
    position: relative;
    z-index: 5;
    padding: 15px 0;
}

.stats-frame {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 163, 173, 0.15);
}

.stats-item h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1A3C5A;
}

.stats-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748B;
    font-weight: 500;
}

.stats-box i {
    color: #1A3C5A;
    font-size: 2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .stats-section {
        margin-top: -20px;
    }

    .stats-frame {
        padding: 10px;
    }

    .stats-box {
        padding: 15px;
        margin: 5px 0;
    }

    .stats-item h2 {
        font-size: 1.75rem;
    }

    .stats-item p {
        font-size: 0.8rem;
    }

    .stats-box i {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: #F8FAFC;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1A3C5A;
    letter-spacing: -0.025em;
}

.section-text {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-section img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-text {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section.detailed-services {
    padding: 40px 0;
    background: #F8FAFC;
}

.services-section .row:first-child {
    justify-content: space-between;
}

.services-section .row:last-child {
    justify-content: center;
}

.service-detail-row {
    margin-bottom: 60px;
}

.service-detail-row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-row:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1A3C5A;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-features {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #64748B;
}

@media (max-width: 992px) {
    .service-detail-row img {
        height: 250px;
    }

    .service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-detail-row {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-row .col-lg-6 {
        order: 1;
    }

    .service-detail-row img {
        order: 0;
        height: 200px;
        margin-bottom: 20px;
    }

    .service-detail-row.flex-lg-row-reverse {
        flex-direction: column;
    }

    .service-features {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .service-detail-row img {
        height: 180px;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

/* Partners and Clients Blocks */
.partners-block,
.clients-block {
    margin-top: 40px;
    margin-bottom: 20px;
    background: #FFFFFF;
    padding: 40px 0;
}

.partners-block .container,
.clients-block .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-bottom: 10px;
    background: transparent;
}

.partner-logo,
.client-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 135px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #CBD5E1;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.partner-logo:hover,
.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 163, 173, 0.25);
    border-color: #00A3AD;
    background: #FFFFFF;
}

.partner-logo img,
.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover img,
.client-logo:hover img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .partner-logo,
    .client-logo {
        width: 150px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .partner-logo,
    .client-logo {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .partner-logo,
    .client-logo {
        width: 100px;
        height: 75px;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 10px 0 40px;
    background: #FFFFFF;
}

.solutions-section .row:first-child {
    justify-content: center;
}

.solutions-section .row:last-child {
    justify-content: space-between;
}

.solutions-section .row:last-child .col-md-3 {
    max-width: 24%;
}

.solution-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 400px;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #00A3AD;
}

.solution-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 40px;
    text-align: center;
}

.solution-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A3C5A;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.solution-description {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
}

/* Footer Section */
.footer-section {
    background: #1C1C1C;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-section .row {
    margin-left: -15px;
    margin-right: -15px;
}

.footer-column {
    margin-bottom: 30px;
    padding: 0 15px;
    min-width: 150px;
}

.footer-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text a {
    color: #00A3AD;
    text-decoration: none;
}

.footer-text a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-text {
    font-size: 0.875rem;
    color: #CBD5E1;
    line-height: 1.6;
    overflow-wrap: break-word;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00A3AD;
}

.footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.footer-social a {
    color: #CBD5E1;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00A3AD;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #CBD5E1;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .footer-column {
        padding: 0 10px;
        min-width: 0;
    }
    .footer-text {
        font-size: 0.8125rem;
        white-space: normal;
    }
    .footer-column:not(:last-child) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .footer-section .row {
        flex-wrap: wrap;
    }
    .footer-column:not(:last-child) {
        border-right: none;
    }
    .footer-column {
        padding: 0 15px;
        text-align: center;
        min-width: auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-logo-img {
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 0.8125rem;
    }
    .footer-text {
        font-size: 0.75rem;
    }
    .footer-social {
        gap: 10px;
    }
}

/* Additional Sections (About Main, Clients Carousel, Timeline, CTA, Services Timeline) */
/* These were appended in original; kept as-is but fixed syntax errors like missing closures, invalid properties */

.about-main {
    padding: 40px 0;
    background: #F8FAFC;
    color: #1A3C5A;
}

.about-main .about-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-main .about-text {
    flex: 1 1 400px;
}

.about-main .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1A3C5A;
}

.about-main .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 1rem;
}

.about-main .about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-main .about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-main .about-image img:hover {
    transform: translateY(-6px);
}

.about-main .about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-main .value-item h3 {
    font-size: 1.75rem;
    color: #1A3C5A;
    margin-bottom: 12px;
}

.about-main .value-item p {
    color: #64748B;
    line-height: 1.6;
}

.about-main .about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.about-main .stat-box {
    flex: 1 1 150px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-main .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-main .stat-box h4 {
    font-size: 2.25rem;
    color: #1A3C5A;
    margin-bottom: 6px;
}

.about-main .stat-box p {
    font-size: 0.95rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-main .about-team {
    text-align: center;
    margin-bottom: 60px;
}

.about-main .about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1A3C5A;
}

.about-main .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.about-main .team-member {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-main .team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-main .team-member img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

.about-main .team-member h4 {
    font-size: 1.25rem;
    color: #1A3C5A;
    margin-bottom: 8px;
}

.about-main .team-member p {
    color: #64748B;
    font-size: 0.9rem;
}

.about-main .about-cta {
    text-align: center;
    margin-top: 40px;
}

.about-main .about-cta .btn {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 6px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-main .about-intro {
        flex-direction: column;
    }

    .about-main .about-image {
        order: -1;
    }

    .about-main .value-item h3 {
        font-size: 1.5rem;
    }

    .about-main .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.clients-carousel-section {
    position: relative;
}

.clients-carousel-section .client-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding: 10px 0;
}

.clients-carousel-section .client-row img {
    height: 60px;
    width: auto;
    flex: 0 0 auto;
    max-width: 10%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.clients-carousel-section .client-row img:hover {
    transform: scale(1.1);
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .clients-carousel-section .client-row img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .clients-carousel-section {
        padding: 40px 0;
    }

    .clients-carousel-section .client-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .clients-carousel-section .client-row img {
        margin: 8px;
    }
}

.timeline-section {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #3B6D88, #00A3AD);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 4px solid #3B6D88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: translateX(-50%) scale(1.1);
    background: #00A3AD;
    border-color: #FFFFFF;
}

.timeline-icon i {
    color: #3B6D88;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-icon i {
    color: #FFFFFF;
}

.timeline-content {
    width: 45%;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.timeline-item.left .timeline-content {
    margin-right: 80px;
}

.timeline-item.right .timeline-content {
    margin-left: 80px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.timeline-item.left .timeline-content::before {
    right: -20px;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #FFFFFF;
}

.timeline-item.right .timeline-content::before {
    left: -20px;
    border-width: 10px 20px 10px 0;
    border-color: transparent #FFFFFF transparent transparent;
}

.timeline-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #3B6D88;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

.timeline-description ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.timeline-description li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.timeline-image-container {
    width: 45%;
    position: relative;
    z-index: 1;
}

.timeline-item.left .timeline-image-container {
    margin-left: 80px;
}

.timeline-item.right .timeline-image-container {
    margin-right: 80px;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-image {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .timeline-content,
    .timeline-image-container {
        width: 48%;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-right: 60px;
        margin-left: 60px;
    }

    .timeline-item.left .timeline-image-container,
    .timeline-item.right .timeline-image-container {
        margin-left: 60px;
        margin-right: 60px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .timeline-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(0);
        width: 50px;
        height: 50px;
    }

    .timeline-item:hover .timeline-icon {
        transform: scale(1.1);
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin: 20px 0 20px 80px;
        order: 2;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -20px;
        border-width: 10px 20px 10px 0;
        border-color: transparent #FFFFFF transparent transparent;
    }

    .timeline-image-container {
        width: calc(100% - 80px);
        margin: 20px 0 20px 80px;
        order: 1;
    }

    .timeline-item.left .timeline-image-container,
    .timeline-item.right .timeline-image-container {
        margin-left: 80px;
        margin-right: 0;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }

    .timeline-description li {
        font-size: 0.85rem;
    }

    .timeline-image {
        height: 150px;
    }

    .timeline-description p {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-icon {
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .timeline-content,
    .timeline-image-container {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-image {
        height: 120px;
    }
}

.cta-section {
    padding: 40px 0;
    background: #F8FAFC;
    text-align: center;
}

.cta-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .section-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cta-section .section-title {
        font-size: 2rem;
    }

    .cta-section .section-text {
        font-size: 1rem;
    }
}

.clients-carousel-section {
    padding: 60px 0;
    background: #F8FAFC;
    overflow: hidden;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
}

.client-logo {
    flex: 0 0 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .clients-carousel-section {
        padding: 40px 0;
    }

    .client-logo {
        flex: 0 0 150px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .client-logo {
        flex: 0 0 120px;
        height: 80px;
    }
}

.services-section.detailed-services {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
}

.services-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.services-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.services-timeline-item.left {
    justify-content: flex-start;
}

.services-timeline-item.right {
    justify-content: flex-end;
}

.services-timeline-content {
    width: 45%;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.services-timeline-item.left .services-timeline-content {
    margin-right: 80px;
}

.services-timeline-item.right .services-timeline-content {
    margin-left: 80px;
}

.services-timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.services-timeline-item.left .services-timeline-content::before {
    right: -20px;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #FFFFFF;
}

.services-timeline-item.right .services-timeline-content::before {
    left: -20px;
    border-width: 10px 20px 10px 0;
    border-color: transparent #FFFFFF transparent transparent;
}

.services-timeline-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #3B6D88;
    margin-bottom: 15px;
}

.services-timeline-description {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

.services-timeline-description ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.services-timeline-description li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.services-timeline-image-container {
    width: 45%;
    position: relative;
    z-index: 1;
}

.services-timeline-item.left .services-timeline-image-container {
    margin-left: 80px;
}

.services-timeline-item.right .services-timeline-image-container {
    margin-right: 80px;
}

.services-timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services-timeline-item:hover .services-timeline-image {
    transform: scale(1.02);
}

.services-timeline-item:hover .services-timeline-content {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partners-block {
    margin-top: 60px;
}

@media (max-width: 992px) {
    .services-timeline-content,
    .services-timeline-image-container {
        width: 48%;
    }

    .services-timeline-item.left .services-timeline-content,
    .services-timeline-item.right .services-timeline-content {
        margin-right: 60px;
        margin-left: 60px;
    }

    .services-timeline-item.left .services-timeline-image-container,
    .services-timeline-item.right .services-timeline-image-container {
        margin-left: 60px;
        margin-right: 60px;
    }

    .services-timeline-title {
        font-size: 1.5rem;
    }

    .services-timeline-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .services-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .services-timeline-item.left,
    .services-timeline-item.right {
        justify-content: flex-start;
    }

    .services-timeline-content {
        width: calc(100% - 80px);
        margin: 20px 0 20px 80px;
        order: 2;
    }

    .services-timeline-item.left .services-timeline-content::before,
    .services-timeline-item.right .services-timeline-content::before {
        left: -20px;
        border-width: 10px 20px 10px 0;
        border-color: transparent #FFFFFF transparent transparent;
    }

    .services-timeline-image-container {
        width: calc(100% - 80px);
        margin: 20px 0 20px 80px;
        order: 1;
    }

    .services-timeline-item.left .services-timeline-image-container,
    .services-timeline-item.right .services-timeline-image-container {
        margin-left: 80px;
        margin-right: 0;
    }

    .services-timeline-title {
        font-size: 1.5rem;
    }

    .services-timeline-description {
        font-size: 0.9rem;
    }

    .services-timeline-description li {
        font-size: 0.85rem;
    }

    .services-timeline-image {
        height: 150px;
    }

    .services-timeline-description p {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .services-timeline-content,
    .services-timeline-image-container {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .services-timeline-title {
        font-size: 1.3rem;
    }

    .services-timeline-image {
        height: 120px;
    }
}