 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            transition: opacity 0.3s;
        }

        .top-bar a:hover {
            opacity: 0.8;
        }

        .accessibility-tools button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            margin: 0 5px;
            font-size: 16px;
            transition: transform 0.3s;
        }

        .accessibility-tools button:hover {
            transform: scale(1.2);
        }

        .lang-btn {
            background: #FFA500;
            color: white;
            border: none;
            padding: 4px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .lang-btn:hover {
            background: #FF8C00;
            transform: translateY(-2px);
        }

        /* Logo Bar */
        .logo-bar {
            background: white;
            /* padding: 15px 0; */
            padding: 15px 0 5px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo-section {
    display: flex;
    align-items: center;
}

        .logo-section img {
            height: 75px;
            /* margin: 0 15px; */
            padding: 0 12px;
            transition: transform 0.3s;
            position: relative;
        }

        /* vertical bar */
.logo-section img:not(:last-child) {
    border-right: 2px solid #999;
    /* height: 45px; */
}

        .logo-section img:hover {
            transform: scale(1.05);
        }

        .minister-photos {
            display: flex;
            /* gap: 15px; */
        }

        .minister-photos img {
            height: 80px;
            width: 70px;
            /* border-radius: 50%; */
            /* object-fit: cover;   */
            /* border: 3px solid #FFA500; */
            transition: all 0.3s;
        }

        .minister-photos img:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(255,165,0,0.5);
        }

        /* Navigation */
        .navbar-custom {
            background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
            padding: 0;
        }

        .navbar-custom .nav-link {
            color: white !important;
            padding: 15px 20px;
            /* font-weight: 600; */
            font-weight: 300;
            transition: all 0.3s;
            position: relative;
        }

        .navbar-custom .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: white;
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .navbar-custom .nav-link:hover::after {
            width: 80%;
        }

        .navbar-custom .nav-link:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Banner Section */
        .banner-section {
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        /* .konark-wheel {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            opacity: 0.15;
            animation: rotateWheel 60s linear infinite;
            z-index: 1;
        } */
         .konark-wheel {
    position: absolute;
    right: -38px;
    top: 41%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    opacity: 0.15;
    animation: rotateWheel 60s linear infinite;
    z-index: 3;
}

        @keyframes rotateWheel {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* .banner-left {
            background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
            width: 60%;
            float: left;
            min-height: 600px;
            position: relative;
            z-index: 3;
            padding: 80px 60px;
        } */

        .banner-left {
    /* background: linear-gradient(135deg, rgba(255,165,0,0.9) 0%, rgba(255,140,0,0.9) 100%), 
                url('img/left-banner.png9'); */
                background: url('img/left-banner4.png') no-repeat center center;

    background-size: cover;
    background-position: center;
    width: 60%;
    float: left;
    /* min-height: 600px; */
    /* min-height: 672px; */
    height: 600px;
    position: relative;
    z-index: 2;
    padding: 80px 60px;
}

        .banner-right {
            background: #F5F5F5;
            width: 40%;
            float: right;
            min-height: 600px;
            position: relative;
            /* z-index: 4; */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-left h1 {
            font-size: 4rem;
            color: white;
            font-weight: 800;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .banner-left p {
            font-size: 1.5rem;
            color: white;
            background: rgba(255,255,255,0.2);
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lakhpati-card {
            margin-bottom: 100px;
            width: 606px;
            height: 395px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
            z-index: 4;
            transform: translateX(-50px);
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(-50px);
            }
        }

        .lakhpati-card h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .lakhpati-card .next {
            color: #FFA500;
            font-weight: 800;
        }

        .lakhpati-card .enroll-btn {
            background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .lakhpati-card .enroll-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,165,0,0.4);
        }

        .vertical-scroll-images {
            position: absolute;
            border-radius: 18px;
            right: 90px;
            top: 42%;
            transform: translateY(-50%);
            height: 391px;
            overflow: hidden;
            z-index: 4;
        }

        .scroll-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: verticalScroll 20s linear infinite;
        }

        @keyframes verticalScroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .scroll-container img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .scroll-container img:nth-child(3n+2) {
            transform: scale(1.1);
            box-shadow: 0 10px 40px rgba(255,165,0,0.5);
            border: 4px solid #FFA500;
        }

        /* Bottom Banner Section */
.bottom-banner {
    position: relative;
    margin-top: -60px;
    z-index: 5;
    padding: 0 60px;
    margin-bottom: 40px;
}

.initiatives-card {
    background: white;
    /* border-radius: 0; */
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 180px;
}

.logos-section {
    width: 70%;
    background: white;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.initiative-item {
    text-align: center;
    padding: 10px 15px;
    transition: transform 0.3s;
}

.initiative-item:hover {
    transform: translateY(-10px);
}

.initiative-item img {
    height: 70px;
    margin-bottom: 8px;
}

.initiative-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #333;
}

.our-initiatives-section {
    width: 30%;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    position: relative;
}

.maroon-bar {
    width: 60px;
    height: 4px;
    background: #8B0000;
    margin-bottom: 15px;
}

.our-initiatives-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.3;
}

.our-initiatives-section p {
    color: white;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 20px;
}

.arrow-circle {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.arrow-circle i {
    color: #8B0000;
    font-size: 1.1rem;
}

/* Initiation Section ddd */
/* .initiation-section {
    padding: 80px 0;
    background: #F9F9F9;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.section-title .orange {
    color: #FFA500;
} */




        /* Initiation Section */
.initiation-section {
    padding: 80px 0;
    background: #F9F9F9;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    /* text-align: left; */
    text-align: center;
    padding-left: 60px;
}

.section-title .orange {
    color: #FFA500;
    font-weight: 700;
}

/* Cards Container */
.cards-container {
    display: flex;
    gap: 30px;
    padding: 0 60px;
}

/* Card 1 - Carousel */
.card-carousel {
    flex: 1;
    background: linear-gradient(135deg, #D2B48C 0%, #C19A6B 100%);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.card-carousel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.carousel-images-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.carousel-images {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-text {
    position: absolute;
    bottom: 60px;
    left: 134px;
    color: hsl(29.72deg 71.24% 70%);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* Card 2 - Static */
.card-static {
    flex: 1;
    background: hsl(0deg 0% 99.1%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.card-static:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.card-static-header {
    text-align: center;
}

.card-static h3 {
    font-size: 2.2rem;
    margin: 0;
    line-height: 1.2;
    color: #333;
}

.card-static .subtitle {
    color: #999;
    font-size: 0.95rem;
    margin: 10px 0 20px 0;
}

.contact-number {
    color: #8B0000;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    text-align: center;
}

.card-static p {
    text-align: center;
    line-height: 1.8;
    color: #666;
    font-size: 0.95rem;
}

/* Card 3 - Scrollable */
.card-scrollable {
    flex: 1;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s;
}

.card-scrollable:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.scroll-content {
    overflow: hidden;
    height: 500px;
}

.scroll-cards {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.scroll-card-item {
    min-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.scroll-card-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.scroll-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scroll-card-item h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
}

.scroll-card-item .know-more {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.scroll-card-item .know-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,165,0,0.4);
}

.scroll-arrows {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.arrow-btn-scroll {
    background: white;
    border: 2px solid #8B0000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow-btn-scroll:hover {
    background: #8B0000;
    color: white;
    transform: scale(1.1);
}

.arrow-btn-scroll i {
    color: #8B0000;
}

.arrow-btn-scroll:hover i {
    color: white;
}

/* odisha map section */
/* ⬇️ TOP BOTTOM GAP YAHA SE CONTROL KAREIN ⬇️ */
        .odisha-section {
            padding: 80px 0; /* YAHA CHANGE KAREIN: top-bottom gap */
        }
        /* ⬆️ TOP BOTTOM GAP CONTROL YAHA TAK ⬆️ */

        .odisha-section {
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
            position: relative;
            overflow: hidden;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        .left-content h3 {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .left-content h1 {
            color: white;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 0;
        }

        .map-container {
            background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .map-header h2 {
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .map-header p {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 30px;
        }

        .map-wrapper {
            position: relative;
            min-height: 400px;
        }

        /* Odisha Map SVG Styling */
        .odisha-map {
            max-width: 100%;
            height: auto;
        }

        /* Alternative: Image based map */
        .map-image-container {
            position: relative;
            width: 100%;
        }

        .map-image {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Dot Styling */
        .map-dot1,
.map-dot2,
.map-dot3,
.map-dot4,
.map-dot5,
.map-dot6,
.map-dot7,
.map-dot8,
.map-dot9,
.map-dot10,
.map-dot11,
.map-dot12,
.map-dot13,
.map-dot14 {
            position: absolute;
            width: 16px;
            height: 16px;
            background: white;
            border: 3px solid #FF6B00;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

.map-dot1:hover,
.map-dot2:hover,
.map-dot3:hover,
.map-dot4:hover,
.map-dot5:hover,
.map-dot6:hover,
.map-dot7:hover,
.map-dot8:hover,
.map-dot9:hover,
.map-dot10:hover,
.map-dot11:hover,
.map-dot12:hover,
.map-dot13:hover,
.map-dot14:hover {
    transform: scale(1.5);
            background: #FF6B00;
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}


        /* Popup Styling */
        .district-popup {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            display: none;
            z-index: 100;
            white-space: nowrap;
            pointer-events: none;
            transform: translate(-50%, -100%);
            margin-top: -15px;
        }

        .district-popup::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid white;
        }

        .district-popup.active {
            display: block;
        }

        .district-popup h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333;
            margin: 0 0 5px 0;
        }

        .district-popup p {
            font-size: 1.5rem;
            font-weight: 800;
            color: #FF6B00;
            margin: 0;
        }

        .map-info {
            position: absolute;
            bottom: 20px;
            left: 40px;
            color: white;
        }

        .map-info h3 {
            font-size: 1.2rem;
            margin: 0;
        }

        .map-info p {
            font-size: 0.9rem;
            margin: 0;
            opacity: 0.9;
        }

        /* Bottom Illustration */
        .bottom-illustration {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            z-index: 1;
        }

        .bottom-illustration img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .left-content h1 {
                font-size: 2.5rem;
            }
            .map-header h2 {
                font-size: 2rem;
            }
            .odisha-section {
                padding: 40px 0; /* Mobile par kam gap */
            }
        }
        /* my aded */
                .map-dot1 {
    top: 22%;
    left: 57%;
}
.map-dot2 {
    top: 21%;
    left: 85%;
}

.map-dot3 {
    top: 31%;
    left: 54%;
}

.map-dot4 {
    top: 37%;
    left: 45%;
}

.map-dot5 {
    top: 47%;
    left: 55%;
}

.map-dot6 {
    top: 45%;
    left: 50%;
}

.map-dot7 {
    top: 48%;
    left: 65%;
}

.map-dot8 {
    top: 31%;
    left: 79%;
}

.map-dot9 {
    top: 55%;
    left: 55%;
}

.map-dot10 {
    top: 75%;
    left: 41%;
}

.map-dot11 {
    top: 65%;
    left: 45%;
}

.map-dot12 {
    top: 38%;
    left: 68%;
}

.map-dot13 {
    top: 47%;
    left: 80%;
}

.map-dot14 {
    top: 23%;
    left: 70%;
}

        /* end */
/* end */

/* 4 cards section */
.parichay-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .parichay-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background-image: url('img/konark-wheel.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.05;
            z-index: 1;
        }

        .section-title {
            color: #8B4513;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .carousel-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 80px;
            z-index: 2;
        }

        .cards-wrapper {
            display: flex;
            gap: 20px;
            overflow: hidden;
        }

        .didi-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            min-width: calc(25% - 15px);
            flex: 1;
        }

        .didi-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .card-body {
            padding: 25px;
            position: relative;
        }

        .card-body::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 0;
            background: linear-gradient(135deg, transparent 50%, #FF9933 50%);
            transition: all 0.4s ease;
            border-radius: 0 0 15px 0;
        }

        .didi-card:hover .card-body::before {
            width: 100px;
            height: 100px;
        }

        .card-title {
            color: #333;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .card-text {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .progress {
            height: 8px;
            border-radius: 10px;
            background-color: #f0f0f0;
            margin-bottom: 10px;
        }

        .progress-bar {
            background: linear-gradient(90deg, #FF9933 0%, #FFA500 100%);
            border-radius: 10px;
        }

        .earned-amount {
            color: #333;
            font-weight: 600;
            font-size: 1rem;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #8B4513;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-arrow:hover {
            background: #A0522D;
        }

        .nav-arrow.prev {
            left: 10px;
        }

        .nav-arrow.next {
            right: 10px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            position: relative;
            z-index: 2;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-indicators button.active {
            background: #FF9933;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 1200px) {
            .didi-card {
                min-width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .didi-card {
                min-width: calc(50% - 10px);
            }
            
            .carousel-container {
                padding: 0 60px;
            }
        }

        @media (max-width: 576px) {
            .didi-card {
                min-width: 100%;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
/* end */

/* asantu samil haba section */
.asantu-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to right, 
                #E8D4B8 0%, 
                #E8D4B8 30%, 
                #F5E6D3 50%, 
                #E8D4B8 100%
            );
        }

        .asantu-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background-image: url('konark-wheel.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.08;
            z-index: 1;
        }

        .asantu-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .asantu-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .form-card {
            background: linear-gradient(180deg, #7B4B3A 0%, #802418 100%);
            border-radius: 40px;
            padding: 50px 40px;
            max-width: 520px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            position: relative;
            z-index: 3;
        }

        .form-card-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-card-header h2 {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .form-card-header p {
            color: white;
            font-size: 1.1rem;
            margin: 0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: block;
        }

        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 12px;
            padding: 14px 20px;
            color: white;
            font-size: 1rem;
            backdrop-filter: blur(10px);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            box-shadow: none;
            outline: none;
        }

        .form-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            appearance: none;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-select option {
            background: #7B4B3A;
            color: white;
        }

        .illustration-border {
            margin-top: 30px;
            text-align: center;
        }

        .illustration-border img {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 5px;
        }

        .footer-text {
            color: white;
            text-align: center;
            margin-top: 20px;
            font-size: 0.95rem;
        }

        .right-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .contact-info {
            text-align: center;
            margin-bottom: 30px;
        }

        .contact-info h3 {
            color: #8B4513;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .phone-number {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            color: #FF8C42;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .phone-icon {
            font-size: 3rem;
        }

        .woman-image {
            position: relative;
            z-index: 2;
        }

        .woman-image img {
            max-width: 500px;
            width: 100%;
            height: auto;
            filter: grayscale(20%);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .asantu-content {
                flex-direction: column;
            }

            .form-card {
                max-width: 100%;
            }

            .woman-image img {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .asantu-section {
                padding: 60px 0;
            }

            .form-card {
                padding: 40px 30px;
                border-radius: 30px;
            }

            .form-card-header h2 {
                font-size: 1.6rem;
            }

            .phone-number {
                font-size: 1.8rem;
            }

            .contact-info h3 {
                font-size: 1.4rem;
            }

            .woman-image img {
                max-width: 300px;
            }
        }

        @media (max-width: 576px) {
            .phone-number {
                font-size: 1.4rem;
                flex-direction: column;
                gap: 5px;
            }

            .phone-icon {
                font-size: 2rem;
            }
        }

/* end */

/* a start */
/* lakhpati did cards 2 */
.lakhyapati-cards-section-unique {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-lakhyapati {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-lakhyapati {
    color: #8B3A3A;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-subtitle-lakhyapati {
    color: #8B3A3A;
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-buttons-lakhyapati {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
}

.nav-btn-lakhyapati {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #D3D3D3;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn-lakhyapati:hover {
    background: #B8B8B8;
    transform: scale(1.05);
}

.nav-btn-lakhyapati.next-lakhyapati {
    background: #FFA500;
}

.nav-btn-lakhyapati.next-lakhyapati:hover {
    background: #FF8C00;
}

.cards-container-lakhyapati {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.didi-card-unique {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 450px;
}

.didi-card-unique:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-image-lakhyapati {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.didi-card-unique:hover .card-image-lakhyapati {
    transform: scale(1.05);
}

.location-tag-lakhyapati {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2;
    transition: all 0.4s ease;
}

.location-icon-lakhyapati {
    color: #FFA500;
    font-size: 20px;
}

.location-name-lakhyapati {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.card-overlay-lakhyapati {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #8B3A3A 0%, #A54545 100%);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
    z-index: 3;
}

.didi-card-unique:hover .card-overlay-lakhyapati {
    transform: translateY(0);
}

.didi-card-unique:hover .location-tag-lakhyapati {
    transform: translateX(-50%) translateY(-180px);
}

.overlay-text-lakhyapati {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.know-more-btn-lakhyapati {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    transition: gap 0.3s ease;
}

.know-more-btn-lakhyapati:hover {
    gap: 15px;
}

.arrow-icon-lakhyapati {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.know-more-btn-lakhyapati:hover .arrow-icon-lakhyapati {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .cards-container-lakhyapati {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-buttons-lakhyapati {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .cards-container-lakhyapati {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .didi-card-unique {
        height: 380px;
    }

    .section-title-lakhyapati {
        font-size: 1.6rem;
    }

    .section-subtitle-lakhyapati {
        font-size: 1.3rem;
    }

    .nav-btn-lakhyapati {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .cards-container-lakhyapati {
        grid-template-columns: 1fr;
    }

    .lakhyapati-cards-section-unique {
        padding: 60px 0;
    }

    .didi-card-unique {
        height: 420px;
    }
}

/* end */



/* dashboard section */
.dashboard-section-unique {
    padding: 80px 0;
    background: #FFF5F5;
}

.dashboard-container-unique {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Filter Section */
.filter-section-dashboard {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-row-dashboard {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label-dashboard {
    color: #8B4513;
    font-weight: 600;
    font-size: 1.1rem;
}

.filter-dropdown-dashboard {
    background: #FFF5F0;
    border: none;
    padding: 12px 35px 12px 20px;
    border-radius: 25px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.filter-dropdown-dashboard:hover {
    background: #FFE8DC;
}

.clear-btn-dashboard {
    background: #B85C3E;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s ease;
}

.clear-btn-dashboard:hover {
    background: #A04A2F;
    transform: scale(1.05);
}

/* Section Title */
.section-title-dashboard {
    color: #8B3A3A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card-dashboard {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-icon-dashboard {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.stat-content-dashboard h3 {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.stat-content-dashboard p {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Color Variations */
.stat-card-dashboard.peach-dashboard .stat-icon-dashboard {
    background: #FFE8DC;
    color: #D2691E;
}

.stat-card-dashboard.light-peach-dashboard .stat-icon-dashboard {
    background: #FFF0E6;
    color: #E89A6F;
}

.stat-card-dashboard.light-pink-dashboard .stat-icon-dashboard {
    background: #FFE4E1;
    color: #E89A9A;
}

.stat-card-dashboard.light-orange-dashboard .stat-icon-dashboard {
    background: #FFF3E0;
    color: #E8A06F;
}

/* LokOS Outreach Section */
.lokos-grid-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.lokos-card-dashboard {
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.lokos-card-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.lokos-card-dashboard.maroon-dashboard {
    background: linear-gradient(135deg, #8B3A3A 0%, #A54545 100%);
}

.lokos-card-dashboard.maroon-dashboard .stat-content-dashboard h3,
.lokos-card-dashboard.maroon-dashboard .stat-content-dashboard p {
    color: white;
}

.stat-card-dashboard.light-purple-dashboard .stat-icon-dashboard {
    background: rgba(147, 112, 219, 0.2);
    color: #9370DB;
}

/* Lakhpati Didi Impact Section */
.impact-grid-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.impact-card-dashboard {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.impact-card-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.impact-card-dashboard.light-green-dashboard .stat-icon-dashboard {
    background: #F0F8E8;
    color: #8BC34A;
}

.impact-card-dashboard.light-pink-dashboard .stat-icon-dashboard {
    background: #FFE8E8;
    color: #E89A9A;
}

.impact-card-dashboard.light-purple-dashboard .stat-icon-dashboard {
    background: #F3E8FF;
    color: #9370DB;
}

.impact-card-dashboard.light-yellow-dashboard .stat-icon-dashboard {
    background: #FFF8E1;
    color: #FFB74D;
}

.section-subtitle-dashboard {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Map Section */
.map-section-dashboard {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-title-dashboard {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.maps-container-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.map-wrapper-dashboard {
    background: #F8F8F8;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.map-wrapper-dashboard img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid-dashboard,
    .impact-grid-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .lokos-grid-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-section-unique {
        padding: 60px 0;
    }

    .stats-grid-dashboard,
    .lokos-grid-dashboard,
    .impact-grid-dashboard {
        grid-template-columns: 1fr;
    }

    .maps-container-dashboard {
        grid-template-columns: 1fr;
    }

    .filter-row-dashboard {
        flex-direction: column;
        align-items: stretch;
    }

    .clear-btn-dashboard {
        margin-left: 0;
    }

    .stat-content-dashboard p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-section-dashboard {
        padding: 20px;
    }

    .stat-card-dashboard,
    .lokos-card-dashboard,
    .impact-card-dashboard {
        padding: 20px;
    }

    .stat-icon-dashboard {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* end */



/* 3rd cards section */
.carousel-section-3d {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    position: relative;
}

.carousel-wrapper-3d {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.carousel-container-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 60px 0;
    perspective: 1000px;
}

.carousel-card-3d {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    width: 350px;
    flex-shrink: 0;
}

.carousel-card-3d.side-card-3d {
    opacity: 0.7;
    transform: scale(0.85);
}

.carousel-card-3d.center-card-3d {
    transform: scale(1.1) translateY(20px);
    box-shadow: 0 20px 50px rgba(139, 58, 58, 0.3);
    z-index: 10;
    opacity: 1;
}

.carousel-card-3d:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.carousel-card-3d.center-card-3d:hover {
    transform: scale(1.12) translateY(15px);
}

.card-image-wrapper-3d {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image-3d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card-3d:hover .card-image-3d {
    transform: scale(1.1);
}

.card-content-3d {
    padding: 25px;
}

.card-location-3d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD4B8 100%);
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 600;
}

.location-icon-3d {
    color: #FF8C42;
    font-size: 16px;
}

.card-title-3d {
    color: #8B3A3A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description-3d {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Navigation Arrows */
.carousel-nav-3d {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-arrow-3d {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #8B3A3A 0%, #A54545 100%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 58, 58, 0.3);
}

.carousel-arrow-3d:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 58, 58, 0.4);
}

.carousel-arrow-3d:active {
    transform: scale(0.95);
}

/* Scroll Wheel Support */
.carousel-container-3d {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-card-3d {
        width: 300px;
    }

    .carousel-container-3d {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-section-3d {
        padding: 60px 0;
    }

    .carousel-wrapper-3d {
        padding: 0 20px;
    }

    .carousel-card-3d {
        width: 280px;
    }

    .carousel-card-3d.center-card-3d {
        transform: scale(1.05) translateY(15px);
    }

    .card-image-wrapper-3d {
        height: 220px;
    }

    .carousel-arrow-3d {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .carousel-container-3d {
        gap: 15px;
        padding: 40px 0;
    }

    .carousel-card-3d {
        width: 260px;
    }

    .card-content-3d {
        padding: 20px;
    }

    .card-title-3d {
        font-size: 1.2rem;
    }
}
/* end */
/* a end */

/* footer */
.lakhpati-footer-section {
            /* margin-top: 80px; */
            position: relative;
            background: linear-gradient(135deg, #dae6fa 100%, #e3eeff 100%);
            /* background-color: #e3eeff; */
            


        }

        .lakhpati-footer-main {
            /* background: linear-gradient(135deg, #7B3A2E 0%, #8B4A3E 50%, #9B5A4E 100%); */
            background: #83261a;
            /* padding: 60px 40px 40px; */
            padding: 60px 0px 0px 0px !important;
            border-radius: 50px 50px 0 0;
            position: relative;
            overflow: hidden;
        }

        .lakhpati-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0px 40px 0px 40px !important;
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr 1.3fr;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        /* Logo Column */
        .lakhpati-footer-logo-col {
            display: flex;
            align-items: flex-start;
        }

        .lakhpati-footer-logo {
            width: 180px;
            height: auto;
        }

        /* Useful Links Column */
        .lakhpati-footer-links-col h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .lakhpati-footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lakhpati-footer-links-list li {
            margin-bottom: 15px;
        }

        .lakhpati-footer-links-list a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .lakhpati-footer-links-list a:hover {
            color: #FFD700;
            transform: translateX(5px);
        }

        /* Important Links Column */
        .lakhpati-footer-important-col h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .lakhpati-footer-important-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lakhpati-footer-important-list li {
            margin-bottom: 15px;
        }

        .lakhpati-footer-important-list a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .lakhpati-footer-important-list a:hover {
            color: #FFD700;
            transform: translateX(5px);
        }

        /* Contact Column */
        .lakhpati-footer-contact-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .lakhpati-footer-powered-by {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .lakhpati-footer-powered-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .lakhpati-footer-digital-india-logo {
            height: 50px;
            width: auto;
        }

        .lakhpati-footer-address {
            color: white;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .lakhpati-footer-phone {
            color: #FFB84D;
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        /* Bottom Illustration Border */
        .lakhpati-footer-illustration {
            width: 100%;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .lakhpati-footer-illustration img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .lakhpati-footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .lakhpati-footer-logo-col {
                grid-column: 1 / -1;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .lakhpati-footer-section {
                margin-top: 60px;
            }

            .lakhpati-footer-main {
                padding: 40px 25px 30px;
                border-radius: 30px 30px 0 0;
            }

            .lakhpati-footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .lakhpati-footer-logo-col {
                justify-content: center;
            }

            .lakhpati-footer-logo {
                width: 150px;
            }

            .lakhpati-footer-links-col h3,
            .lakhpati-footer-important-col h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }

            .lakhpati-footer-phone {
                font-size: 2rem;
            }

            .lakhpati-footer-digital-india-logo {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
            .lakhpati-footer-main {
                padding: 35px 20px 25px;
                border-radius: 25px 25px 0 0;
            }

            .lakhpati-footer-phone {
                font-size: 1.6rem;
            }

            .lakhpati-footer-links-list a,
            .lakhpati-footer-important-list a {
                font-size: 0.95rem;
            }
        }

/* end */











/* Responsive */
@media (max-width: 992px) {
    .cards-container {
        flex-direction: column;
    }
    .section-title {
        padding-left: 20px;
    }
    .cards-container {
        padding: 0 20px;
    }
}