/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #111;
}

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIntro 5s ease-in-out forwards;
    background-image: url('https://www.dropbox.com/scl/fi/lkk4hq9ifoev4pxljeaan/hero-image-1.jpg?rlkey=2e682zyub0yfy7rvvay6h13i7&st=6xzofjiq&raw=1');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.intro-text {
    font-size: 5.5rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
}

@keyframes fadeIntro {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    background-color: #ffffff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    z-index: 1002; /* Keeps logo above sidebar on mobile */
}

.logo-box {
    background-color: #222;
    color: white;
    padding: 4px;
    border-radius: 4px;
    font-size: 1.1rem;
}

/* Hamburger Icon Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002; /* Keeps hamburger above the sidebar */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a.active {
    border-bottom: 2px solid #33333300;
    padding-bottom: 2px;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sticky .nav-container {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 5%;
}

.hero {
    min-height: 100vh;
    background-image: url('https://www.dropbox.com/scl/fi/lkk4hq9ifoev4pxljeaan/hero-image-1.jpg?rlkey=2e682zyub0yfy7rvvay6h13i7&st=6xzofjiq&raw=1');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin-top: 80px;
}

.trusted-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Buttons */
.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Mobile View */
@media screen and (max-width: 768px) {
    /* Adjust text sizes */
    .intro-text {
        font-size: 3rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .nav-container {
        padding: 15px 20px;
        width: 95%;
    }

    /* Show hamburger icon */
    .hamburger {
        display: flex;
    }

    /* Transform regular nav into a sidebar */
    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen by default */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }

    /* Class added via JS to slide the sidebar in */
    nav.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hamburger icon animation into an 'X' */
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}







/* Container & Base Styles */
.who-we-are {
    padding: 80px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.who-we-are .container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Tag Styles */
.tag {
    display: inline-block;
    border: 1px solid #c4c4c4;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 25px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Heading Styles */
.who-we-are h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

.who-we-are h2 .muted {
    color: #888888;
}

/* Stats Grid - Mobile First (2x2 Grid) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    background-color: #f5f5f5;
    padding: 30px 15px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.4;
    text-align: center;
}

/* Desktop View (4 columns) */
@media screen and (min-width: 768px) {
    .who-we-are h2 {
        font-size: 3rem;
        margin-bottom: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 40px 20px;
    }

    .stat-num {
        font-size: 2.2rem;
    }
    
    /* Remove the forced line breaks on desktop if preferred, or keep them for visual balance */
    .stat-text br {
        display: none;
    }
}







.what-we-offer {
    background-color: #1a1a1a;
    padding: 80px 5%;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.tag-dark {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 30px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    margin: 0 !important;
    padding: 0;
    box-sizing: border-box;
}

.slide-inner {
    background-color: #f8f8f8;
    color: #1a1a1a;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 25% 25%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.slide-content {
    padding: 40px 30px 10px 30px;
}

.slide-number {
    font-size: 1.2rem;
    color: #555;
    display: block;
    margin-bottom: 20px;
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-light {
    display: block;
    width: 100%;
    background-color: #ebebeb;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 30px;
}

.btn-light:hover {
    background-color: #dcdcdc;
}

.slide-visual {
    padding: 0 30px 40px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: #222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px 0px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.3);
}

@media screen and (min-width: 900px) {
    .what-we-offer {
    background-color: #1a1a1a;
    padding-bottom: 80px 0px;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
    .offer-header h2 {
        font-size: 2.8rem;
    }
    
    .slide-inner {
        flex-direction: row;
        background-size: 12.5% auto; 
    }
    
    .slide-content {
        flex: 1;
        padding: 80px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .btn-light {
        width: fit-content;
        padding: 15px 40px;
    }
    
    .slide-visual {
        flex: 1;
        padding: 60px;
    background-image: url('https://www.dropbox.com/scl/fi/lkk4hq9ifoev4pxljeaan/hero-image-1.jpg?rlkey=2e682zyub0yfy7rvvay6h13i7&st=6xzofjiq&raw=1');        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        position: relative;
    }

    .slide-visual::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .features-list {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .feature-item {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        margin-bottom: 15px;
    }
}



.legal-cta {
    background-color: #2b3236; 
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
}

.legal-cta-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cta-text-content {
    padding: 50px 20px 40px 20px;
}

.cta-text-content h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-text-content p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #d1d5db;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Button */
.btn-consultation {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-consultation:hover {
    background-color: #e5e5e5;
}

.mobile-hero-image {
    width: 100%;
    height: 350px;
    background-image: url('https://www.dropbox.com/scl/fi/n3coca4uqeutmxq3lqzqt/Consultation.jpg?rlkey=tah7733845cda10n14sef7y5k&st=71dr42kh&raw=1'); 
    background-size: cover;
    background-position: center;
}

.cta-tags {
    padding: 30px 20px 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    width: fit-content;
    color: #e5e7eb;
}

.cta-tag svg {
    opacity: 0.8;
}

@media screen and (min-width: 900px) {
    .legal-cta {
        background-image: url('https://www.dropbox.com/scl/fi/n3coca4uqeutmxq3lqzqt/Consultation.jpg?rlkey=tah7733845cda10n14sef7y5k&st=71dr42kh&raw=1');
        background-size: cover;
        background-position: center right;
        min-height: 90vh;
        display: flex;
        align-items: center;
        box-shadow: inset 20000px 0 0 0 rgba(0, 0, 0, 0.6);

    }

    .legal-cta-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .mobile-hero-image {
        display: none; 
    }

    .cta-text-content {
        padding: 0 0 50px 0;
        max-width: 550px; 
    }

    .cta-text-content h2 {
        font-size: 3.5rem;
    }

    .cta-tags {
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 700px;
        gap: 15px;
    }
}



.testimonial-header-container{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    margin-bottom: 50px;
}

.testimonials-section {
    background-color: #f6f7f8; 
    padding: 60px 5%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

.testimonials-grid {
    width: 100%;
    max-width: 1250px;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #1a1a1a;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333333;
    flex-grow: 1; 
    margin-bottom: 35px;
}

.author-area {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    margin-top: auto; 
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-details h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
}

.author-details span {
    font-size: 0.9rem;
    color: #888888;
}

.author-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #e5e7eb; 
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
}
.samuel{
    background-image: url(https://www.dropbox.com/scl/fi/xq43vc8hs1u87suyo7sib/samuel_korode.jpg?rlkey=ncz4mknui5z3i6s14fy7fjlwa&st=3zs00eth&raw=1);
}
.marvellous{
    background-image: url(https://www.dropbox.com/scl/fi/9yn90k8d0n3rkg1tpunkp/Testimonail-MD-Marvs-Holdings-Ltd.jpeg?rlkey=8sm4a1y8566tnc5k5v25whidp&st=jisilnw2&raw=1);
}
.jonathan{
    background-image: url(https://www.dropbox.com/scl/fi/91pa13894mf0bron26fod/Testimonial-SABI-LOGISTICS.jpeg?rlkey=lgrilj9gxwnyz9plzvccdzr1k&st=kd34dkuo&raw=1);
}
.amarachi{
    background-image: url(https://www.dropbox.com/scl/fi/4zlr4pp02yk3rd1mmhxty/flip-to-tech-logo.jpg?rlkey=g1xeqwnil2m3ykxssjdgqly8j&st=1gvcu0hr&raw=1);
}
.samuel-a{
    background-image: url(https://www.dropbox.com/scl/fi/tgx6a22uvg3rsth3yh9f7/Testimonial-Samuel-Abilawon.png?rlkey=wl1vvqigshqsagmn6v9lnfile&st=ya3yde2c&raw=1);
}
.hope{
    background-image: url(https://www.dropbox.com/scl/fi/uco9bywi50f8pymzsqrs9/Pekamy-logo.jpg?rlkey=tb14svfzue11262q3916fxyur&st=yf7kvmuu&raw=1);
}

@media screen and (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .testimonials-section {
        padding: 100px 5%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}





.faq-section {
    background-color: #ffffff;
    padding: 60px 5%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.faq-header-container{
    width: 100%;
    padding: 10px 0px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Accordion Styles */
.faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #555;
}

/* Chevron Icon Animation */
.chevron {
    color: #1a1a1a;
    transition: transform 0.4s ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

/* Answer Body */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    padding-bottom: 25px;
    padding-right: 20px;
}

/* Quote Card Styles */
.quote-card {
    flex: 0.8;
    background-color: #434d53; /* Matches the dark slate theme */
    border-radius: 8px;
    padding: 50px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.author-details h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-details p {
    font-size: 0.9rem;
    color: #b0b8bc;
}

/* Large Decorative 'Q' */
.decorative-q {
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 220px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

/* Desktop View */
@media screen and (min-width: 900px) {
    .faq-section {
        padding: 100px 5%;
    }

    .faq-container {
        flex-direction: row;
        gap: 80px;
        align-items: flex-start;
    }

    .faq-question {
        font-size: 1.6rem;
    }

    .quote-card {
        padding: 60px 50px;
    }
}












/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-section {
    /* Uses the specified image with a dark slate/teal overlay for readability */
    background-image: 
        linear-gradient(rgba(18, 25, 29, 0.85), rgba(18, 25, 29, 0.85)), 
        url('image_096c01.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 5%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Left Column - Contact Info */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Details List */
.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #ffffff;
}

.contact-details svg {
    color: #ffffff;
    flex-shrink: 0;
}

/* Right Column - Form Wrapper */
.contact-form-wrapper {
    flex: 1;
    background-color: #242a2e; /* Dark grey to match the form card in image */
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.input-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.input-group input,
.input-group textarea {
    background-color: transparent;
    border: 1px solid #3d464b;
    border-radius: 4px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #889297;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e5e5e5;
}

/* Tablet & Desktop Layout */
@media screen and (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .contact-info h2 {
        font-size: 4rem;
    }

    .form-row {
        flex-direction: row;
    }
}

@media screen and (min-width: 1024px) {
    .contact-section {
        padding: 100px 5%;
    }
    
    .contact-form-wrapper {
        padding: 50px;
    }
}















/* Footer Base Styles */
.site-footer {
    background-color: #12191d; /* Matches the dark section background */
    color: #d1d5db;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 60px 5% 30px 5%;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Content Area */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #2a343a; /* Subtle divider line */
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-logo .logo-box {
    background-color: #ffffff;
    color: #12191d;
    padding: 4px;
    border-radius: 4px;
    font-size: 1.1rem;
}

/* Footer Navigation Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Bottom Bar: Copyright & Credit */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #889297;
}

.developer-credit a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 4px;
}

.developer-credit a:hover {
    color: #a3b1b8;
    text-decoration: underline;
}

/* Tablet & Desktop Layout */
@media screen and (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.client-logos-section {
    padding: 60px 0;
    background-color: #ffffff; 
    border-bottom: 1px solid #eaeaea;
}

.logos-subtitle {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.logos-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.logos-wrapper::before,
.logos-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-track {
    display: inline-flex;
    align-items: center;
    width: max-content;
    animation: scroll-left-to-right 30s linear infinite; 
}


@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%); 
    }
    100% {
        transform: translateX(0%); 
    }
}

.logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px; 
    flex-shrink: 0;
    padding: 0 30px;
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    max-height: 50px; 
    filter: grayscale(100%) opacity(60%); 
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: grayscale(0%) opacity(100%);
}

@media (max-width: 768px) {
    .logo-slide {
        width: 150px;
        padding: 0 20px;
    }
    .logo-slide img {
        max-height: 40px;
    }
}
