        :root {
            --primary: #DC1D44;
            --primary-dark: #A31534;
            --secondary: #A31534;
            --accent: #FF6B81;
            --accent2: #FF6B81;
            --bg: #F8F9FA;
            --bg2: #E9ECEF;
            --card-bg: #ffffff;
            --text: #212529;
            --text-light: #495057;
            --text-muted: #6c757d;
            --border: #dee2e6;
            --shadow: 0 8px 32px rgb(220 29 68 / 32%);
            --radius: 18px;
            --radius-sm: 10px;
            --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg2);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* ======== PAGE LOADER ======== */
        #page-loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 26px;
            transition: opacity 0.6s ease;
        }

        #page-loader.hide {
            opacity: 0;
            pointer-events: none;
        }

        .loader-logo {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 3px;
            animation: logoPulse 1.4s ease-in-out infinite alternate;
        }

        @keyframes logoPulse {
            from {
                opacity: 0.5;
                transform: scale(0.96);
            }

            to {
                opacity: 1;
                transform: scale(1.04);
            }
        }

        .loader-bar-wrap {
            width: 220px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .loader-bar-fill {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 10px;
            animation: loaderFill 1.8s ease-in-out forwards;
        }

        @keyframes loaderFill {
            0% {
                width: 0
            }

            70% {
                width: 85%
            }

            100% {
                width: 100%
            }
        }

        .loader-dots {
            display: flex;
            gap: 8px;
        }

        .loader-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: rgba(220, 29, 68, 0.35);
            animation: dotBounce 1s ease-in-out infinite;
        }

        .loader-dot:nth-child(2) {
            animation-delay: .2s
        }

        .loader-dot:nth-child(3) {
            animation-delay: .4s
        }

        @keyframes dotBounce {

            0%,
            100% {
                transform: translateY(0);
                background: rgba(220, 29, 68, 0.35)
            }

            50% {
                transform: translateY(-10px);
                background: var(--primary)
            }
        }

        .loader-text {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.78rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ======== TICKER ======== */
        #ticker {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 998;
            background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
            height: 38px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .ticker-label {
            flex-shrink: 0;
            background: rgba(0, 0, 0, 0.22);
            padding: 0 16px;
            height: 100%;
            display: flex;
            align-items: center;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
            text-transform: uppercase;
            gap: 7px;
            white-space: nowrap;
        }

        .ticker-track-wrap {
            flex: 1;
            overflow: hidden;
        }

        .ticker-track {
            display: flex;
            width: max-content;
            animation: tickerScroll 30s linear infinite;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0 26px;
            font-size: 0.77rem;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            opacity: 0.93;
        }

        .ticker-sep {
            opacity: 0.35;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        /* ======== NAVBAR ======== */
        nav {
            position: fixed;
            top: 38px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(248, 249, 250, 0.93);
            backdrop-filter: blur(18px);
            border-bottom: 1.5px solid var(--border);
            padding: 0 9vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            transition: var(--transition);
        }

        nav.scrolled {
            box-shadow: 0 4px 30px rgba(220, 29, 68, 0.12);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-img {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            box-shadow: 0 4px 16px rgba(220, 29, 68, 0.3);
            flex-shrink: 0;
        }

        .logo-text {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.45rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 600;
            font-size: 0.93rem;
            padding: 7px 15px;
            border-radius: 50px;
            transition: var(--transition);
        }

        /* .nav-links a:hover,
        .nav-links a.active {
            background: var(--primary);
            color: #fff;
        } */

        .btn-login {
            background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
            color: #fff !important;
            padding: 8px 22px !important;
            border-radius: 50px !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 14px rgba(220, 29, 68, 0.3);
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(176, 23, 57, 0.4) !important;
            background: linear-gradient(135deg, #B01739, var(--secondary)) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2.5px;
            background: var(--primary-dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px)
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px)
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 106px;
            left: 0;
            right: 0;
            background: rgba(248, 249, 250, 0.99);
            backdrop-filter: blur(20px);
            padding: 16px 5vw 22px;
            border-bottom: 1.5px solid var(--border);
            z-index: 997;
            flex-direction: column;
            gap: 5px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            padding: 11px 16px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            background: var(--bg2);
            color: var(--primary);
        }

        .mobile-menu .btn-login-mob {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff !important;
            border-radius: 50px !important;
            text-align: center;
            margin-top: 6px;
        }

        .mobile-menu .btn-login-mob:hover {
            background: linear-gradient(135deg, #B01739, var(--secondary));
        }

        /* ======== HERO CAROUSEL - FULL SIZE IMAGES ======== */
        #home {
            margin-top: 17px;
            position: relative;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .carousel-wrapper {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            position: relative;
            z-index: 2;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            width: 100vw;
            height: 80vh;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.65s cubic-bezier(.4, 0, .2, 1);
            height: 100%;
        }

        .slide {
            min-width: 100vw;
            height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #fff;
            padding: 0 5vw;
            max-width: 800px;
        }

        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }

        .slide-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 16px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .slide-title span {
            color: var(--accent);
        }

        .slide-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top:73%;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 13px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(220, 29, 68, 0.35);
            transition: var(--transition);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(176, 23, 57, 0.45);
            background: linear-gradient(135deg, #B01739, var(--secondary));
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 11px 26px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-3px);
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            z-index: 10;
        }

        .carousel-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--primary);
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            flex-shrink: 0;
        }

        .carousel-arrow:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: #fff;
            width: 28px;
            border-radius: 6px;
        }

        .slide-visual,
        .slide-visual-mobile,
        .hero-bg-circle {
            display: none;
        }

        /* ======== SECTION COMMON ======== */
        section {
            padding: 90px 5vw;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(220, 29, 68, 0.10);
            color: var(--primary);
            padding: 5px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
            border: 1px solid rgba(220, 29, 68, 0.2);
        }

        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-sub {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 560px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            margin-bottom: 54px;
        }

        .section-header .section-sub {
            margin: 0 auto;
        }

        /* ======== AOS SCROLL ANIMATIONS ======== */
        [data-aos] {
            opacity: 0;
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        [data-aos="fade-up"] {
            transform: translateY(40px);
        }

        [data-aos="fade-right"] {
            transform: translateX(-44px);
        }

        [data-aos="fade-left"] {
            transform: translateX(44px);
        }

        [data-aos="zoom-in"] {
            transform: scale(0.87);
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: none;
        }

        [data-aos-delay="100"] {
            transition-delay: .1s
        }

        [data-aos-delay="150"] {
            transition-delay: .15s
        }

        [data-aos-delay="200"] {
            transition-delay: .2s
        }

        [data-aos-delay="300"] {
            transition-delay: .3s
        }

        [data-aos-delay="400"] {
            transition-delay: .4s
        }

        [data-aos-delay="500"] {
            transition-delay: .5s
        }

        /* ======== ABOUT ======== */
        #about {
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

        .about-img-wrap {
            position: relative;
        }

        .about-img {
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(220, 29, 68, 0.18);
            aspect-ratio: 4/3;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .about-img:hover img {
            transform: scale(1.04);
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: #fff;
            padding: 14px 20px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-badge-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }

        .about-badge-val {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
        }

        .about-badge-lbl {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .about-content {
            padding: 10px 0;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 30px;
        }

        .about-feat {
            background: #fff;
            border-radius: 14px 50px;
            padding: 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .about-feat:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 36px rgba(220, 29, 68, 0.2);
        }

        .about-feat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(220, 29, 68, 0.15), rgba(163, 21, 52, 0.12));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
        }

        .about-feat h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .about-feat p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ======== STATS STRIP ======== */
        .stats-strip {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 54px 5vw;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            color: #fff;
        }

        .stat-num {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            display: block;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.85;
            font-weight: 600;
        }

        /* ======== SERVICES ======== */
        #services {
            background: var(--bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 7px 80px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1.5px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 54px rgba(220, 29, 68, 0.2);
            border-color: var(--primary);
        }

        .service-card-img {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.55s ease;
        }

        .service-card:hover .service-card-img img {
            transform: scale(1.07);
        }

        .service-card-img-overlay {
            position: absolute;
            inset: 0;
            /* background: linear-gradient(to top, rgba(10, 20, 30, 0.48) 0%, transparent 60%); */
        }

        .service-card-body {
            padding: 20px 22px;
        }

        .service-card-body h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .service-card-body p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(220, 29, 68, 0.10);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        /* ======== CONTACT ======== */
        #contact {
            background: linear-gradient(135deg, #E9ECEF 0%, #F8F9FA 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 54px;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .contact-info p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .contact-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            box-shadow: 0 4px 14px rgba(220, 29, 68, 0.28);
        }

        .contact-item h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .contact-item p {
            font-size: 0.88rem;
            color: var(--text-light);
            margin: 0;
        }

        .contact-form {
            background: #fff;
            border-radius: 24px;
            padding: 36px;
            box-shadow: var(--shadow);
            border: 1.5px solid var(--border);
        }

        .contact-form h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 7px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            color: var(--text);
            background: var(--bg);
            transition: var(--transition);
            outline: none;
            resize: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(220, 29, 68, 0.12);
        }

        .form-group textarea {
            height: 110px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(220, 29, 68, 0.32);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(176, 23, 57, 0.42);
            background: linear-gradient(135deg, #B01739, var(--secondary));
        }

        /* ======== FOOTER ======== */
        footer {
            background: #1a1a2e;
            color: rgba(255, 255, 255, 0.75);
            padding: 70px 5vw 26px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 44px;
            margin-bottom: 52px;
        }

        .footer-brand .footer-logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .footer-logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 4px 18px rgba(220, 29, 68, 0.3);
        }

        .footer-logo-text {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 270px;
        }

        .social-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 11px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .footer-col ul li a i {
            font-size: 0.65rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* ======== TOAST ======== */
        .toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 14px 22px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.92rem;
            box-shadow: 0 8px 32px rgba(220, 29, 68, 0.35);
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateY(80px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* ======== RESPONSIVE ======== */
        @media(max-width:1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr
            }

            .stats-strip {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:900px) {
            .about-grid {
                grid-template-columns: 1fr
            }

            .about-img-wrap {
                max-width: 500px;
                margin: 0 auto 28px
            }

            .contact-grid {
                grid-template-columns: 1fr
            }

            .about-badge {
                right: 0
            }
        }

        @media(max-width:768px) {
            .nav-links {
                display: none
            }

            .hamburger {
                display: flex
            }

            .slide-content {
                padding: 0 5vw;
                text-align: center
            }

            .slide-desc {
                margin: 0 auto 24px
            }

            .slide-btns {
                justify-content: center
            }

            .slide-badge {
                margin: 0 auto 16px
            }

            .services-grid {
                grid-template-columns: 1fr
            }

            .about-features {
                grid-template-columns: 1fr
            }

            .form-row {
                grid-template-columns: 1fr
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px
            }

            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 40px 5vw
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center
            }

            .footer-bottom-links {
                justify-content: center
            }

            section {
                padding: 68px 5vw
            }
        }

        @media(max-width:480px) {
            .stats-strip {
                grid-template-columns: 1fr 1fr
            }

            #ticker {
                font-size: 0.72rem
            }
        }

    /* added css */
     #dpn-logo-carousel {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 15px 0;
    border-radius: 10px;
}

#dpn-logo-carousel .dpn-logo-track {
    display: flex;
    width: calc(250px * 16);
    animation: dpnScrollLoop 25s linear infinite;
}

#dpn-logo-carousel .dpn-logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dpn-logo-carousel .dpn-logo-item img {
    width: 204px;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
}

#dpn-logo-carousel .dpn-logo-item img:hover {
    transform: scale(1.1);
}

@keyframes dpnScrollLoop {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }

}
