    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }


    body {
        margin: 0px;
        padding: 0px;
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        max-width: 1180px;
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }


    /* ========================
   TOP BAR
======================== */

    .top-bar-color {
        background-color: #004aad;
    }

    .top-bar {
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 60px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .top-left,
    .top-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .top-left i {
        margin-right: 6px;
    }

    .nav-social-icons a {
        color: #fff;
        margin-left: 10px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-social-icons a:hover {
        color: #00b4ff;
    }

    /* ========================
   MAIN NAVBAR
======================== */

    .navbar-color {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 60px;
        position: relative;
    }

    .navbar-logo img {
        width: 160px;
        height: auto;
    }

    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .navbar-menu li {
        list-style: none;
    }

    .navbar-menu a {
        text-decoration: none;
        color: #000;
        font-weight: 500;
        transition: color 0.3s;
    }

    .navbar-menu a:hover {
        color: #004aad;
    }

    /* ---------- Call Button ---------- */
    .call-btn {
        background: #004aad;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

    .call-btn:hover {
        background: #0293d1;
    }

    /* ---------- Mobile Menu Toggle ---------- */
    .menu-toggle {
        display: none;
        font-size: 24px;
        color: #004aad;
        cursor: pointer;
    }

    /* ========================
   RESPONSIVE DESIGN
======================== */

    /* ---------- Tablet ---------- */
    @media (max-width: 992px) {
        .top-bar {
            padding: 12px 30px;
            font-size: 13px;
        }

        .navbar {
            padding: 12px 30px;
        }

        .navbar-menu {
            gap: 20px;
        }

        .navbar-logo img {
            width: 140px;
        }
    }

    /* ---------- Mobile ---------- */
    @media (max-width: 768px) {

        /* Top Bar */
        .top-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
            padding: 10px 20px;
        }

        .top-left,
        .top-right {
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Navbar */
        .navbar {
            padding: 12px 20px;
        }

        .menu-toggle {
            display: block;
        }



        .call-btn {
            width: 100%;
            justify-content: center;
        }

        .navbar-logo img {
            width: 130px;
        }
    }

    /* ---------- Extra Small Devices ---------- */
    @media (max-width: 480px) {
        .top-bar {
            font-size: 12px;
        }

        .top-left span {
            display: block;
        }

        .navbar-menu a {
            font-size: 14px;
        }

        .call-btn {
            font-size: 14px;
            padding: 8px 15px;
        }
    }

    /* Video Background Section */

    .video-background-section {
        position: relative;
        width: 100%;
        height: 80vh;
        min-height: 360px;
        overflow: hidden;
    }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.55) 0%,
                rgba(0, 0, 0, 0.65) 45%,
                rgba(0, 0, 0, 0.55) 100%
        );
        z-index: 1;
    }

    .video-hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        padding: 0 20px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
    }

    .video-hero-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .video-hero-title {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }

    .video-hero-text {
        font-size: 18px;
        margin-bottom: 24px;
        max-width: 720px;
    }

    .video-hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 26px;
        border-radius: 999px;
        background: #007bff;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
        transition: all 0.3s ease;
    }

    .video-hero-btn:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 86, 179, 0.45);
    }

    .content-box {
        position: absolute;
        bottom: 40px;
        left: 125px;
        background: rgba(255, 255, 255, 0.95);
        padding: 25px 35px;
        border-radius: 12px;
        width: 420px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    }

    .content-box h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .address {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

    .price {
        font-size: 20px;
        font-weight: 600;
        color: #111;
        margin-bottom: 15px;
    }

    .details {
        display: flex;
        gap: 15px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .type {
        font-size: 13px;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .details-btn {
        background: #004aad;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
    }

    .details-btn:hover {
        background: #0080cc;
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #004aad;
        color: white;
        border: none;
        padding: 12px 16px;
        border-radius: 10%;
        cursor: pointer;
        font-size: 20px;
        z-index: 2;
        transition: 0.3s;
    }

    .arrow:hover {
        background: #0080cc;
    }

    .arrow.left {
        left: 30px;
    }

    .arrow.right {
        right: 30px;
    }

    /* ============================= */
    /* ✅ RESPONSIVE DESIGN SECTION  */
    /* ============================= */

    /* Tablet (≤1024px) */
    @media (max-width: 1024px) {
        .video-background-section {
            height: 60vh;
            min-height: 320px;
        }

        .video-hero-title {
            font-size: 32px;
        }

        .video-hero-text {
            font-size: 16px;
        }
    }

    /* Mobile (≤768px) */
    @media (max-width: 768px) {
        .video-background-section {
            height: 50vh;
            min-height: 280px;
        }

        .video-hero-subtitle {
            font-size: 14px;
        }

        .video-hero-title {
            font-size: 26px;
        }

        .video-hero-text {
            font-size: 15px;
            max-width: 90%;
        }

        .video-hero-btn {
            padding: 8px 20px;
            font-size: 14px;
        }
    }

    /* Small Mobile (≤480px) */
    @media (max-width: 480px) {
        .video-background-section {
            height: 40vh;
            min-height: 240px;
        }
        .video-hero-content {
            padding: 0 16px;
        }

        .video-hero-title {
            font-size: 22px;
        }

        .video-hero-subtitle {
            font-size: 13px;
        }
    }

    /* ABOUT US */

    /* ===== ABOUT US STYLING ===== */
    .about-section {
        background: #f7f9fb;
        padding: 50px 0;
    }

    .about-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

    .about-image {
        flex: 1;
        min-width: 320px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .about-content {
        flex: 1.2;
        min-width: 320px;
    }

    .about-content h2 {
        color: #003366;
        font-size: 2em;
        margin-bottom: 15px;
        text-align: left;
    }

    .about-content h3 {
        color: #00bfff;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .about-content p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .about-cards {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .about-cards .card {
        background: white;
        padding: 20px;
        flex: 1;
        min-width: 220px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .about-cards .card:hover {
        transform: translateY(-6px);
    }

    .about-cards .card i {
        color: #004aad;
        font-size: 30px;
        margin-bottom: 10px;
    }

    body {
        color: #333;
        background: #fff;
    }


    /* ============================= */
    /* ✅ RESPONSIVE DESIGN SECTION  */
    /* ============================= */

    /* Tablet (≤1024px) */
    @media (max-width: 1024px) {


        .about-section {
            padding: 40px 0;
        }

        .about-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .about-image {
            order: 1;
            width: 80%;
        }

        .about-content {
            order: 2;
            width: 90%;
            text-align: center;
        }

        .about-content h2 {
            font-size: 1.8em;
            text-align: center;
        }

        .about-content h3 {
            font-size: 1.2em;
        }

        .about-cards {
            justify-content: center;
            gap: 15px;
        }

        .about-cards .card {
            flex: 1 1 45%;
            min-width: 240px;
        }
    }

    /* Mobile (≤768px) */
    @media (max-width: 768px) {
        .about-section {
            padding: 35px 0;
        }

        .about-image {
            width: 100%;
        }

        .about-content {
            width: 100%;
        }

        .about-content h2 {
            font-size: 1.6em;
        }

        .about-content h3 {
            font-size: 1.1em;
        }

        .about-content p {
            font-size: 15px;
        }

        .about-cards {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .about-cards .card {
            width: 90%;
        }
    }

    /* Small Mobile (≤480px) */
    @media (max-width: 480px) {
        .about-section {
            padding: 30px 0;
        }

        .about-content h2 {
            font-size: 1.4em;
        }

        .about-content h3 {
            font-size: 1em;
        }

        .about-content p {
            font-size: 14px;
            line-height: 1.5;
        }

        .about-cards .card {
            width: 100%;
            padding: 15px;
        }

        .about-cards .card i {
            font-size: 26px;
        }

        .about-cards .card h4 {
            font-size: 1em;
        }

        .about-cards .card p {
            font-size: 13px;
        }
    }


    /* ----------------------------------------------------------------------------------------------------------------------- */

    /* growth story */
    .growth-story {
        background: #f9fafc;
        padding: 50px 0;
        font-family: 'Poppins', sans-serif;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: #0d3b66;
        margin-bottom: 60px;
        position: relative;
    }

    /* === Timeline Layout === */
    .timeline {
        position: relative;
        padding: 20px 0;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 4px;
        height: 100%;
        background: #0d3b66;
        transform: translateX(-50%);
    }

    .timeline-item {
        display: flex;
        justify-content: flex-end;
        position: relative;
        margin-bottom: 50px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-content {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: 45%;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
    }

    .timeline-icon {
        position: absolute;
        left: 50%;
        top: 15px;
        transform: translateX(-50%);
        background: #0d3b66;
        color: #fff;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        z-index: 1;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        background: #0077b6;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
        color: #0d3b66;
        margin-bottom: 10px;
    }

    .timeline-content p {
        color: #444;
        line-height: 1.6;
        font-size: 1rem;
    }

    /* === Scroll Animation === */
    .timeline-item {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease;
    }

    .timeline-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============================= */
    /* ✅ RESPONSIVE DESIGN SECTION  */
    /* ============================= */

    /* Tablet (≤1024px) */
    @media (max-width: 1024px) {
        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .timeline::before {
            left: 50%;
            width: 3px;
        }

        .timeline-content {
            width: 48%;
            padding: 20px;
        }

        .timeline-content h3 {
            font-size: 1.2rem;
        }

        .timeline-content p {
            font-size: 0.95rem;
        }
    }

    /* Mobile (≤768px) */
    @media (max-width: 768px) {
        .timeline::before {
            left: 25px;
            width: 3px;
        }

        .timeline-item {
            flex-direction: column;
            align-items: flex-start;
            margin-left: 40px;
        }

        .timeline-item:nth-child(even) {
            flex-direction: column;
            align-items: flex-start;
        }

        .timeline-content {
            width: 100%;
            padding: 20px;
            margin-top: 15px;
        }

        .timeline-icon {
            left: 0;
            top: 0;
            transform: none;
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .timeline-content h3 {
            font-size: 1.1rem;
        }

        .timeline-content p {
            font-size: 0.95rem;
            line-height: 1.5;
        }
    }

    /* Small Mobile (≤480px) */
    @media (max-width: 480px) {
        .growth-story {
            padding: 35px 0;
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .timeline::before {
            left: 20px;
            width: 2px;
        }

        .timeline-item {
            margin-left: 35px;
            margin-bottom: 35px;
        }

        .timeline-content {
            padding: 15px;
        }

        .timeline-icon {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .timeline-content h3 {
            font-size: 1rem;
        }

        .timeline-content p {
            font-size: 0.9rem;
        }
    }

    /* Services */

    .services-section {
        background: #f8f9fb;
        padding: 80px 20px;
        font-family: 'Poppins', sans-serif;
    }

    .section-title {
        text-align: center;
        color: #1a3c6e;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

    .service-card {
        background: #fff;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-top: 4px solid #1a3c6e;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

    .service-card h3 {
        color: #1a3c6e;
        font-size: 20px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .service-card p {
        color: #555;
        line-height: 1.6;
        font-size: 15px;
    }

    .service-card {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease;
    }

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }


    /* Our Team */
    .partners-area {
        background: #f8f9fb;
        padding: 80px 0;
        font-family: 'Poppins', sans-serif;
    }


    .title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 50px;
        letter-spacing: 1px;
        position: relative;
    }

    .title::after {
        content: '';
        width: 80px;
        height: 4px;
        background: #2563eb;
        display: block;
        margin: 10px auto 0;
        border-radius: 2px;
    }

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

    .partner-box {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
        text-align: center;
        padding: 25px 20px;
        transition: all 0.4s ease;
    }

    .partner-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
        background: linear-gradient(180deg, #ffffff, #f1f5ff);
    }

    .partner-img img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #2563eb;
        margin-bottom: 15px;
    }

    .partner-box h3 {
        font-size: 20px;
        color: #1e40af;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 10px 0;
    }

    .partner-box h3 i {
        color: #2563eb;
        font-size: 18px;
    }

    .role {
        color: #6b7280;
        font-style: italic;
        margin-bottom: 10px;
    }

    .desc {
        color: #374151;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .contact {
        font-weight: 500;
        color: #111827;
    }

    /* ===============================
   RESPONSIVE DESIGN
   =============================== */

    /* Tablet View */
    @media (max-width: 992px) {
        .partners-area {
            padding: 60px 0;
        }

        .title {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .partners-wrapper {
            gap: 25px;
        }

        .partner-box {
            padding: 20px;
        }

        .partner-img img {
            width: 100px;
            height: 100px;
        }

        .partner-box h3 {
            font-size: 18px;
        }

        .desc {
            font-size: 13.5px;
        }
    }

    /* Mobile View */
    @media (max-width: 600px) {
        .partners-area {
            padding: 50px 0;
        }

        .title {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .partners-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .partner-box {
            width: 100%;
            padding: 18px 15px;
        }

        .partner-img img {
            width: 90px;
            height: 90px;
        }

        .partner-box h3 {
            font-size: 17px;
        }

        .role {
            font-size: 13px;
        }

        .desc {
            font-size: 13px;
            line-height: 1.5;
        }

        .contact {
            font-size: 13.5px;
        }
    }

    /* Contact US */

    body {
        font-family: "Poppins", sans-serif;
        background: #f7f9fb;
        color: #333;
        margin: 0;
        padding: 0;
    }

    .contact-section {
        padding: 80px 20px;
        background: #f9fbfc;
    }

    .contact-content {
        display: flex;
        gap: 40px;
        align-items: stretch;
        /* ensures equal height */
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .contact-details,
    .contact-form {
        flex: 1 1 48%;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
        padding: 40px 35px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-details h2,
    .contact-form h2 {
        color: #004aad;
        font-size: 22px;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .contact-details ul {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
    }

    .contact-details li {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .contact-details a {
        color: #004aad;
        text-decoration: none;
        word-break: break-all;
    }

    .contact-details a:hover {
        text-decoration: underline;
    }

    .icon {
        width: 22px;
        height: 22px;
        stroke-width: 1.6;
        color: #004aad;
        flex-shrink: 0;
    }

    .contact-details {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.6s ease;
    }

    .contact-details.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-form {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.6s ease;
    }

    .contact-form.visible {
        opacity: 1;
        transform: translateY(0);
    }


    /* Form Styling */
    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 18px;
        flex-grow: 1;
        justify-content: center;
    }

    .contact-form .form-group {
        display: flex;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        outline: none;
        font-size: 15px;
        transition: border 0.3s, box-shadow 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #004aad;
        box-shadow: 0 0 5px rgba(0, 74, 173, 0.2);
    }

    .contact-form button {
        background: #004aad;
        color: white;
        border: none;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
        align-self: flex-start;
    }

    .contact-form button:hover {
        background: #004aad;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
        .contact-content {
            flex-direction: column;
        }

        .contact-details,
        .contact-form {
            flex: 1 1 100%;
        }

        .contact-form .form-group {
            flex-direction: column;
        }
    }

    /* Footer */
    .footer {
        background: #fff;
        color: #333;
        padding: 70px 20px 30px;
        font-family: "Poppins", sans-serif;
        border-top: 2px solid #004aad20;
    }

    .footer-container {
        max-width: 1180px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .footer-box {
        flex: 1 1 30%;
        min-width: 280px;
        background: #fff;
        padding: 25px 30px;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .footer-box h3 {
        color: #004aad;
        font-size: 20px;
        margin-bottom: 18px;
        position: relative;
    }

    .footer-box h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 40px;
        height: 3px;
        background: #004aad;
        border-radius: 2px;
    }

    .footer-box p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li,
    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .footer-links li a,
    .footer-contact li a {
        color: #333;
        text-decoration: none;
        transition: 0.3s;
        display: flex;
        align-items: center;
    }

    .footer-links li a:hover,
    .footer-contact li a:hover {
        color: #004aad;
    }

    .icon {
        width: 18px;
        height: 18px;
        stroke-width: 1.6;
        color: #004aad;
        flex-shrink: 0;
    }

    /* Logo Styling */
    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: 280px;
    }

    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 12px;
    }

    .social-icons a {
        color: #004aad;
        border: 1px solid #004aad40;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: #004aad;
        color: #fff !important;
    }

    .social-icons a:hover svg {
        color: #fff;
        fill: #fff;
        stroke: #fff;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid #ddd;
        margin-top: 40px;
        padding-top: 20px;
        font-size: 14px;
        color: #555;
    }

    .footer-bottom p {
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 20px;
        }

        .footer-box {
            text-align: left;
        }

        .footer-box h3::after {
            left: 4%;
            transform: translateX(-50%);
        }

        .social-icons {
            justify-content: left;
        }
    }




    /* ----------------------------------------------------------------------------------------------------------------------- */



    /* ---------- Mobile ---------- */
    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }



    @media (max-width: 900px) {
        .navbar {
            flex-wrap: wrap;
        }

        .navbar-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #fff;
            padding: 20px 0;
        }

        .navbar-menu.active {
            display: flex;
        }

        .menu-toggle {
            display: block;
        }

        .call-btn {
            margin-top: 10px;
        }
    }

    /* Growth  */

    @media (max-width: 768px) {
        .timeline::before {
            left: 8%;
        }

        .timeline-item,
        .timeline-item:nth-child(even) {
            flex-direction: column;
            align-items: flex-start;
        }

        .timeline-content {
            width: 90%;
            margin-left: 40px;
        }

        .timeline-icon {
            left: -8px;
            transform: none;
        }
    }

    @media (max-width: 640px) {

        .timeline-icon {
            left: -20px;
            transform: none;
        }
    }
