        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif
        }

        body {
            background: #000
        }

        section {
            overflow: hidden !important;
        }

        .header_Logo img {
            width: 150px;
            transition: width 0.35s ease-in-out;
            will-change: width;
        }

        .main-header.scrolled .header_Logo img {
            width: 109px;
        }

        .main_logo_2 {
            display: none;
        }

        .main-header.scrolled .main_logo_2 {
            display: block;
        }

        .main-header.scrolled .main_logo_1 {
            display: none;
        }


        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto
        }

        /* HEADER */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 25px 0;
            transition: .4s
        }

        .main-header.scrolled {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
            padding: 15px 0;
            box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .logo {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            text-decoration: none
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: anchor-center;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500
        }

        .main-header.scrolled .nav-menu a {
            color: #30427F;
            font-weight: 600
        }

        a.btn-header {
            color: #fff !important;
        }

        .btn-header {
            background: #30427F;
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer
        }

        .main-header.scrolled .menu-toggle {
            color: #30427F
        }

        .mobile-menu {
            display: none;
            background: #fff;
            margin-top: 15px;
            border-radius: 12px;
            padding: 20px
        }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: #333;
            text-decoration: none
        }

        .mobile-menu.show {
            display: block;
            animation: slideDown .4s
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #30427F, #1e2a52, #000);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 100px 100px;
        }

        .hero-badge {
            background: rgba(255, 255, 255, .1);
            padding: 7px 17px;
            border-radius: 30px;
            margin-bottom: 10px;
            width: fit-content;
            margin: 0 auto 10px auto;
            font-size: 10px;
        }

        .hero h1 {
            font-size: 50px;
            font-weight: 800
        }

        .hero h1 span {
            background: linear-gradient(90deg, #6ea8ff, #b78cff);
            -webkit-background-clip: text;
            color: transparent
        }

        .hero p {
            max-width: 750px;
            margin: 20px auto;
            color: #d1d1d1
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px
        }

        .btn-primary {
            background: #fff;
            color: #30427F;
            padding: 14px 22px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            line-height: normal;
            display: flex;
            height: max-content;
            align-items: anchor-center;
            gap: 9px;

        }

        .inner_banner .btn-primary {
            width: fit-content;
            margin: 0 auto;
        }

        .btn-outline {
            border: 2px solid #fff;
            color: #fff;
            padding: 16px 30px;
            padding: 14px 22px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            line-height: normal;
            display: flex;
            height: max-content;
            align-items: anchor-center;
            gap: 9px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px
        }

        .stat .counter {
            font-size: 34px;
            font-weight: 800
        }

        .stat span {
            font-size: 14px;
            color: #ccc
        }

        /* BLUR */
        .blur {
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: .25
        }

        .blur.blue {
            background: #4c6fff;
            top: 10%;
            left: 10%
        }

        .blur.purple {
            background: #9b59ff;
            bottom: 10%;
            right: 10%
        }

        /* SCROLL */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 26px;
            height: 44px;
            border: 2px solid #fff;
            border-radius: 20px
        }

        .scroll-indicator span {
            width: 4px;
            height: 8px;
            background: #fff;
            display: block;
            margin: 6px auto;
            border-radius: 4px;
            animation: scroll 1.5s infinite
        }

        /* ANIM */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes scroll {
            0% {
                opacity: 0
            }

            50% {
                opacity: 1
            }

            100% {
                opacity: 0;
                transform: translateY(10px)
            }
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .nav-menu {
                display: none
            }

            .menu-toggle {
                display: block
            }

            .hero h1 {
                font-size: 42px
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        /* ===== CANVAS WEB BACKGROUND ===== */
        #webCanvas {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        /* content always above */
        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* mobile disable */
        @media (max-width: 991px) {
            #webCanvas {
                display: none;
            }
        }



        /* ================= ABOUT HOME SECTION ================= */
        .about_section_home {
            position: relative;
            padding: 80px 0 80px;
            background: #fff;
            overflow: hidden;
        }

        /* IMAGE WRAPPER (PARALLAX BASE) */
        .about_image_parallax {
            position: relative;
            display: inline-block;
            will-change: transform;
            transition: transform 0.4s ease;
        }

        /* IMAGE */
        .about_home_image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        /* HOVER DEPTH */
        .about_home_image:hover img {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 45px 90px rgba(0, 0, 0, 0.25);
        }

        /* FLOAT MICRO ANIMATION */
        .about_home_image img {
            animation: about_float 5s ease-in-out infinite;
        }

        @keyframes about_float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-14px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* BLUR SHAPES */
        .about_blur_shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.55;
            z-index: 0;
        }

        .blur_one {
            width: 320px;
            height: 320px;
            background: #30427F;
            top: -100px;
            left: -100px;
        }

        .blur_two {
            width: 300px;
            height: 300px;
            background: #cfd6ff;
            bottom: -120px;
            right: -100px;
        }


        /* TAG */
        .about_home_tag {
            display: inline-block;
            background: rgba(48, 66, 127, 0.1);
            color: #30427F;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        /* CONTENT */
        .about_home_content h1,
        .about_home_title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.2;
            color: #000;
        }

        .about_home_title span {
            color: #30427F;
        }

        .about_home_text {
            margin: 25px 0;
            font-size: 18px;
            color: #555;
            max-width: 520px;
        }

        /* BUTTONS */
        .about_home_buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn_about_primary {
            background: #30427F;
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s ease;
        }

        .btn_about_primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(48, 66, 127, 0.4);
        }

        .btn_about_outline {
            border: 2px solid #30427F;
            color: #30427F;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s ease;
        }

        .btn_about_outline:hover {
            background: #30427F;
            color: #fff;
        }

        /* IMAGE */
        .about_home_image img {
            max-width: 100%;
            border-radius: 20px;
            animation: about_float 4s ease-in-out infinite;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        /* FLOAT ANIMATION */
        @keyframes about_float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-18px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* BLUR SHAPES */
        .about_blur_shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.6;
            z-index: 0;
        }

        .blur_one {
            width: 320px;
            height: 320px;
            background: #30427F;
            top: -100px;
            left: -100px;
        }

        .blur_two {
            width: 300px;
            height: 300px;
            background: #cfd6ff;
            bottom: -120px;
            right: -100px;
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 991px) {
            .about_section_home {
                padding: 130px 0 80px;
                text-align: center;
            }

            .about_home_buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .about_home_title {
                font-size: 38px;
            }
        }


        /* ==========   */
        /* ================= PROJECTS HOME ================= */
        .projects-section_home {
            padding: 120px 0;
            background: #f8f9ff;
        }

        /* HEADING */
        .projects-home-heading {
            text-align: center;
            max-width: 80%;
            margin: 0 auto 70px;
        }

        .projects-home-tag {
            display: inline-block;
            background: rgba(48, 66, 127, 0.12);
            color: #30427F;
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .projects-home-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 10px;
        }


        .projects-home-subtitle {
            color: #666;
            font-size: 16px;
            margin: 0 auto;
        }


        /* ========== .service ================= */

        /* ================= HOME SERVICES ================= */
        .home_services_section {
            padding: 220px 80px 160px;
            position: relative;
            background: #fff;
        }

        /* HEADING */
        .home_services_heading {
            max-width: 600px;
        }

        .home_services_tag {
            display: inline-block;
            background: rgba(48, 66, 127, 0.12);
            color: #30427F;
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .home_services_title {
            font-size: 40px;
            font-weight: 800;
            margin-top: 14px;
            color: #00104f;
        }

        .home_services_subtitle {
            margin-top: 10px;
            color: #666;
            font-size: 16px;
        }

        /* GRID */
        .home_services_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 90px;
        }

        /* CARD */
        .home_service_card {
            position: relative;
            background: #fff;
            padding: 26px 35px;
            min-height: 320px;
            border-radius: 22px;
            border: 2px solid #e1e1e1;
            /* overflow: hidden; */
            /* transition: transform .4s ease, box-shadow .4s ease; */
        }

        .home_service_card:hover {
            /* transform: translateY(-14px); */
            /* box-shadow: 0 30px 70px rgba(0, 0, 0, .12); */
        }

        /* STAGGER */
        .home_service_card:nth-child(2) {
            top: 40px;
        }

        .home_service_card:nth-child(3) {
            top: -110px;
        }

        .home_service_card:nth-child(4) {
            top: -260px;
        }

        /* BACKGROUND PATTERN */
        .home_service_bg {
            position: absolute;
            inset: 0;
            background: url("../../assets/images/card-hover.png");
            opacity: .4;
            transition: .4s;
            top: -50px;
        }

        .home_service_bg:nth-child(2) {
            background-position: center;
        }

        .home_service_card:hover .home_service_bg,
        .home_service_card.active .home_service_bg {
            opacity: 1;
        }

        /* NUMBER */
        .home_service_number {
            font-size: 16px;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .home_service_number span {
            display: block;
            font-size: 55px;
            font-weight: 900;
            background: #30427F;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .home_faq_img_small img {
            object-fit: cover;
        }

        /* CONTENT */
        .home_service_heading {
            margin-top: 45px;
            font-size: 22px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .home_service_text {
            margin-top: 12px;
            color: #666;
            line-height: 26px;
            position: relative;
            z-index: 2;
        }

        /* CURVE */
        .home_service_curve {
            position: absolute;
            right: -38px;
            bottom: 40px;
            width: 40px;
            height: 120px;
            background: url("https://expert-themes.com/wp/explab/wp-content/themes/explab/assets/images/icons/curve.png") no-repeat center/contain;
            z-index: 9;
        }

        .home_service_card:nth-child(2) .home_service_curve,
        .home_service_card:nth-child(3) .home_service_curve {
            top: 80px;
        }

        .home_service_card:last-child .home_service_curve {
            display: none;
        }

        /* FOOTER */
        .home_services_footer {
            position: absolute;
            right: 80px;
            bottom: 120px;
            max-width: 480px;
        }

        .home_services_footer p {
            color: #666;
            line-height: 26px;
        }

        .home_services_btn {
            margin-top: 0px;
            padding: 12px 42px;
            background: #000;
            color: #fff;
            border-radius: 30px;
            border: none;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            transition: .3s;
        }

        .home_services_btn:hover {
            background: #30427F;
            color: #fff;
            transform: translateY(-3px);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .home_services_grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .home_service_card {
                top: 0 !important;
            }

            .home_service_curve {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .home_services_grid {
                grid-template-columns: 1fr;
            }

            .home_services_section {
                padding: 140px 20px;
            }

            .home_services_footer {
                position: static;
                margin-top: 80px;
            }
        }


        /* ======== FAQ SECTION ======== */

        /* ================= HOME FAQ ================= */
        .home_faq_section {
            padding: 100px 20px;
            background: #f6f0ff;
            background-image: url("https://www.transparenttextures.com/patterns/circles.png");
        }

        .home_faq_container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }

        /* LEFT IMAGES */
        .home_faq_images {
            position: relative;
            flex: 1;
            min-width: 300px;
        }

        .home_faq_img_large img {
            width: 100%;
            border-radius: 6%;
            border: 3px solid #30427F;
            animation: home_faq_float 6s ease-in-out infinite;
            background: #fff;
            height: 650px;
        }

        .home_faq_img_small {
            position: absolute;
            bottom: -50px;
            left: -40px;
        }

        .home_faq_img_small img {
            width: 246px;
            height: 300px;
            border-radius: 10%;
            border: 3px solid transparent;
            animation: home_faq_float 5s ease-in-out infinite reverse,
                home_faq_borderFlow 6s linear infinite;
            background:
                linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg,
                    #30427F,
                    #30427F,
                    #00c6ff,
                    #ff4ecd,
                    #30427F) border-box;
        }

        /* RIGHT CONTENT */
        .home_faq_content {
            flex: 1;
            min-width: 320px;
        }


        .home_faq_title {
            font-size: 40px;
            font-weight: 800;
            margin: 10px 0 30px;
        }

        /* ACCORDION */
        .home_faq_list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .home_faq_item {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
            transition: transform .3s ease;
        }

        .home_faq_item:hover {
            transform: translateY(-4px);
        }

        .home_faq_question {
            width: 100%;
            padding: 18px 20px;
            background: #fff;
            border: none;
            font-size: 17px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: anchor-center;
            cursor: pointer;
            text-align: left;
        }

        .home_faq_icon {
            transition: .3s;
        }

        .home_faq_item.active .home_faq_question {
            color: #30427F;
        }

        .home_faq_item.active .home_faq_icon {
            /* transform: rotate(180deg); */
        }

        /* ANSWER */
        .home_faq_answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            transition: max-height .45s ease, opacity .35s ease;
        }

        .home_faq_item.active .home_faq_answer {
            max-height: 200px;
            padding-bottom: 15px;
            opacity: 1;
        }

        .home_faq_answer p {
            font-size: 15px;
            color: #444;
            line-height: 1.6;
        }

        /* ANIMATIONS */
        @keyframes home_faq_float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }

            100% {
                transform: translateY(0);
            }
        }

        @keyframes home_faq_borderFlow {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* RESPONSIVE */
        @media(max-width:768px) {
            .home_faq_container {
                flex-direction: column;
                text-align: center;
            }

            .home_faq_img_small img {
                width: 140px;
                height: 140px;
            }
        }

        /* ======== .testimonial SECTION ========  */

        /* ================= TESTIMONIALS ================= */
        .testimonials-section {
            padding: 120px 0;
            background: #f8f9ff;
        }

        /* HEADING */
        .testimonials-heading {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 70px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(48, 66, 127, .1);
            color: #30427F;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .testimonials-heading h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .testimonials-heading p {
            color: #666;
            font-size: 16px;
            margin: 0 auto;
        }

        /* GRID */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* CARD */
        .testimonial-card {
            background: #fff;
            padding: 40px 35px;
            border-radius: 22px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
            transition: .4s ease;
            position: relative;
        }

        .testimonial-card::before {
            content: "“";
            position: absolute;
            top: -20px;
            right: 25px;
            font-size: 120px;
            color: rgba(48, 66, 127, .08);
            font-family: serif;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
        }

        /* ACTIVE CENTER CARD */
        .testimonial-card.active {
            background: linear-gradient(135deg, #30427F, #4b5fd8);
            color: #fff;
        }

        .testimonial-card.active .testimonial-text,
        .testimonial-card.active h5,
        .testimonial-card.active span {
            color: #fff;
        }

        /* TEXT */
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 30px;
        }

        /* USER */
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-user img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
        }

        .testimonial-user h5 {
            font-size: 16px;
            margin: 0;
            font-weight: 700;
        }

        .testimonial-user span {
            font-size: 14px;
            color: #777;
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:576px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-heading h2 {
                font-size: 32px;
            }
        }


        /* ================= FOOTER ================= */
        .footer-main {
            background: linear-gradient(135deg, #22366d, #0c1428);
            color: #cfd6ff;
            padding-top: 45px;
            font-size: 15px;
        }

        /* GRID */
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 0px;
        }

        /* BRAND */
        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
        }

        .footer-logo img {
            width: 180px;
        }

        .footer-col p {
            margin: 18px 0 28px;
            line-height: 1.7;
            color: #c7d0ff;
        }

        /* SOCIAL */
        .footer-social {
            display: flex;
            gap: 8px;
        }



        /* COLUMNS */
        .footer-col h4 {
            font-size: 18px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #cfd6ff;
            text-decoration: none;
            transition: .3s;
        }

        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 6px;
        }

        /* BOTTOM BAR */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 22px 0;
            margin-top: 20px;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #cfd6ff;
            font-size: 14px;
        }

        .footer-bottom-inner p {
            margin: 0;
            color: #cfd6ff;
        }

        /* RESPONSIVE */
        @media(max-width: 992px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media(max-width: 600px) {
            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom-inner {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        /* ================= FOOTER ================= */
        .footer-main {
            background: linear-gradient(180deg, #1b2e5c, #0d1b3d);
            color: #cfd6ff;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            padding-bottom: 00px;
        }

        /* SOCIAL */
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            color: #fff;
            margin-right: 0px;
            transition: 0.3s;
            font-size: 16px;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: #30427F;
            transform: translateY(-4px);
        }


        /* BOTTOM BAR */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 20px 0;
            margin-top: 20px;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:576px) {
            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-bottom-inner {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        .container.all_stets_section_footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-right: 0;
        }

        .all_stets_links_footer ul {
            display: flex;
            gap: 7px;
            margin-bottom: 0;
            margin-top: 20px;
        }

        .all_stets_links_footer ul li {
            list-style: none;
        }

        .all_stets_links_footer ul li a {
            color: #c7d0ff;
            text-decoration: none;
            font-size: 13px;
            padding: 7px 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid #ffffff17;
            transition: all 0.3s ease;
        }

        .all_stets_links_footer ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }


        /* ================= PORTFOLIO PAGE ================= */

        .portfolio-page {
            background: #f8f9ff;
        }

        /* HERO */
        .portfolio-hero {
            padding: 160px 20px 120px;
            text-align: center;
            background: linear-gradient(135deg, #30427F, #1e2a52);
            color: #fff;
        }

        .portfolio-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .portfolio-hero h1 {
            font-size: 56px;
            font-weight: 800;
        }

        .portfolio-hero h1 span {
            color: #a7b4ff;
        }

        .portfolio-hero p {
            margin-top: 18px;
            font-size: 18px;
            color: #e0e6ff;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        /* FILTERS */
        .portfolio-filters {
            margin: 60px auto;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            border: none;
            padding: 10px 26px;
            border-radius: 30px;
            background: #fff;
            color: #30427F;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #30427F;
            color: #fff;
        }

        .portfolio-page {
            padding-bottom: 120px;
        }

        /* GRID */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding-bottom: 0px;
        }

        /* ITEM */
        .portfolio-item {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            background: #000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
            height: 230px;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.08);
        }

        /* OVERLAY */
        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #0c3246cc, #30427fd9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            opacity: 0;
            transition: .4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h4 {
            font-size: 22px;
            font-weight: 700;
        }

        .portfolio-overlay span {
            font-size: 14px;
            margin: 6px 0 14px;
        }

        .portfolio-overlay a {
            background: #fff;
            color: #30427F;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .portfolio-hero h1 {
                font-size: 42px;
            }
        }

        @media(max-width:576px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }


        /* ================= ABOUT PAGE ================= */

        .about-page {
            background: #f7f9ff;
        }

        /* HERO */
        .about-hero {
            padding: 160px 20px 120px;
            text-align: center;
            background: linear-gradient(135deg, #30427F, #1e2a52);
            color: #fff;
        }

        .about-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
        }

        .about-hero h1 span {
            color: #a7b4ff;
        }

        .about-hero p {
            margin-top: 20px;
            font-size: 18px;
            color: #e0e6ff;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        /* CONTENT */
        .about-content-section {
            padding: 100px 20px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .about-points {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .about-points span {
            font-size: 15px;
            font-weight: 600;
            color: #30427F;
        }

        /* STATS */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stat-box {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: .3s;
        }

        .stat-box h3 {
            font-size: 34px;
            font-weight: 800;
            color: #30427F;
        }

        .stat-box p {
            font-size: 14px;
            color: #666;
        }

        .stat-box:hover {
            transform: translateY(-8px);
        }

        /* MISSION */
        .about-mission-section {
            padding: 100px 20px;
            background: #fff;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mission-card {
            background: #f7f9ff;
            padding: 40px 30px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
            transition: .3s;
        }

        .mission-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .mission-card p {
            font-size: 15px;
            color: #555;
        }

        .mission-card:hover {
            transform: translateY(-10px);
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-points {
                grid-template-columns: 1fr;
            }

            .mission-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-hero h1 {
                font-size: 42px;
            }
        }

        @media(max-width:576px) {
            .mission-grid {
                grid-template-columns: 1fr;
            }
        }



        /* ================= CONTACT PAGE ================= */

        .contact-page {
            background: #f8f9ff;
        }

        /* HERO */
        .contact-hero {
            padding: 160px 20px 120px;
            text-align: center;
            background: linear-gradient(135deg, #30427F, #1e2a52);
            color: #fff;
            position: relative;
        }

        .contact-hero .container {
            position: relative;
            z-index: 9;
        }

        .contact-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .contact-hero h1 {
            font-size: 56px;
            font-weight: 800;
        }

        .contact-hero h1 span {
            color: #30427F;
        }

        .contact-hero p {
            max-width: 720px;
            margin: 18px auto 0;
            font-size: 18px;
            color: #e0e6ff;
        }

        /* WRAPPER */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 120px 0;
        }

        /* INFO */
        .contact-info {
            padding: 0 12px;
        }

        h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .contact-info {
            padding: 0 12px;
        }

        p {
            color: #555;
            margin-bottom: 30px;

        }

        .contact-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 500;
        }

        .contact-list i {
            color: #30427F;
        }

        /* SOCIAL */
        .contact-social a {
            display: inline-flex;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            background: #30427F;
            color: #fff;
            border-radius: 50%;
            margin-right: 10px;
            transition: .3s;
            text-decoration: none;
        }

        .contact-social a:hover {
            transform: translateY(-5px);
        }

        /* FORM */
        .contact-form-box {
            background: #fff;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
        }

        .contact-form .input-group {
            position: relative;
            margin-bottom: 30px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            border: none;
            border-bottom: 2px solid #ddd;
            padding: 10px 0;
            font-size: 15px;
            outline: none;
            background: transparent;
        }

        .contact-form label {
            position: absolute;
            top: 10px;
            left: 0;
            color: #999;
            font-size: 14px;
            pointer-events: none;
            transition: .3s;
        }

        .contact-form input:focus+label,
        .contact-form input:valid+label,
        .contact-form textarea:focus+label,
        .contact-form textarea:valid+label {
            top: -12px;
            font-size: 12px;
            color: #30427F;
        }

        .textarea label {
            top: 14px;
        }

        .btn-submit {
            background: #30427F;
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
        }

        .btn-submit:hover {
            box-shadow: 0 15px 35px rgba(48, 66, 127, .4);
            transform: translateY(-3px);
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                padding: 80px 0;
            }

            .contact-hero h1 {
                font-size: 42px;
            }
        }

        .contact-list a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-list a:hover {
            color: #30427F;
            text-decoration: underline;
        }

        .contact-list li {
            line-height: 1.6;
        }


        /* ================= SERVICES PAGE ================= */

        .services-page {
            background: #f6f8ff;
        }

        /* HERO */
        .services-hero {
            padding: 160px 20px 120px;
            text-align: center;
            background: linear-gradient(135deg, #30427F, #1e2a52);
            color: #fff;
        }

        .services-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .services-hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
        }

        .services-hero h1 span {
            color: #a7b4ff;
        }

        .services-hero p {
            margin-top: 20px;
            font-size: 18px;
            color: #e0e6ff;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        /* GRID */
        .services-grid-section {
            padding: 100px 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* CARD */
        .service-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
            transition: 0.4s ease;
            /* cursor: pointer; */
            position: relative;
            overflow: hidden;
        }

        .service-card a {
            text-decoration: none;
        }

        .service-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #30427F, #30427F);
            opacity: 0;
            transition: 0.4s;
            z-index: 0;
            background: linear-gradient(180deg, #1b2e5c, #0d1b3d);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card * {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #000;
            transition: .3s;
        }

        .service-card p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            transition: .3s;
        }

        /* HOVER */
        .service-card:hover {
            transform: translateY(-12px);
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: #fff;
        }

        /* RESPONSIVE */
        @media(max-width:992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-hero h1 {
                font-size: 42px;
            }
        }

        @media(max-width:576px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-hero {
                padding: 130px 20px 90px;
            }
        }

        /* =============== inner banner css ============ */
        .inner_tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .inner_banner_contnet h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
        }

        .inner_banner_contnet h1 span {
            color: #a7b4ff;
        }

        .inner_banner_contnet p {
            margin-top: 20px;
            font-size: 18px;
            color: #e0e6ff;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .inner_banner {
            position: relative;
        }

        /* ================= DOTTED GLOBE ================= */


        /* Hero content always on top */
        .inner {
            position: relative;
            z-index: 10;
        }

        /* Overflow fix */
        .inner_banner {
            position: relative;
            overflow: hidden;
        }

        /* Mobile fix */
        @media (max-width: 500px) {
            .inner_globe-bg::after {
                width: 100%;
                height: auto;
                top: -60px;
            }

            .inner_globe-bg svg {
                top: 80px;
            }
        }


        .inner_banner {
            position: relative;
            overflow: hidden;
            padding: 160px 20px 120px;
            text-align: center;
            background: linear-gradient(135deg, #30427F, #1e2a52);
            color: #fff;
        }

        /* Globe container */
        .inner_globe-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.35;
        }

        #globe_Svg {
            width: 100%;
            height: 100%;
            filter:
                drop-shadow(0 0 60px rgba(255, 255, 255, 0.15)) drop-shadow(0 0 80px rgba(138, 135, 135, 0.25));
        }

        /* Content above globe */
        .inner {
            position: relative;
            z-index: 2;
        }

        /* ================= BACK TO TOP BUTTON ================= */
        .back-to-top {
            position: fixed;
            right: 22px;
            bottom: 28px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-color);
            color: var(--text-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity .25s ease, transform .25s ease, visibility .25s;
            z-index: 99999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            filter: brightness(.95);
        }

        /* ================= THEMED SCROLLBAR ================= */
        /* WebKit browsers */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.04);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
            border: 3px solid rgba(0, 0, 0, 0.03);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }

        /* Firefox */
        html {
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.06);
        }

        /* ================= ENQUIRY MODAL ================= */
        .enquiry-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
        }

        .enquiry-modal.active {
            display: block;
        }

        /* BACKDROP */
        .enquiry-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
        }

        /* BOX */
        .enquiry-box {
            position: relative;
            max-width: 480px;
            background: #fff;
            margin: 8vh auto;
            padding: 40px 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
            animation: modalPop .5s ease;
        }

        /* CLOSE */
        .enquiry-close {
            position: absolute;
            top: 14px;
            right: 18px;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: #999;
        }

        /* TAG */
        .enquiry-tag {
            display: inline-block;
            background: rgba(48, 66, 127, .1);
            color: #30427F;
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* HEADING */
        .enquiry-box .enquiry-subtag {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .enquiry-box .enquiry-subtag span {
            color: #30427F;
        }

        /* TEXT */
        .enquiry-box p {
            font-size: 15px;
            color: #555;
            margin-bottom: 30px;
        }

        /* FORM */
        .enquiry-form .form-group {
            margin-bottom: 18px;
        }

        .enquiry-form input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 14px;
            outline: none;
            transition: .3s;
        }

        .enquiry-form input:focus {
            border-color: #30427F;
            box-shadow: 0 0 0 3px rgba(48, 66, 127, .15);
        }

        /* BUTTON */
        .enquiry-btn {
            width: 100%;
            background: #30427F;
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
        }

        .enquiry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(48, 66, 127, .45);
        }

        .contact-form input:focus:invalid,
        .contact-form textarea:focus:invalid {
            border-color: #ff4d4d !important;
        }

        .contact-form input:valid,
        .contact-form textarea:valid {
            border-color: #2ecc71 !important;
        }

        .error-text {
            color: #ff4d4d;
            font-size: 12px;
            display: none;
            margin-top: -15px;
            margin-bottom: 15px;
        }

        input:invalid:not(:placeholder-shown)+.error-text {
            display: block;
        }