/* ========== RESET & ROOT ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff7b00;
    --primary-dim: rgba(255, 123, 0, .12);
    --primary-glow: rgba(255, 123, 0, .35);
    --bg: #ffffff;
    --bg2: #ffffff;
    --card: rgba(255, 255, 255, .04);
    --border: rgba(255, 255, 255, .07);
    --text: #000000;
    --text1: #ffffff;
    --muted: #141414;
    --blue-accent: #ff7b00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ========== PARTICLES ========== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: .4;
}

/* ========== TOP HEADER ========== */
.top-header {
    background: linear-gradient(90deg, #e06500, var(--primary));
    padding: 10px 0;
    position: relative;
    z-index: 9999;
}

.container {
    width: 90%;
    max-width: 1380px;
    margin: auto;
}

.top-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-left a {
    color: white;
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 9px;
    opacity: .95;
    transition: .25s;
}

.top-left a:hover {
    opacity: 1;
    letter-spacing: .3px;
}

.top-right {
    display: flex;
    gap: 10px;
}

.top-right a {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: .3s;
}

.top-right a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    /* width: 128px; */
    height: 128px;
    object-fit: contain;
    border-radius: 10px;
}

.logo h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.logo h2 span {
    color: #ff7b00;
}
nav {
    position: fixed;
    top: 43px;
    left: 0;
    width: 100%;
    z-index: 9990;
    padding: 18px 0;
    transition: background .4s, top .4s, backdrop-filter .4s, box-shadow .4s;
}

nav.scrolled {
    top: 0;
    background: rgba(6, 16, 30, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #e06500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px var(--primary-glow);
}

.logo-icon i {
    color: white;
    font-size: 22px;
}

.logo h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.logo span {
    color: var(--primary);
}

.menu {
    display: flex;
    gap: 34px;
}

.menu a {
    color: var(--text1);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: .25s;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s;
}

.menu a:hover {
    color: var(--primary);
}

.menu a:hover::after {
    width: 100%;
}

.btn {
    padding: 13px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #e06500);
    color: white;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    transition: .3s;
    box-shadow: 0 4px 18px var(--primary-glow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .4);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 18px var(--primary-glow);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(6, 16, 30, .92) 0%, rgba(6, 16, 30, .7) 100%),
        url('image/banner1.avif') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(transparent, var(--bg));
    z-index: 1;
}

.hero-sunburst {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 123, 0, .12) 0%, transparent 65%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: .6;
    }

    50% {
        transform: translateY(-50%) scale(1.08);
        opacity: 1;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dim);
    border: 1px solid rgba(255, 123, 0, .25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .8px;
    margin-bottom: 22px;
    animation: fadeSlideUp .6s ease forwards;
}

.hero-badge i {
    font-size: 11px;
}

.hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 62px;
    line-height: 1.0;
    margin-bottom: 24px;
    font-weight: 800;
    animation: fadeSlideUp .7s .1s ease both;
    color: var(--text1);
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero p {
    color: var(--text1);
    line-height: 1.9;
    max-width: 580px;
    margin-bottom: 38px;
    font-size: 16.5px;
    animation: fadeSlideUp .7s .2s ease both;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeSlideUp .7s .3s ease both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 42px;
    animation: fadeSlideUp .7s .4s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text1);
}

.trust-item i {
    color: var(--primary);
}

.hero-image {
    position: relative;
    animation: fadeSlideUp .8s .2s ease both;
}

.hero-image img {
    border-radius: 28px;
    box-shadow: 0 0 60px rgba(255, 123, 0, .2);
    border: 1px solid rgba(255, 123, 0, .2);
}

.hero-float-card {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: rgba(8, 19, 34, .95);
    border: 1px solid rgba(255, 123, 0, .3);
    border-radius: 18px;
    padding: 20px 24px;
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.float-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #e06500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-icon i {
    color: white;
    font-size: 22px;
}

.float-text {
    font-size: 13px;
}

.float-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
}

.hero-float-card2 {
    position: absolute;
    top: -24px;
    right: -20px;
    background: rgba(8, 19, 34, .95);
    border: 1px solid rgba(77, 163, 255, .3);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    animation: float 3.5s .8s ease-in-out infinite;
}

.float-icon2 {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(77, 163, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon2 i {
    color: var(--blue-accent);
    font-size: 20px;
}

.float-text2 strong {
    display: block;
    font-size: 15px;
    color: var(--blue-accent);
    font-family: 'DM Sans', sans-serif;
}

.float-text2 span {
    font-size: 12px;
    color: var(--muted);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== STATS ========== */
.stats {
    position: relative;
    z-index: 2;
    margin-top: -50px;
    padding: 0 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: linear-gradient(145deg, rgba(13, 24, 42, .98), rgba(9, 18, 32, .98));
    border: 1px solid var(--border);
    padding: 34px 28px;
    border-radius: 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 123, 0, .1), transparent 60%);
    opacity: 0;
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .35);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box h2 {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-box p {
    color: var(--text1);
    font-size: 15px;
    font-weight: 500;
}

/* ========== SECTION HELPERS ========== */
section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin-right: 10px;
    vertical-align: middle;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #004aad;
}

.section-heading p {
    color: var(--muted);
    max-width: 720px;
    line-height: 1.85;
    font-size: 17px;
}

.center {
    text-align: center;
}

.center p {
    margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-section {
    background: var(--bg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 1.45fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    height: 540px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(8, 19, 34, .92);
    border: 1px solid rgba(255, 123, 0, .25);
    border-radius: 18px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.badge-left p {
    color: white;
    margin-bottom: 7px;
    font-size: 13.5px;
    font-weight: 500;
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e06500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: float 3s ease-in-out infinite;
}

.badge-icon i {
    color: white;
    font-size: 26px;
}

.about-content-wrap {
    display: grid;
    grid-template-columns: 1.3fr .75fr;
    gap: 28px;
    align-items: start;
}

.about-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px;
    font-size: 16px;
}

.about-points {
    list-style: none;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15.5px;
    color: var(--text);
}

.about-points li i {
    color: var(--primary);
    font-size: 15px;
    flex-shrink: 0;
}

.about-side-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-card {
    background: rgb(175, 175, 175);
    border: 1px solid rgb(3, 3, 36);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: .4s;
}

.side-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 0, .5);
    background: var(--primary-dim);
}

.side-card i {
    color: var(--primary);
    font-size: 20px;
}

.side-card span {
    color: rgb(5, 5, 5);
    font-size: 14.5px;
    font-weight: 500;
}

.about-info-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #e06500);
    color: white;
    padding: 17px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: .4s;
    margin-top: 8px;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.about-info-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.about-info-btn i {
    transition: .4s;
}

.about-info-btn:hover i {
    transform: translateX(5px);
}

/* ========== YOJANA ========== */
.yojana-section {
    background: var(--bg2);
}

.yojana-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.yojana-card {
    background: radial-gradient(circle at top left, rgba(255, 123, 0, .15), transparent 40%), #0a1628;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.yojana-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .5);
}

.yojana-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 123, 0, .08), transparent);
}

.yojana-icon {
    min-width: 160px;
    max-width: 160px;
}

.yojana-icon img {
    filter: drop-shadow(0 0 20px rgba(255, 123, 0, .35));
}

.yojana-content h3 {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.yojana-content.blue h3 {
    color: var(--blue-accent);
}

.yojana-content ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 26px;
}

.yojana-content ul li {
    color: var(--text1);
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.yojana-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 26px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    transition: .4s;
}

.yojana-btn:hover {
    background: var(--primary);
}

.blue-btn {
    border-color: var(--blue-accent);
}

.blue-btn:hover {
    background: var(--blue-accent);
}

/* ========== SUBSIDY TABLE ========== */
.subsidy-section {
    background: var(--bg);
}

.subsidy-wrapper {
    background: linear-gradient(135deg, rgba(13, 24, 42, .98), rgba(9, 18, 32, .98));
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
}

.subsidy-header {
    background: linear-gradient(90deg, rgba(255, 123, 0, .15), rgba(255, 123, 0, .05));
    padding: 36px 44px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 18px;
}

.subsidy-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #e06500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subsidy-header-icon i {
    color: white;
    font-size: 24px;
}

.subsidy-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color:white;
}

.subsidy-header p {
    color: var(--text1);
    font-size: 15px;
    margin-top: 4px;
}

.subsidy-table-wrap {
    padding: 32px 44px;
    overflow-x: auto;
}

.subsidy-table {
    width: 100%;
    border-collapse: collapse;
}

.subsidy-table thead tr {
    background: rgba(255, 123, 0, .1);
}

.subsidy-table th {
    padding: 16px 22px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 123, 0, .2);
}

.subsidy-table td {
    padding: 18px 22px;
    color: var(--text1);
    font-size: 15.5px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: .3s;
}

.subsidy-table tbody tr:hover td {
    background: rgba(255, 123, 0, .05);
}

.subsidy-table .total-cell {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--primary);
}

.subsidy-table .tag-cell {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 123, 0, .1);
    border: 1px solid rgba(255, 123, 0, .2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.subsidy-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0 44px 36px;
}

.subsidy-bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    transition: .35s;
}

.subsidy-bullet:hover {
    border-color: rgba(255, 123, 0, .4);
    background: var(--primary-dim);
}

.bullet-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(255, 123, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-icon i {
    color: var(--primary);
    font-size: 16px;
}

.subsidy-bullet p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text1);
}

/* ========== SERVICES ========== */
.services-section {
    background: var(--bg2);
}

.services-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 12px;
}

.services-title {
    font-family: 'DM Sans', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.services-description {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
    max-width: 1460px;
    margin-bottom: 50px;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 24px;
}

.main-service-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 540px;
    border: 1px solid var(--border);
    transition: .4s;
}

.main-service-card:hover {
    border-color: rgba(255, 123, 0, .4);
}

.main-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.main-service-card:hover img {
    transform: scale(1.04);
}

.main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .88), rgba(0, 0, 0, .2));
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-overlay h2 {
    font-family: 'DM Sans', sans-serif;
    color: white;
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 400px;
    font-weight: 800;
}

.main-overlay p {
    color: #d2d8e3;
    font-size: 18px;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 28px;
}

.explore-btn {
    width: fit-content;
    padding: 14px 26px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: .4s;
}

.explore-btn:hover {
    background: var(--primary);
}

.services-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.small-service-card {
    background: rgb(202 184 163 / 20%);
    border:1px solid rgb(234 100 0 / 77%);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
    transition: .35s;
    min-height: 155px;
}

.small-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 0, .5);
}

.active-service {
    border-color: var(--primary);
    background: var(--primary-dim);
}

.service-icon {
    min-width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 123, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: var(--primary);
    font-size: 24px;
}

.small-service-card h4 {
    font-family: 'DM Sans', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 700;
}

.small-service-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

/* ========== WHY US ========== */
.why-section {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 60px;
}

.why-card {
    background:
    linear-gradient(
        rgba(5, 10, 20, 0.82),
        rgba(5, 10, 20, 0.92)
    ),
    url('image/solar.jpg');

background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 38px 28px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 123, 0, .08), transparent 55%);
    opacity: 0;
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .4);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: rgba(255, 123, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: .4s;
}

.why-card:hover .why-icon {
    background: rgba(255, 123, 0, .16);
}

.why-icon i {
    color: var(--primary);
    font-size: 32px;
}

.why-card h3 {
    font-family: 'DM Sans', sans-serif;
    color: white;
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
}

.why-card p {
    color: var(--text1);
    line-height: 1.8;
    font-size: 15px;
}

/* ========== PROCESS ========== */
.process-section {
    background: var(--bg2);
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    position: relative;
    margin-top: 60px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    border-top: 2px dashed rgba(255, 123, 0, .35);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1c0f00, #1a2330);
    border: 2px solid rgba(255, 123, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: .4s;
}

.timeline-step:hover .timeline-icon {
    background: linear-gradient(145deg, #3a1f00, var(--primary));
    border-color: var(--primary);
    box-shadow: 0 0 24px var(--primary-glow);
}

.timeline-icon i {
    color: white;
    font-size: 36px;
}

.timeline-step h3 {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 800;
}

.timeline-step h4 {
    font-family: 'DM Sans', sans-serif;
    color: rgb(6, 6, 6);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-step p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 201px;
    margin: 0 auto;
    font-size: 14.5px;
}

/* ========== PROJECTS ========== */
.projects-section {
    background: var(--bg);
}

.projects-heading {
    margin-bottom: 60px;
}

.projects-heading span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.projects-heading h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 800;
    color: #004aad;
}

.projects-heading p {
    color: var(--muted);
    line-height: 1.85;
    max-width: 780px;
    font-size: 17px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 22px;
}

.small-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 300px;
    border: 1px solid var(--border);
    transition: .4s;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .5);
}

.large-card {
    min-height: 670px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.project-card:hover img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .93), rgba(0, 0, 0, .12));
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-tag {
    width: fit-content;
    background: rgba(255, 123, 0, .12);
    border: 1px solid rgba(255, 123, 0, .25);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 600;
}

.project-overlay h3 {
    font-family: 'DM Sans', sans-serif;
    color: white;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 13px;
    font-weight: 800;
}

.small-card .project-overlay h3 {
    font-size: 22px;
}

.project-overlay p {
    color: #c0cad7;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 500px;
    font-size: 15px;
}

.project-btn {
    width: fit-content;
    padding: 13px 24px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: .4s;
}

.project-btn:hover {
    background: var(--primary);
}

/* ========== PARTNERS ========== */
.partners-section {
    background: var(--bg2);
}

.partners-heading {
    text-align: center;
    margin-bottom: 60px;
}

.partners-heading span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.partners-heading h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    margin-bottom: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #004aad;
}

.partners-heading p {
    color: var(--muted);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.85;
    font-size: 17px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.partner-card {
    height: 130px;
    background: linear-gradient(145deg, rgba(11, 20, 36, .98), rgba(8, 16, 28, .98));
    border: 1px solid var(--border);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    transition: .4s;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .4);
}

.partner-card img {
    max-width: 200px;
    max-height: 90px;
    /* object-fit: contain; */
    opacity: .8;
    transition: .4s;
}

.partner-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(11, 20, 36, .98), rgba(8, 16, 28, .98));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .35);
}

.quote-icon {
    font-size: 48px;
    color: rgba(255, 123, 0, .2);
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 800;
}

.testimonial-card p {
    color: var(--text1);
    line-height: 1.85;
    font-size: 15.5px;
    margin-bottom: 28px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.meta-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e06500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-avatar span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 18px;
}

.meta-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: white;
}

.meta-loc {
    color: var(--text1);
    font-size: 13.5px;
    margin-top: 3px;
}

.stars {
    color: var(--primary);
    font-size: 13px;
    margin-top: 4px;
}

/* ========== CTA ========== */
.cta {
    background:
        linear-gradient(135deg, rgb(6 16 30 / 25%), rgba(6, 16, 30, .8)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat fixed;
    text-align: center;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

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

    #desktopBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;   /* keeps text in one line */
        width: auto;
        padding: 12px 22px;
        font-size: 14px;
    }

}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 123, 0, .1), transparent 65%);
}

.cta>.container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 64px;
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.05;
    color:#ffffff;
}

.cta h2 span {
    color: var(--primary);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 38px;
    color: var(--text1);
    line-height: 1.85;
    font-size: 18px;
}

.cta-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 26px;
    transition: .35s;
}

.contact-item:hover {
    border-color: rgba(255, 123, 0, .4);
    background: var(--primary-dim);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 123, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--primary);
    font-size: 20px;
}

.contact-item p {
    color: var(--text1);
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-item strong {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
    background: #030810;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--primary);
}

.footer-box p {
    color: var(--text1);
    line-height: 1.9;
    font-size: 15px;
}

.footer-box h3 {
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-box a {
    color: var(--text1);
    display: block;
    line-height: 2.2;
    font-size: 15px;
    transition: .25s;
}

.footer-box a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-social a i {
    color: white;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text1);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}


/* ===============================
   STATS SECTION RESPONSIVE CSS
================================= */

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

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        padding: 25px 20px;
    }

    .stat-content h2 {
        font-size: 32px;
    }

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

}

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

    .stats {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .stat-icon {
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 28px;
    }

    .stat-content h2 {
        font-size: 30px;
    }

    .stat-content p {
        font-size: 14px;
    }

}

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

    .stat-box {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .stat-content h2 {
        font-size: 26px;
    }

    .stat-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .stat-icon i {
        font-size: 24px;
    }

}
/* ========== MOBILE MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: .35s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9980;
    background: rgba(6, 16, 30, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    transition: .3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 26px;
}

/* ========== BACK TO TOP ========== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e06500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--primary-glow);
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    opacity: 0;
    transform: scale(0);
    transition: .4s;
}

#backToTop.show {
    opacity: 1;
    transform: scale(1);
}

#backToTop:hover {
    transform: scale(1.1) translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media(max-width:1200px) {

    .hero-grid,
    .about-wrapper,
    .services-wrapper,
    .projects-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-content-wrap {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-wrapper::before {
        display: none;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 54px;
    }

    .cta h2 {
        font-size: 48px;
    }
}

@media(max-width:768px) {

    .menu,
    .top-header {
        display: none;
    }

    nav {
        top: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-heading h2,
    .projects-heading h2,
    .services-title {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .why-grid,
    .testimonials-grid,
    .yojana-grid,
    .timeline-wrapper,
    .small-projects-grid,
    .services-small-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yojana-card {
        flex-direction: column;
        text-align: center;
    }

    .subsidy-bullets {
        grid-template-columns: 1fr;
        padding: 0 24px 28px;
    }

    .subsidy-header,
    .subsidy-table-wrap {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-float-card,
    .hero-float-card2 {
        display: none;
    }

    .contact-row {
        flex-direction: column;
        align-items: center;
    }
}

.footer-box a,
.footer-box p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-box i {
    color: #ff7b00;
    margin-top: 4px;
    min-width: 16px;
}

/* STAT BOX */

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ICON */

.stat-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 20px;

    background: rgba(255, 123, 0, 0.08);

    border: 1px solid rgba(255, 123, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: #ff7b00;
    font-size: 30px;
}

/* CONTENT */

.stat-content h2 {
    color: white;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-content p {
    color: #b8c1cf;
    font-size: 16px;
    line-height: 1.6;
}



/* =========================
   BREADCRUMB AREA
========================= */

.breadcrumb-area {
    position: relative;
    padding: 120px 0 140px;

    background:
        linear-gradient(
            rgba(5, 10, 20, 0.267),
            rgba(5, 10, 20, 0.9)
        ),
        url('image/breadcrum.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* GLOW EFFECT */

.breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255, 123, 0, 0.12);
    filter: blur(120px);
    top: -120px;
    right: -100px;
}

/* CONTENT */

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* SUBTITLE */

.breadcrumb-subtitle {
    color: #ff7b00;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

/* TITLE */

.breadcrumb-content h1 {
    color: white;
    font-size: 68px;
    line-height: 1.1;
    max-width: 900px;
    margin: auto auto 28px;
}

/* LINKS */

.breadcrumb-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.breadcrumb-links a {
    color: #ff7b00;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumb-links span {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-links p {
    color: white;
    margin: 0;
    font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .breadcrumb-content h1 {
        font-size: 48px;
    }
}

@media(max-width:768px) {

    .breadcrumb-area {
        padding: 180px 0 110px;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .breadcrumb-links {
        flex-wrap: wrap;
    }
}

/* =========================
   ABOUT PAGE SECTION
========================= */

.about-page-section {
    padding: 50px 0;
    background: #ffffff;
}

/* WRAPPER */

.about-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */

.about-page-image {
    position: relative;
}

.about-page-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    min-height: 700px;
}

/* EXPERIENCE BADGE */

.experience-badge {
    position: absolute;
    bottom: 35px;
    left: 35px;

    background:
        linear-gradient(145deg,
            rgba(255, 123, 0, 0.95),
            rgba(255, 145, 60, 0.95));

    border-radius: 24px;

    padding: 30px;

    min-width: 220px;
}

.experience-badge h3 {
    color: rgb(12, 12, 12);
    font-size: 60px;
    line-height: 1;
    margin-bottom: 10px;
}

.experience-badge p {
    color: white;
    line-height: 1.7;
    font-size: 16px;
}

/* CONTENT */

.about-page-subtitle {
    color: #ff7b00;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.about-page-content h2 {
    color: rgb(11, 3, 66);
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-page-content p {
    color: #181818;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

/* FEATURES */

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}

/* FEATURE BOX */

.about-feature-box {
    background:
        linear-gradient(145deg,
            rgba(10, 18, 32, 0.98),
            rgba(7, 15, 28, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    padding: 24px;

    display: flex;
    gap: 18px;

    transition: .4s;
}

.about-feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 0, .4);
}

/* ICON */

.feature-icon {
    min-width: 65px;
    height: 65px;

    border-radius: 18px;

    background: rgba(255, 123, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #ff7b00;
    font-size: 28px;
}

/* TEXT */

.about-feature-box h4 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 10px;
}

.about-feature-box p {
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* BUTTONS */

.about-page-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
}

/* PRIMARY BUTTON */

.primary-btn {
    padding: 17px 34px;
    background: #ff7b00;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    transition: .4s;
}

.primary-btn:hover {
    transform: translateY(-5px);
}

/* SECONDARY BUTTON */

.secondary-btn {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgb(0, 0, 0);
    font-weight: 600;
}

.secondary-btn i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 123, 0, 0.08);
    color: #ff7b00;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .about-page-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .about-page-section {
        padding: 90px 0;
    }

    .about-page-content h2 {
        font-size: 36px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-page-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-page-image img {
        min-height: auto;
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 22px;
    }

    .experience-badge h3 {
        font-size: 44px;
    }
}

/* =========================
   MISSION VISION VALUES
========================= */

.mvv-section {
    padding: 120px 0;
    background: #ffffff;
}

/* HEADING */

.mvv-heading {
    text-align: center;
    margin-bottom: 70px;
}

.mvv-heading span {
    color: #ff7b00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
}

.mvv-heading h2 {
    color: #07111f;
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mvv-heading p {
    color: #5c6675;
    max-width: 760px;
    margin: auto;
    line-height: 1.9;
    font-size: 17px;
}

/* GRID */

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.mvv-card {
    background: #ffffff;

    border: 1px solid #e9edf2;

    border-radius: 28px;

    padding: 45px 35px;

    transition: .4s;

    position: relative;

    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 0, .25);

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}

/* ACTIVE CARD */

.active-mvv {
    background:
        linear-gradient(145deg,
            #ff7b00,
            #ff9b45);

    border-color: transparent;
}

.active-mvv h3,
.active-mvv p,
.active-mvv .mvv-icon i {
    color: white;
}

/* ICON */

.mvv-icon {
    width: 85px;
    height: 85px;

    border-radius: 24px;

    background: rgba(255, 123, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
}

.active-mvv .mvv-icon {
    background: rgba(255, 255, 255, 0.15);
}

.mvv-icon i {
    color: #ff7b00;
    font-size: 36px;
}

/* TEXT */

.mvv-card h3 {
    color: #07111f;
    font-size: 30px;
    margin-bottom: 18px;
}

.mvv-card p {
    color: #5c6675;
    line-height: 1.9;
    font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .mvv-section {
        padding: 90px 0;
    }

    .mvv-heading h2 {
        font-size: 36px;
    }

    .mvv-card {
        padding: 35px 28px;
    }

    .mvv-card h3 {
        font-size: 26px;
    }
}

/* =========================
   FOUNDER SECTION
========================= */

.founder-section {
    padding: 130px 0;
    background:
        linear-gradient(
            135deg,
            #07111f 0%,
            #0b1628 100%
        );

    overflow: hidden;
    position: relative;
}

/* GLOW */

.founder-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 123, 0, 0.08);
    filter: blur(140px);
    top: -180px;
    right: -120px;
}

/* WRAPPER */

.founder-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

/* LABEL */

.founder-label {
    color: #ff7b00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

/* TITLE */

.founder-content h2 {
    color: white;
    font-size: 40px;
    line-height: 1.12;
    margin-bottom: 28px;
}

/* TEXT */

.founder-text {
    color: #b8c1cf;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 22px;
}

/* SIGNATURE */

.founder-signature {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.founder-signature h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 6px;
}

.founder-signature span {
    color: #ff7b00;
    font-size: 15px;
}

/* IMAGE AREA */

.founder-image-area {
    position: relative;
}

/* IMAGE */

.founder-image {
    position: relative;
    z-index: 2;
}

.founder-image img {
    width: 100%;
    border-radius: 34px;
    object-fit: cover;
    min-height: 720px;

    border: 1px solid rgba(255,255,255,0.08);
}

/* FLOATING CARD */

.founder-floating-card {
    position: absolute;
    left: -40px;
    bottom: 60px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 22px 26px;

    display: flex;
    align-items: center;
    gap: 18px;

    z-index: 5;
}

/* ICON */

.floating-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;

    background: rgba(255, 123, 0, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    color: #ff7b00;
    font-size: 30px;
}

/* CARD TEXT */

.founder-floating-card h4 {
    color: white;
    font-size: 34px;
    margin-bottom: 6px;
}

.founder-floating-card p {
    color: #c0cad7;
    line-height: 1.7;
    font-size: 14px;
}

/* EXPERIENCE */

.experience-circle {
    position: absolute;
    top: -30px;
    right: -30px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff7b00,
            #ff9a42
        );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 5;

    box-shadow:
        0 20px 50px rgba(255, 123, 0, 0.3);
}

.experience-circle h3 {
    color: white;
    font-size: 58px;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-circle span {
    color: white;
    text-align: center;
    line-height: 1.5;
    font-size: 15px;
    max-width: 110px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .founder-wrapper {
        grid-template-columns: 1fr;
    }

    .founder-content h2 {
        font-size: 46px;
    }
}

@media(max-width:768px) {

    .founder-section {
        padding: 90px 0;
    }

    .founder-content h2 {
        font-size: 34px;
    }

    .founder-image img {
        min-height: auto;
    }

    .founder-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .experience-circle {
        width: 130px;
        height: 130px;
        top: 15px;
        right: 15px;
    }

    .experience-circle h3 {
        font-size: 38px;
    }
}

/* =========================
   SERVICE PROCESS SECTION
========================= */

.service-process-section {
    padding: 60px 0;
    background: #ffffff;
}

/* HEADING */

.service-process-heading {
    text-align: center;
    margin-bottom: 70px;
}

.service-process-heading span {
    color: #ff7b00;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
}

.service-process-heading h2 {
    color: #07111f;
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-process-heading p {
    color: #0e0e0e;
    max-width: 780px;
    margin: auto;
    line-height: 1.9;
    font-size: 17px;
}

/* GRID */

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* CARD */

.service-process-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 28px;

    padding: 40px 28px;

    transition: .4s;

    overflow: hidden;
}

.service-process-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 123, 0, .25);

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}

/* ACTIVE */

.active-process {
    background:
        linear-gradient(
            145deg,
            #ff7b00,
            #ff9b45
        );

    border-color: transparent;
}

.active-process h3,
.active-process p,
.active-process .process-step,
.active-process .process-icon i {
    color: white;
}

.active-process .process-icon {
    background: rgba(255,255,255,0.15);
}

/* STEP */

.process-step {
    position: absolute;
    top: 22px;
    right: 24px;

    color: rgba(7, 17, 31, 0.08);

    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

/* ICON */

.process-icon {
    width: 85px;
    height: 85px;

    border-radius: 24px;

    background: rgba(255, 123, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.process-icon i {
    color: #ff7b00;
    font-size: 34px;
}

/* TITLE */

.service-process-card h3 {
    color: #07111f;
    font-size: 26px;
    margin-bottom: 16px;
}

/* TEXT */

.service-process-card p {
    color: #151515;
    line-height: 1.9;
    font-size: 15px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .service-process-section {
        padding: 90px 0;
    }

    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-process-heading h2 {
        font-size: 36px;
    }

    .service-process-card {
        padding: 35px 24px;
    }
}

/* WHITE SERVICE SECTION */

.white-service-section {
    padding: 120px 0;
    background: #ffffff;
}

.light-bg {
    background: #f7f9fc;
}

/* WRAPPER */

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* REVERSE */

.reverse-service {
    grid-template-columns: 1fr 1fr;
}

/* IMAGE */

.service-detail-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 32px;
}

/* LABEL */

.service-label {
    color: #ff7b00;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

/* TITLE */

.service-detail-content h2 {
    color: #2d4db0;
    font-size: 46px;
    line-height: 1.12;
    margin-bottom: 24px;
}

/* TEXT */

.service-detail-content p {
    color: #151515;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 17px;
}

/* FEATURES */

.service-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-feature i {
    color: #ff7b00;
    font-size: 18px;
}

.service-feature span {
    color: #07111f;
    font-size: 17px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .service-detail-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .white-service-section {
        padding: 90px 0;
    }

    .service-detail-content h2 {
        font-size: 36px;
    }

    .service-detail-image img {
        height: 400px;
    }
}

/* MAIN HEADING */

.services-main-heading {
    padding: 40px 0 40px;
    background: #ffffff;
    text-align: center;
}

.services-main-heading span {
    color: #ff7b00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
}

.services-main-heading h2 {
    color: #07111f;
    font-size: 45px;
    line-height: 1.15;
    max-width: 1050px;
    margin: auto auto 24px;
}

.services-main-heading p {
    color: #191919;
    line-height: 2;
    font-size: 17px;
    max-width: 900px;
    margin: auto;
}

@media(max-width:768px) {

    .services-main-heading {
        padding: 90px 0 20px;
    }

    .services-main-heading h2 {
        font-size: 36px;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.service-contact-section {
    padding: 10px 0;
    background: #ffffff;
}

/* WRAPPER */

.service-contact-wrapper {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */

.contact-label {
    color: #ff7b00;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
}

.service-contact-info h2 {
    color: #07111f;
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.service-contact-info p {
    color: #131313;
    line-height: 1.9;
    font-size: 17px;
}

/* CONTACT BOX */

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 28px 0;

    border-bottom: 1px solid #edf1f5;
}

/* ICON */

.contact-icon-box {
    width: 75px;
    height: 75px;

    border-radius: 22px;

    background: rgba(255,123,0,.08);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.contact-icon-box i {
    color: #ff7b00;
    font-size: 28px;
}

/* TEXT */

.contact-info-box h4 {
    color: #07111f;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info-box a,
.contact-info-box p {
    color: #171717;
    font-size: 17px;
    line-height: 1.8;
}

/* FORM */

.service-contact-form {
    background: #ffffff;

    border: 1px solid #edf1f5;

    border-radius: 34px;

    padding: 50px;

    box-shadow:
        0 20px 50px rgba(15,23,42,.05);
}

.service-contact-form h3 {
    color: #07111f;
    font-size: 36px;
    margin-bottom: 35px;
}

/* GROUP */

.form-group {
    margin-bottom: 22px;
}

/* INPUT */

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    height: 62px;

    border: 1px solid #e6ebf1;

    border-radius: 16px;

    padding: 0 22px;

    font-size: 16px;

    outline: none;

    background: #f8fafc;

    transition: .3s;
}

.form-group textarea {
    height: 150px;
    padding-top: 20px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff7b00;
}

/* BUTTON */

.contact-submit-btn {
    width: 100%;

    height: 62px;

    border: none;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ff7b00,
            #ff9a42
        );

    color: white;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;
}

.contact-submit-btn:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .service-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .service-contact-section {
        padding: 90px 0;
    }

    .service-contact-info h2 {
        font-size: 38px;
    }

    .service-contact-form {
        padding: 35px 24px;
    }

    .service-contact-form h3 {
        font-size: 28px;
    }
}

/* =========================
   MAP SECTION
========================= */

.map-section {
    padding: 120px 0;
    background: #f8fafc;
}

/* HEADING */

.map-heading {
    text-align: center;
    margin-bottom: 60px;
}

.map-heading span {
    color: #ff7b00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
}

.map-heading h2 {
    color: #07111f;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.map-heading p {
    color: #151515;
    max-width: 760px;
    margin: auto;
    line-height: 1.9;
    font-size: 17px;
}

/* MAP */

.map-wrapper {
    width: 100%;
    height: 450px;

    border-radius: 32px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(15,23,42,.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .map-section {
        padding: 90px 0;
    }

    .map-heading h2 {
        font-size: 36px;
    }

    .map-wrapper {
        height: 420px;
        border-radius: 24px;
    }
}

/* =========================
   MINIMAL FOOTER
========================= */

.minimal-footer {
    background:
        linear-gradient(
            145deg,
            #07111f,
            #0b1628
        );

    padding: 10px 0 35px;

    text-align: center;

    overflow: hidden;

    position: relative;
}

/* GLOW */

.minimal-footer::before {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(255,123,0,.08);

    filter: blur(140px);

    top: -200px;
    left: 50%;

    transform: translateX(-50%);
}

/* LOGO */

/* CENTER LOGO */

.footer-center-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    width: 100%;
}

.footer-center-logo img {
    display: block;
    margin: 0 auto 24px;
}

.footer-center-logo img {
    width: 224px;
    height: 200px;

    object-fit: cover;

    margin-bottom: 24px;

    border: 4px solid rgba(255,255,255,.08);
}

.footer-center-logo h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 14px;
}

.footer-center-logo h2 span {
    color: #ff7b00;
}

.footer-center-logo p {
    color: #b8c1cf;
    font-size: 17px;
    line-height: 1.8;
}

/* LINKS */

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    flex-wrap: wrap;

    margin: 5px 0;
}

.footer-links a {
    color: white;
    font-size: 17px;
    font-weight: 500;

    transition: .3s;
}

.footer-links a:hover {
    color: #ff7b00;
}

/* SOCIAL */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-bottom: 25px;
}

.footer-social a {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s;
}

.footer-social a:hover {
    background: #ff7b00;
    transform: translateY(-5px);
}

.footer-social i {
    color: white;
    font-size: 18px;
}

/* BOTTOM */

.footer-bottom {
    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
    color: #9ba8ba;
    font-size: 15px;
}

.footer-bottom a:hover {
    color: #ff7b00;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .minimal-footer {
        padding: 80px 0 30px;
    }

    .footer-center-logo img {
        width: 120px;
        height: 120px;
    }

    .footer-center-logo h2 {
        font-size: 32px;
    }

    .footer-links {
        gap: 18px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}