@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-purple: #623fe3;
    --alt-purple: #8d76ff;
    --alt2-purple: #c6bcfa;
    --muted-ink: rgb(99, 96, 96);
    --font-primary: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    font-weight: 500;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* fallback */
}

a {
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

.container {
    width: 85vw;
    margin: auto;
}

section {
    padding: 40px 0;
}

.btn1 {
    background-color: var(--alt-purple);
    color: white;
    padding: 10px 8px;
    border-radius: 8px;
    transition: all 300ms ease;
    border: none;
    cursor: pointer;
}

.btn1:hover {
    background-color: var(--primary-purple);
}

.pill {
    background: rgba(247, 164, 247, 0.15);
    /* Semi-transparent purple */
    text-align: center;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    /* Fuller pill shape */
    color: var(--primary-purple);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle edge shine */
    transition: all 0.3s ease;
    /* Smooth hover */
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.pill2 {
    font-size: 12px !important;
}

.section-heading {
    font-weight: 600;
    text-align: center;
}

@media (max-width : 700px) {
    .section-heading {
        font-size: 26px;
    }
}

.pill:hover {
    background: rgba(128, 0, 128, 0.25);
    transform: translateY(-2px);
}

.purple {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Navigation Bar */
header {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.left,
.right {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left a {
    height: 45px;
}

.left a img {
    height: 100%;
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    height: 100%;
}

ul div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right ul li {
    display: flex;
    align-items: center;
    position: relative;
}

.right ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 0;
}

/* Hover underline effect */
.right ul li a::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    background-color: var(--alt-purple);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.right ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-btn {
    display: none;
}

@media (max-width:900px) {
    .right {
        display: none;
    }

    .menu-btn {
        display: block;
    }


}

/* ── Mobile Nav ── */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 200ms ease;
}

.menu-btn:hover {
    background: rgba(98, 63, 227, 0.08);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Slide-down drawer */
.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(98, 63, 227, 0.1);
}

@media (max-width: 900px) {
    header {
        border-bottom: none;
        box-shadow: none;
    }
}

.mobile-menu {
    border-top: none;
    /* remove this line from existing style */
}

.mobile-menu.open {
    border-top: 1px solid rgba(98, 63, 227, 0.1);
    /* only show when open */
}

.mobile-menu.open {
    max-height: 500px;
}

.mobile-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
}

.mobile-menu ul li {
    width: 100%;
}

.mobile-menu ul li a {
    display: block;
    padding: 13px 20px;
    font-size: 15px;
    color: #111;
    border-bottom: 1px solid rgba(98, 63, 227, 0.07);
    transition: background 200ms ease, color 200ms ease, padding-left 200ms ease;
}

.mobile-menu ul li:last-child a {
    border-bottom: none;
}

.mobile-menu ul li a:hover {
    background: rgba(98, 63, 227, 0.05);
    color: var(--primary-purple);
    padding-left: 28px;
}

/* CTA button row */
.mobile-menu .cta-wrap {
    padding: 12px 20px 20px;
}

.mobile-menu .btn1 {
    display: block;
    text-align: center;
    padding: 13px;
    font-size: 15px;
    border-radius: 10px;
}

/* Show/hide breakpoint — matches your existing 900px */
@media (max-width: 900px) {
    .right {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}



/* Canvas Background */
.canvas {
    height: 100vh;
    width: 100vw;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(to right, rgba(229, 231, 235, 0.8) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(229, 231, 235, 0.8) 1px, transparent 1px),
        radial-gradient(circle 500px at 20% 20%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(circle 500px at 80% 80%, rgba(59, 130, 246, 0.3), transparent);
    background-size:
        42px 42px,
        42px 42px,
        100% 100%,
        100% 100%;
}

/* hero page */
.hero-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section {
    display: flex;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero-section h1,
.hero-section h1 span {
    font-weight: 600;
    font-size: clamp(30px, 5vw, 75px);
}

.hero-section h1 span {
    color: var(--primary-purple);
}

.hero-section>p {
    font-size: 17px;
    /* width: 50vw; */
}

.btn2 {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.btn2 i {
    transition: all 300ms ease;
}

.btn2:hover i {
    transform: translateY(3px);
}

@media (max-width :900px) {
    .hero-section>p {
        font-size: 15px;
    }

    .btn2 {
        padding: 8px 8px !important;
    }

}


/* ====================about section==================== */
.about {
    background-color: white;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image:
        linear-gradient(90deg,
            transparent 0%, transparent 40%,
            #000000 40%, #000000 50%, #000000 60%,
            transparent 60%, transparent 100%);
    background-size: 2px 2px;
    /* Dash length/spacing: adjust for dash density */
    background-repeat: repeat-x;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.model {
    width: 100%;
    height: fit-content;
    border: 1px solid gray;
    border-style: dotted;
    border-radius: 15px;
    padding: 5px;

}

.about-grid-right,
.model,
.slider-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-grid-right {
    flex-direction: column;
    gap: 10px;
}

.model img {
    width: 100%;
    border-radius: inherit;
    display: none;
}

.active {
    display: block !important;
}

.about-grid-left h1 {
    font-weight: 600;
    font-size: clamp(30px, 5vw, 70px);
}

.about-grid-left p {
    color: var(--muted-ink);
    font-size: 17px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image:
        linear-gradient(90deg,
            transparent 0%, transparent 40%,
            #000000 40%, #000000 50%, #000000 60%,
            transparent 60%, transparent 100%);
    background-size: 2px 2px;
    /* Increased from 2px for better dash spacing/proportion */
    background-repeat: repeat-x;
}

.about-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 25px;
    position: relative;
}

.about-badge li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.about-badge li img {
    width: 25px;
    display: inline-block;
}


.slider-btn-container {
    width: 100%;
    gap: 10px;
}

.slider-btn {
    display: inline-block;
    background-color: var(--alt2-purple);
    width: 12px;
    height: 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 300ms ease;
}

.slider-active {
    background-color: var(--primary-purple) !important;
}

@media (max-width : 850px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-grid-left p {
        font-size: 16px;
    }
}

/* why -section */
.why-page {}

.why-section {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

@media (max-width : 850px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width : 620px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 28px 32px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Icon wrapper */
.why-card .img {
    margin-bottom: 20px;
}

.why-card .img>div {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f3eeff;
    /* soft purple tint — matches your screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .img img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Text block */
.why-card .text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card .text p {
    font-size: 13.5px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.65;
}



/* process section */

.process-page {}

.process {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.steps-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-col {
    position: relative;
    padding: 0 8px;
}

/* Horizontal connector line between cards */
.connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 68px);
    right: calc(-50% + 68px);
    height: 1px;
    background: linear-gradient(90deg, #e0b4e8, #c88ed4);
    z-index: 0;
}

.step-col:last-child .connector {
    display: none;
}

.step-card {
    height: 100%;
    background: #fff;
    border: 1px solid #f0e4f5;
    border-radius: 16px;
    padding: 24px 20px 28px;
    position: relative;
    z-index: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(180, 100, 200, .10);
}

/* Big gradient number */
.step-num {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 16px;
    background: linear-gradient(135deg, var(--primary-purple), var(--alt-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-purple);
    background: #f7ecfc;
    border-radius: 99px;
    padding: 3px 10px;
    margin-bottom: 14px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px;
}

.step-body {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 970px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .connector {
        display: none;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* photo gallery section */
.photo-gallery {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.photo-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.photo-card {
    aspect-ratio: 1/1 !important;
    height: 100%;
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(180, 100, 200, .30);
}

.photo-card img {
    width: 100%;
    border-radius: inherit;
}


/* Lenis Smooth Scroll Recommended Setup */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}


.media-slider {
    overflow: hidden;
    width: 100%;
    display: flex;
    margin-top: 100px;
    /* height: px; */
}

.media-track {
    padding: 20px 0px;
    gap: 30px;
    display: flex;
    animation: scroll 30s infinite linear;
    padding-right: 30px;
}

.media-slider:hover .media-track {
    animation-play-state: paused;
}

.media-img {
    /* height: 300px; */
    flex: 0 0 300px;
    display: block;
    min-width: 300px;
    width: 300px;
    /* background-color: white; */
    border-radius: 16px;
    /* box-shadow: var(--  shadow-2); */
    transition: all 300ms ease;
}

.media-img:hover {
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.media-img img {
    min-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 16px;
}

/* smaller media card for smaller width */
@media (max-width : 600px) {
    .media-img {
        min-width: 270px;
        flex: 0 0 270px;
    }
}

/* animation for media section */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* The Premium Card */
.partner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pt-logo {
    width: 100%;
    max-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 16px;
}

.pt-logo img {
    width: 100%;
    border-radius: inherit;
}

.partner-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.partner-card {
    margin-top: 30px;
    position: relative;
    background: linear-gradient(145deg, #0f172a);
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    /* cursor: pointer; */
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Inner content */
.card-content {
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
    /* Pops the text out during 3D tilt */
}

.partner-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 1rem 0;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.partner-description {
    font-size: 17px;
    color: #94a3b8;
    /* max-width: 600px; */
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.partner-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-purple);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.partner-link:hover {
    color: var(--primary-purple);
}

/* Optional: Adding a subtle glow effect on hover */
.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(245, 158, 11, 0.06), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 1;
}

@media (max-width : 800px) {
    .partner-details {
        flex-direction: column;
        /* padding: 1.5rem; */
    }

    .partner-title {
        font-size: 25px;
        /* font-weight: 500; */
    }

    .partner-description {
        font-size: 16px;
    }

    .partner-link {
        font-size: 16px;
    }
}

.partner-grid {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;

}

.partner-img {
    width: 100%;
}

.partner-img img {
    width: 100%;
    border-radius: 10px;
}



.sl-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 2.5rem 2.25rem;
    width: 100%;
    max-width: 480px;
}

@media (max-width :720px) {
    .sl-card {
        padding: 20px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sl-pill {
    display: inline-block;
    background: rgba(247, 164, 247, 0.18);
    color: #623fe3;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.sl-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1040;
    line-height: 1.2;
    margin: 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.sl-title span {
    color: #623fe3;
}

.sl-sub {
    font-size: 13.5px;
    color: #6b6490;
    margin: 0 0 1.75rem;
    font-family: 'Poppins', sans-serif;
}

.sl-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.sl-field label {
    font-size: 12px;
    font-weight: 600;
    color: #4a3a8a;
    letter-spacing: 0.03em;
    font-family: 'Poppins', sans-serif;
}

.sl-field input,
.sl-field textarea {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(98, 63, 227, 0.2);
    background: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    color: #1a1040;
    outline: none;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sl-field input::placeholder,
.sl-field textarea::placeholder {
    color: #a89fcc;
}

.sl-field input:focus,
.sl-field textarea:focus {
    border-color: #8d76ff;
    box-shadow: 0 0 0 3px rgba(141, 118, 255, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.sl-field textarea {
    resize: vertical;
    min-height: 110px;
}

.sl-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #8d76ff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, transform 0.1s;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sl-btn:hover {
    background: #623fe3;
}

.sl-btn:active {
    transform: scale(0.98);
}

.sl-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.sl-btn:hover svg {
    transform: translateY(2px);
}

.sl-error {
    font-size: 12px;
    color: #a32d2d;
    margin-top: 8px;
    display: none;
    font-family: 'Poppins', sans-serif;
}

.sl-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.sl-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(98, 63, 227, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.sl-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1040;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.sl-success p {
    font-size: 14px;
    color: #6b6490;
    font-family: 'Poppins', sans-serif;
}

/* Footer Base Styles */
.footer {
    background-color: #0a1120;
    /* Deep dark blue from image */
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Section Styling */
.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Brand/Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.tagline {
    color: #a0aec0;
    /* Lighter grey for readability */
    line-height: 1.6;
    max-width: 400px;
}

.foot-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.foot-link a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}


.foot-link a:hover {
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid #1a2a44;
    margin-bottom: 30px;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.logo img {
    max-width: 250px;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        /* Stacks sections vertically */
        text-align: center;
        /* Centers text for mobile */
        align-items: center;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
        min-width: unset;
    }

    .logo {
        justify-content: center;
        /* Centers logo on mobile */
    }

    .foot-link {
        align-items: center;
    }

    .tagline {
        margin: 0 auto;
        /* Centers the tagline text block */
    }

    /* Ensure images don't overflow on small screens */
    .logo img {
        max-width: 150px;
        height: auto;
    }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 20px;
    }

}