﻿/* ============================================================
   PRAKASH AGENCIES 2.0
   PREMIUM DESIGN SYSTEM
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');


/* ============================================================
   ROOT VARIABLES
============================================================ */

:root {

    --navy-950: #04121f;
    --navy-900: #071a2b;
    --navy-800: #0a2338;
    --navy-700: #10344f;

    --gold: #f5b51b;
    --gold-light: #ffd45a;
    --gold-dark: #d99a00;

    --green: #269447;
    --green-dark: #187337;

    --white: #ffffff;
    --off-white: #f7f9fb;
    --soft-white: #eef2f5;

    --text: #17232e;
    --text-light: #66737d;

    --border: #e4e9ed;

    --shadow-sm:
        0 5px 20px rgba(5, 25, 40, 0.06);

    --shadow-md:
        0 15px 40px rgba(5, 25, 40, 0.10);

    --shadow-lg:
        0 25px 70px rgba(5, 25, 40, 0.16);

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --transition:
        all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    padding: 0;

    font-family: 'DM Sans', sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h5,
h6 {

    margin: 0;

    font-family: 'Manrope', sans-serif;

    font-weight: 700;
}


p {
    margin: 0;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


/* ============================================================
   TOP BAR
============================================================ */

.top-bar {

    position: relative;

    z-index: 1100;

    height: 38px;

    background:
        linear-gradient(
            90deg,
            var(--navy-950),
            var(--navy-900)
        );

    color: rgba(255,255,255,0.72);

    font-size: 12px;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}


.top-bar-inner {

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 25px;
}


.top-bar span,
.top-bar a {

    display: inline-flex;

    align-items: center;

    color: rgba(255,255,255,0.72);

    white-space: nowrap;
}


.top-bar a {

    transition: var(--transition);
}


.top-bar a:hover {

    color: var(--gold);
}


.top-bar i {

    margin-right: 6px;

    color: var(--gold);

    font-size: 12px;
}


/* ============================================================
   MAIN NAVIGATION
============================================================ */

.main-navbar {

    position: absolute;

    top: 38px;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 19px 0;

    background:
        linear-gradient(
            180deg,
            rgba(4,18,31,0.82),
            rgba(4,18,31,0)
        );

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    transition:
        padding 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.main-navbar.scrolled {

    position: fixed;

    top: 0;

    padding: 12px 0;

    background:
        rgba(6,25,41,0.96);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.18);
}


/* ============================================================
   BRAND
============================================================ */

.brand {

    position: relative;

    display: inline-flex;

    flex-direction: column;

    line-height: 1;

    color: var(--white);

    transition: var(--transition);
}


.brand:hover {
    color: var(--white);
}


.brand-main {

    font-family: 'Manrope', sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 1.2px;

    line-height: 1;
}


.brand-sub {

    margin-top: 7px;

    color: var(--gold);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 5.5px;

    line-height: 1;
}


/* ============================================================
   NAVIGATION LINKS
============================================================ */

.navbar-nav {

    align-items: center;

    gap: 3px;
}


.nav-link {

    position: relative;

    color:
        rgba(255,255,255,0.86) !important;

    font-size: 13px;

    font-weight: 600;

    padding:
        12px 13px !important;

    transition: var(--transition);
}


.nav-link::after {

    content: '';

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 4px;

    height: 2px;

    background: var(--gold);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}


.nav-link:hover {

    color:
        var(--gold) !important;
}


.nav-link:hover::after,
.nav-link.active::after {

    transform:
        scaleX(1);
}


.nav-link.active {

    color:
        var(--white) !important;
}


/* ============================================================
   DROPDOWN
============================================================ */









/* ============================================================
   NAV CTA
============================================================ */

.nav-cta {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-left: 18px;

    padding: 12px 20px;

    color: var(--navy-900);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border-radius: 5px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    box-shadow:
        0 8px 20px rgba(245,181,27,0.20);

    transition: var(--transition);
}


.nav-cta:hover {

    color: var(--navy-900);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px rgba(245,181,27,0.30);
}





/* ============================================================
   EYEBROW
============================================================ */

.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 27px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.hero-eyebrow-line {

    width: 42px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-light)
        );

    box-shadow:
        0 0 12px rgba(245,181,27,0.45);
}


/* ============================================================
   HERO HEADING
============================================================ */

.hero-title {

    max-width: 820px;

    color: var(--white);

    font-family: 'Manrope', sans-serif;

    font-size:
        clamp(52px, 6.2vw, 86px);

    line-height: 0.99;

    letter-spacing: -4px;

    font-weight: 800;

    text-wrap: balance;
}


.hero-title span {

    display: inline-block;

    color: var(--gold);

    position: relative;
}


/* small underline */

.hero-title span::after {

    content: '';

    position: absolute;

    left: 2px;

    bottom: -7px;

    width: 72px;

    height: 3px;

    background: var(--gold);

    border-radius: 20px;
}


/* ============================================================
   HERO TEXT
============================================================ */

.hero-text {

    max-width: 625px;

    margin-top: 33px;

    color:
        rgba(255,255,255,0.74);

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 36px;
}


.btn-primary-custom {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 51px;

    padding: 0 23px;

    color: var(--navy-900);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border: 1px solid var(--gold);

    border-radius: 5px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    overflow: hidden;

    transition: var(--transition);
}


.btn-primary-custom::before {

    content: '';

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.55),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.6s ease;
}


.btn-primary-custom:hover::before {

    left: 140%;
}


.btn-primary-custom:hover {

    color: var(--navy-900);

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(245,181,27,0.30);
}


.btn-outline-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 51px;

    padding: 0 23px;

    color: var(--white);

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(255,255,255,0.38);

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    backdrop-filter:
        blur(5px);

    transition: var(--transition);
}


.btn-outline-custom:hover {

    color: var(--navy-900);

    background: var(--white);

    border-color: var(--white);

    transform:
        translateY(-3px);
}


/* ============================================================
   HERO FEATURES
============================================================ */

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 33px;
}


.hero-feature {

    display: flex;

    align-items: center;

    color:
        rgba(255,255,255,0.72);

    font-size: 12px;

    font-weight: 500;
}


.hero-feature i {

    margin-right: 7px;

    color: var(--gold);

    font-size: 14px;
}


/* ============================================================
   HERO STATS
============================================================ */

.hero-stats {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    z-index: 10;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background:
        rgba(4,18,31,0.67);

    border-top:
        1px solid rgba(255,255,255,0.12);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.hero-stat {

    position: relative;

    min-height: 94px;

    display: flex;

    align-items: center;

    gap: 16px;

    padding:
        20px 30px;

    border-right:
        1px solid rgba(255,255,255,0.10);

    transition:
        background 0.3s ease;
}


.hero-stat:hover {

    background:
        rgba(255,255,255,0.04);
}


.hero-stat:last-child {

    border-right: none;
}


.hero-stat-number {

    color: var(--gold);

    font-family: 'Manrope', sans-serif;

    font-size: 28px;

    line-height: 1;

    font-weight: 800;

    white-space: nowrap;
}


.hero-stat-text {

    color:
        rgba(255,255,255,0.64);

    font-size: 9px;

    line-height: 1.55;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* ============================================================
   INTRO SECTION
============================================================ */

.intro-section {

    position: relative;

    padding: 125px 0 90px;

    background: var(--white);
}


.intro-section::before {

    content: '';

    position: absolute;

    top: 0;

    right: 0;

    width: 260px;

    height: 260px;

    background:
        radial-gradient(
            circle,
            rgba(245,181,27,0.10),
            transparent 70%
        );

    pointer-events: none;
}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.section-label span {

    width: 30px;

    height: 2px;

    background: var(--green);
}


.section-title {

    color: var(--navy-800);

    font-size:
        clamp(35px, 4vw, 53px);

    line-height: 1.10;

    letter-spacing: -2px;

    font-weight: 800;
}


.section-title span {

    display: block;

    color: var(--green);
}


.intro-text {

    max-width: 690px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.9;
}


/* ============================================================
   SOLUTIONS SECTION
============================================================ */

.solutions-section {

    position: relative;

    padding:
        25px 0 125px;

    background: var(--white);
}


/* ============================================================
   SOLUTION CARD
============================================================ */

.solution-card {

    position: relative;

    min-height: 275px;

    display: block;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fafcfd
        );

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    overflow: hidden;

    transition: var(--transition);
}


.solution-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--green)
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform 0.4s ease;
}


.solution-card::after {

    content: '';

    position: absolute;

    right: -60px;

    bottom: -70px;

    width: 170px;

    height: 170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,181,27,0.12),
            transparent 70%
        );

    transition:
        var(--transition);
}


.solution-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(245,181,27,0.25);

    box-shadow:
        var(--shadow-lg);
}


.solution-card:hover::before {

    transform:
        scaleX(1);
}


.solution-card:hover::after {

    transform:
        scale(1.35);
}


/* ============================================================
   SOLUTION ICON
============================================================ */

.solution-icon {

    position: relative;

    z-index: 2;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    color: var(--gold-dark);

    background:
        rgba(245,181,27,0.11);

    border:
        1px solid rgba(245,181,27,0.15);

    border-radius:
        9px;

    font-size: 25px;

    transition: var(--transition);
}


.solution-card:hover .solution-icon {

    color: var(--navy-900);

    background:
        var(--gold);

    transform:
        translateY(-3px);
}


/* ============================================================
   SOLUTION CONTENT
============================================================ */

.solution-card h3 {

    position: relative;

    z-index: 2;

    margin-bottom: 12px;

    color: var(--navy-800);

    font-size: 20px;

    font-weight: 800;
}


.solution-card p {

    position: relative;

    z-index: 2;

    max-width: 290px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   SOLUTION ARROW
============================================================ */

.solution-arrow {

    position: absolute;

    right: 27px;

    bottom: 25px;

    z-index: 5;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--navy-800);

    background:
        var(--soft-white);

    border-radius: 50%;

    transition: var(--transition);
}


.solution-card:hover .solution-arrow {

    color: var(--navy-900);

    background: var(--gold);

    transform:
        rotate(45deg);
}


/* ============================================================
   MOBILE NAVBAR
============================================================ */

.navbar-toggler {

    width: 45px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.25);

    border-radius: 5px;

    background:
        rgba(255,255,255,0.04);
}


.navbar-toggler:focus {

    box-shadow: none;
}


.navbar-toggler-icon {

    width: 21px;

    height: 21px;

    filter:
        brightness(0) invert(1);
}


/* ============================================================
   LARGE TABLET
============================================================ */

@media (max-width: 1199px) {

    .navbar-nav {
        gap: 0;
    }


    .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }


    .nav-cta {
        margin-left: 9px;
        padding-left: 15px;
        padding-right: 15px;
    }


    .hero-title {
        font-size: 68px;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .top-location {
        display: none !important;
    }


    .main-navbar {
        top: 38px;
        padding: 15px 0;
    }


    .navbar-collapse {

        margin-top: 14px;

        padding: 15px;

        background:
            rgba(6,25,41,0.98);

        border:
            1px solid rgba(255,255,255,0.08);

        border-radius: 8px;

        box-shadow:
            0 25px 50px rgba(0,0,0,0.25);
    }


    .navbar-nav {

        align-items: stretch;
    }


    .nav-link {
        padding: 11px 8px !important;
    }


    .nav-link::after {
        display: none;
    }


    .nav-cta {

        margin:
            12px 0 0;

        width:
            fit-content;
    }


    .hero {

        min-height:
            900px;

        background-position:
            63% center;
    }


    .hero-content {

        padding-top:
            110px;

        padding-bottom:
            190px;
    }


    .hero-title {

        font-size:
            clamp(48px, 8vw, 70px);
    }


    .hero-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .hero-stat:nth-child(2) {
        border-right: none;
    }


    .hero-stat {
        border-bottom:
            1px solid rgba(255,255,255,0.10);
    }


    .intro-section {
        padding-top:
            95px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .top-bar {
        height: 36px;
    }


    .top-bar-inner {
        height: 36px;
        justify-content:
            center;
    }


    .top-left {
        display: none;
    }


    .top-right {
        gap: 18px;
    }


    .top-right a {
        font-size:
            10px;
    }


    .main-navbar {
        top: 36px;
    }


    .brand-main {
        font-size:
            21px;
    }


    .brand-sub {
        font-size:
            7px;

        letter-spacing:
            4px;
    }


    .hero {

        min-height:
            930px;

        background-position:
            67% center;
    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(3,15,26,0.97),
                rgba(3,15,26,0.78)
            );
    }


    .hero-content {

        padding-top:
            110px;

        padding-bottom:
            240px;
    }


    .hero-eyebrow {

        font-size:
            9px;

        letter-spacing:
            2px;
    }


    .hero-title {

        font-size:
            44px;

        line-height:
            1.03;

        letter-spacing:
            -2px;
    }


    .hero-title span::after {

        width:
            50px;
    }


    .hero-text {

        margin-top:
            25px;

        font-size:
            15px;

        line-height:
            1.7;
    }


    .hero-buttons {

        flex-direction:
            column;

        align-items:
            stretch;

        margin-top:
            30px;
    }


    .btn-primary-custom,
    .btn-outline-custom {

        width:
            100%;
    }


    .hero-features {

        flex-direction:
            column;

        gap:
            10px;

        margin-top:
            25px;
    }


    .hero-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .hero-stat {

        min-height:
            78px;

        padding:
            14px;
    }


    .hero-stat-number {

        font-size:
            21px;
    }


    .hero-stat-text {

        font-size:
            8px;

        letter-spacing:
            0.8px;
    }


    .intro-section {

        padding:
            75px 0 55px;
    }


    .section-title {

        font-size:
            37px;

        letter-spacing:
            -1px;
    }


    .intro-text {

        font-size:
            15px;
    }


    .solutions-section {

        padding-bottom:
            75px;
    }


    .solution-card {

        min-height:
            255px;

        padding:
            27px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 575px) {

    .top-right a:first-child {

        font-size:
            10px;
    }


    .hero {

        min-height:
            950px;
    }


    .hero-title {

        font-size:
            39px;
    }


    .hero-content {

        padding-top:
            100px;
    }


    .hero-stats {

        grid-template-columns:
            1fr 1fr;
    }


    .hero-stat {

        gap:
            8px;

        padding:
            13px 11px;
    }


    .hero-stat-number {

        font-size:
            19px;
    }


    .hero-stat-text {

        font-size:
            7px;
    }


    .section-title {

        font-size:
            34px;
    }

}

/* ============================================================
   ABOUT PRAKASH AGENCIES
============================================================ */

.about-section {

    position: relative;

    padding: 125px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafb 100%
        );

    overflow: hidden;
}


/* ============================================================
   VISUAL AREA
============================================================ */

.about-visual {

    position: relative;

    max-width: 570px;

    margin-right: auto;

    padding:
        25px 25px 45px 0;
}


/* ============================================================
   MAIN IMAGE
============================================================ */

.about-image-main {

    position: relative;

    width: 100%;

    height: 500px;

    overflow: hidden;

    border-radius:
        14px;

    background:
        #dfe5e9;

    box-shadow:
        0 25px 60px rgba(5,25,40,0.14);

    z-index: 2;
}


.about-image-main::after {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 55%,
            rgba(4,18,31,0.25)
        );

    pointer-events: none;
}


.about-image-main img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s ease;
}


.about-visual:hover
.about-image-main img {

    transform:
        scale(1.04);
}


/* ============================================================
   DECORATIVE BACKGROUND SHAPE
============================================================ */

.about-decoration {

    position: absolute;

    left: -20px;

    bottom: 5px;

    width: 230px;

    height: 230px;

    border-radius: 50%;

    background:
        rgba(245,181,27,0.12);

    z-index: 0;
}


.about-decoration::before {

    content: '';

    position: absolute;

    inset: 25px;

    border:
        1px dashed
        rgba(245,181,27,0.45);

    border-radius: 50%;
}


/* ============================================================
   EXPERIENCE BADGE
============================================================ */

.about-experience {

    position: absolute;

    right: 0;

    top: 75px;

    z-index: 5;

    width: 145px;

    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 20px 40px
        rgba(5,25,40,0.18);
}


.experience-number {

    color:
        var(--navy-900);

    font-family:
        'Manrope',
        sans-serif;

    font-size: 37px;

    line-height: 1;

    font-weight: 800;
}


.experience-text {

    margin-top: 8px;

    color:
        rgba(7,26,43,0.72);

    font-size: 8px;

    font-weight: 800;

    line-height: 1.5;

    text-align: center;

    letter-spacing: 1.3px;
}


/* ============================================================
   FLOATING CARD
============================================================ */

.about-floating-card {

    position: absolute;

    left: 25px;

    bottom: 0;

    z-index: 6;

    min-width: 260px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    background:
        rgba(255,255,255,0.97);

    border:
        1px solid rgba(8,28,45,0.06);

    border-radius: 9px;

    box-shadow:
        0 18px 45px
        rgba(5,25,40,0.14);

    backdrop-filter:
        blur(10px);
}


.floating-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color:
        var(--gold-dark);

    background:
        rgba(245,181,27,0.12);

    border-radius: 7px;

    font-size: 18px;
}


.about-floating-card strong {

    display: block;

    color:
        var(--navy-800);

    font-size: 12px;

    font-weight: 800;
}


.about-floating-card span {

    display: block;

    margin-top: 3px;

    color:
        var(--text-light);

    font-size: 10px;
}


/* ============================================================
   ABOUT CONTENT
============================================================ */

.about-content {

    padding-left: 25px;
}


.about-title {

    margin-top: 5px;

    color:
        var(--navy-800);

    font-size:
        clamp(36px, 4vw, 52px);

    line-height: 1.10;

    letter-spacing: -2px;

    font-weight: 800;
}


.about-title span {

    color:
        var(--green);
}


.about-description {

    max-width: 620px;

    margin-top: 22px;

    color:
        var(--text-light);

    font-size: 15px;

    line-height: 1.85;
}


/* ============================================================
   ABOUT FEATURES
============================================================ */

.about-features {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 30px;

    padding-top: 5px;
}


.about-feature {

    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.about-feature-icon {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    margin-top: 2px;

    color:
        var(--green);

    background:
        rgba(38,148,71,0.10);

    border-radius: 50%;

    font-size: 14px;

    font-weight: 700;
}


.about-feature strong {

    display: block;

    color:
        var(--navy-800);

    font-size: 13px;

    font-weight: 800;
}


.about-feature span {

    display: block;

    margin-top: 3px;

    color:
        var(--text-light);

    font-size: 12px;

    line-height: 1.5;
}


/* ============================================================
   ABOUT CTA
============================================================ */

.about-cta {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 35px;
}


.about-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    color:
        var(--white);

    background:
        var(--navy-800);

    border-radius: 5px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition:
        var(--transition);
}


.about-button:hover {

    color:
        var(--navy-900);

    background:
        var(--gold);

    transform:
        translateY(-2px);
}


.about-call {

    display: flex;

    align-items: center;

    gap: 10px;
}


.call-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--green);

    background:
        rgba(38,148,71,0.10);

    border-radius: 50%;

    font-size: 13px;
}


.about-call span {

    display: block;

    color:
        var(--text-light);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.about-call a {

    display: block;

    margin-top: 2px;

    color:
        var(--navy-800);

    font-size: 13px;

    font-weight: 800;

    transition:
        var(--transition);
}


.about-call a:hover {

    color:
        var(--green);
}


/* ============================================================
   ABOUT RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

    .about-content {
        padding-left: 5px;
    }


    .about-title {
        font-size: 43px;
    }


    .about-image-main {
        height: 470px;
    }

}


@media (max-width: 991px) {

    .about-section {
        padding:
            90px 0;
    }


    .about-visual {
        max-width:
            620px;

        margin:
            0 auto 25px;

        padding-right:
            25px;
    }


    .about-image-main {
        height:
            520px;
    }


    .about-content {
        padding-left:
            0;
    }


    .about-title {
        font-size:
            46px;
    }

}


@media (max-width: 767px) {

    .about-section {
        padding:
            75px 0;
    }


    .about-visual {
        padding:
            15px 15px 55px 0;
    }


    .about-image-main {
        height:
            430px;
    }


    .about-experience {

        width:
            115px;

        height:
            115px;

        top:
            50px;

        right:
            0;
    }


    .experience-number {
        font-size:
            29px;
    }


    .experience-text {
        font-size:
            7px;
    }


    .about-floating-card {
        left:
            10px;

        min-width:
            230px;
    }


    .about-title {
        font-size:
            38px;

        letter-spacing:
            -1px;
    }


    .about-description {
        font-size:
            14px;
    }


    .about-cta {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;
    }

}


@media (max-width: 575px) {

    .about-image-main {
        height:
            360px;
    }


    .about-experience {

        width:
            100px;

        height:
            100px;

        top:
            35px;
    }


    .experience-number {
        font-size:
            25px;
    }


    .about-floating-card {

        min-width:
            210px;

        padding:
            12px 14px;
    }


    .about-title {
        font-size:
            34px;
    }

}
/* ============================================================
   WHY CHOOSE PRAKASH AGENCIES
============================================================ */
.why-section{
    position:relative;
    padding:125px 0 105px;
    background:
        radial-gradient(circle at 85% 20%,rgba(245,181,27,.10),transparent 28%),
        linear-gradient(135deg,#04121f 0%,#071d30 52%,#092940 100%);
    color:#fff;
    overflow:hidden;
}
.why-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:70px 70px;
    opacity:.35;
    pointer-events:none;
}
.why-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(2px);
    pointer-events:none;
}
.why-glow-one{
    width:420px;
    height:420px;
    right:-180px;
    top:-160px;
    background:radial-gradient(circle,rgba(245,181,27,.12),transparent 68%);
}
.why-glow-two{
    width:350px;
    height:350px;
    left:-200px;
    bottom:-170px;
    background:radial-gradient(circle,rgba(38,148,71,.12),transparent 68%);
}
.why-intro{
    position:relative;
    z-index:2;
    padding-right:45px;
}
.why-label{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:20px;
    color:var(--gold);
    font-size:10px;
    font-weight:800;
    letter-spacing:2.5px;
    text-transform:uppercase;
}
.why-label span{
    width:32px;
    height:2px;
    background:var(--gold);
}
.why-title{
    color:#fff;
    font-size:clamp(38px,4.5vw,57px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:800;
}
.why-title span{
    color:var(--gold);
}
.why-description{
    max-width:510px;
    margin-top:25px;
    color:rgba(255,255,255,.64);
    font-size:15px;
    line-height:1.85;
}
.why-main-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    padding:14px 21px;
    color:var(--navy-900);
    background:var(--gold);
    border:1px solid var(--gold);
    border-radius:5px;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.why-main-button:hover{
    color:var(--navy-900);
    background:#fff;
    border-color:#fff;
    transform:translateY(-3px);
}
.why-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}
.why-card{
    position:relative;
    min-height:245px;
    padding:27px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.10);
    border-radius:10px;
    overflow:hidden;
    backdrop-filter:blur(8px);
    transition:var(--transition);
}
.why-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:3px;
    height:100%;
    background:var(--gold);
    transform:scaleY(0);
    transform-origin:top;
    transition:transform .4s ease;
}
.why-card:hover{
    background:rgba(255,255,255,.085);
    border-color:rgba(245,181,27,.28);
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.20);
}
.why-card:hover::before{
    transform:scaleY(1);
}
.why-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.why-number{
    color:rgba(255,255,255,.22);
    font-family:'Manrope',sans-serif;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
}
.why-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    background:rgba(245,181,27,.09);
    border:1px solid rgba(245,181,27,.14);
    border-radius:8px;
    font-size:19px;
    transition:var(--transition);
}
.why-card:hover .why-icon{
    color:var(--navy-900);
    background:var(--gold);
    transform:rotate(-5deg);
}
.why-card h3{
    margin-top:24px;
    color:#fff;
    font-size:18px;
    font-weight:800;
}
.why-card p{
    max-width:290px;
    margin-top:10px;
    color:rgba(255,255,255,.56);
    font-size:12px;
    line-height:1.75;
}
.why-card-line{
    position:absolute;
    left:27px;
    right:27px;
    bottom:0;
    height:2px;
    background:linear-gradient(90deg,var(--gold),transparent);
    opacity:.35;
}
.why-bottom{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:75px;
    border-top:1px solid rgba(255,255,255,.10);
    border-bottom:1px solid rgba(255,255,255,.10);
}
.why-bottom-item{
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:rgba(255,255,255,.62);
    font-size:11px;
    font-weight:600;
    border-right:1px solid rgba(255,255,255,.10);
    transition:var(--transition);
}
.why-bottom-item:last-child{
    border-right:none;
}
.why-bottom-item i{
    color:var(--gold);
    font-size:16px;
}
.why-bottom-item:hover{
    color:#fff;
    background:rgba(255,255,255,.025);
}
@media(max-width:991px){
    .why-section{
        padding:90px 0;
    }
    .why-intro{
        padding-right:0;
        margin-bottom:20px;
    }
    .why-title{
        font-size:45px;
    }
}
@media(max-width:767px){
    .why-section{
        padding:75px 0;
    }
    .why-title{
        font-size:38px;
        letter-spacing:-1px;
    }
    .why-description{
        font-size:14px;
    }
    .why-grid{
        grid-template-columns:1fr;
    }
    .why-card{
        min-height:220px;
    }
    .why-bottom{
        grid-template-columns:repeat(2,1fr);
        margin-top:55px;
    }
    .why-bottom-item{
        min-height:65px;
        border-bottom:1px solid rgba(255,255,255,.10);
    }
    .why-bottom-item:nth-child(2){
        border-right:none;
    }
}
@media(max-width:575px){
    .why-title{
        font-size:34px;
    }
    .why-card{
        padding:24px;
    }
    .why-bottom-item{
        font-size:9px;
    }
}
    /* ============================================================
   HOW IT WORKS / SOLAR JOURNEY
============================================================ */
.journey-section{
    position:relative;
    padding:120px 0;
    background:#f7f9fb;
    overflow:hidden;
}
.journey-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    top:-280px;
    left:-250px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(245,181,27,.10),transparent 68%);
    pointer-events:none;
}
.journey-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    right:-250px;
    bottom:-250px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(38,148,71,.08),transparent 68%);
    pointer-events:none;
}
.journey-heading{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:0 auto;
}
.journey-title{
    color:var(--navy-800);
    font-size:clamp(36px,4vw,52px);
    line-height:1.1;
    letter-spacing:-2px;
    font-weight:800;
}
.journey-title span{
    color:var(--green);
}
.journey-intro{
    max-width:650px;
    margin:20px auto 0;
    color:var(--text-light);
    font-size:15px;
    line-height:1.8;
}
.journey-wrapper{
    position:relative;
    z-index:2;
    margin-top:75px;
}
.journey-line{
    position:absolute;
    top:32px;
    left:10%;
    right:10%;
    height:2px;
    background:linear-gradient(90deg,rgba(245,181,27,.20),var(--gold),rgba(38,148,71,.25));
    z-index:0;
}
.journey-step{
    position:relative;
    z-index:2;
    text-align:center;
}
.journey-number{
    position:absolute;
    top:-2px;
    left:50%;
    transform:translateX(-50%);
    color:rgba(8,28,45,.07);
    font-family:'Manrope',sans-serif;
    font-size:52px;
    line-height:1;
    font-weight:800;
    pointer-events:none;
}
.journey-icon{
    position:relative;
    width:66px;
    height:66px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy-800);
    background:#fff;
    border:2px solid var(--gold);
    border-radius:50%;
    font-size:22px;
    box-shadow:0 8px 25px rgba(8,28,45,.08);
    transition:var(--transition);
}
.journey-step:hover .journey-icon{
    color:var(--navy-900);
    background:var(--gold);
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(245,181,27,.25);
}
.journey-step h3{
    color:var(--navy-800);
    font-size:17px;
    font-weight:800;
}
.journey-step p{
    max-width:190px;
    margin:10px auto 0;
    color:var(--text-light);
    font-size:11px;
    line-height:1.7;
}
.journey-cta{
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:75px;
    padding:22px 25px;
    background:var(--navy-800);
    border-radius:10px;
    box-shadow:0 18px 45px rgba(8,28,45,.12);
}
.journey-cta-content{
    display:flex;
    align-items:center;
    gap:15px;
}
.journey-cta-icon{
    width:45px;
    height:45px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy-900);
    background:var(--gold);
    border-radius:7px;
    font-size:18px;
}
.journey-cta-content strong{
    display:block;
    color:#fff;
    font-size:13px;
    font-weight:800;
}
.journey-cta-content span{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.55);
    font-size:11px;
}
.journey-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    flex-shrink:0;
    padding:13px 20px;
    color:var(--navy-900);
    background:var(--gold);
    border:1px solid var(--gold);
    border-radius:5px;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.6px;
    transition:var(--transition);
}
.journey-button:hover{
    color:var(--navy-900);
    background:#fff;
    border-color:#fff;
    transform:translateY(-2px);
}
@media(max-width:991px){
    .journey-section{
        padding:90px 0;
    }
    .journey-wrapper{
        margin-top:60px;
    }
    .journey-line{
        display:none;
    }
    .journey-step{
        padding:20px 10px;
    }
    .journey-icon{
        margin-bottom:20px;
    }
    .journey-step p{
        max-width:250px;
    }
    .journey-cta{
        margin-top:55px;
    }
}
@media(max-width:767px){
    .journey-section{
        padding:75px 0;
    }
    .journey-title{
        font-size:38px;
        letter-spacing:-1px;
    }
    .journey-intro{
        font-size:14px;
    }
    .journey-wrapper{
        margin-top:40px;
    }
    .journey-step{
        display:grid;
        grid-template-columns:66px 1fr;
        grid-template-rows:auto auto;
        column-gap:18px;
        text-align:left;
        padding:12px 0;
    }
    .journey-icon{
        grid-row:1 / 3;
        margin:0;
    }
    .journey-number{
        display:none;
    }
    .journey-step h3{
        align-self:end;
    }
    .journey-step p{
        max-width:none;
        margin:5px 0 0;
        align-self:start;
    }
    .journey-cta{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }
    .journey-button{
        width:100%;
    }
}
@media(max-width:575px){
    .journey-title{
        font-size:34px;
    }
    .journey-cta-content strong{
        font-size:12px;
    }
    .journey-cta-content span{
        font-size:10px;
        line-height:1.5;
    }
}


    /* ============================================================
   PRODUCTS SECTION
============================================================ */
.products-section{
    position:relative;
    padding:125px 0;
    background:#fff;
    overflow:hidden;
}
.products-section::before{
    content:'';
    position:absolute;
    top:-250px;
    right:-250px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(245,181,27,.09),transparent 68%);
    pointer-events:none;
}
.products-heading{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:50px;
    margin-bottom:50px;
}
.products-title{
    max-width:650px;
    color:var(--navy-800);
    font-size:clamp(36px,4vw,52px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:800;
}
.products-title span{
    color:var(--green);
}
.products-heading-right{
    max-width:390px;
}
.products-heading-right p{
    color:var(--text-light);
    font-size:13px;
    line-height:1.75;
}
.products-view-all{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
    color:var(--navy-800);
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.products-view-all:hover{
    color:var(--green);
    transform:translateX(4px);
}
.products-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:16px;
}
.product-card{
    position:relative;
    display:block;
    min-height:260px;
    overflow:hidden;
    border-radius:10px;
    background:var(--navy-800);
    box-shadow:0 10px 30px rgba(8,28,45,.08);
}
.product-card-large{
    grid-column:span 2;
    grid-row:span 2;
}
.product-card-wide{
    grid-column:span 2;
}
.product-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.product-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(4,18,31,.08) 15%,rgba(4,18,31,.35) 42%,rgba(4,18,31,.94) 100%);
    transition:var(--transition);
}
.product-card:hover img{
    transform:scale(1.08);
}
.product-card:hover .product-overlay{
    background:linear-gradient(180deg,rgba(4,18,31,.12) 5%,rgba(4,18,31,.38) 35%,rgba(4,18,31,.97) 100%);
}
.product-content{
    position:absolute;
    inset:auto 0 0 0;
    z-index:2;
    padding:25px;
}
.product-number{
    position:absolute;
    top:-215px;
    right:22px;
    color:rgba(255,255,255,.18);
    font-family:'Manrope',sans-serif;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
}
.product-card-large .product-number{
    top:-430px;
}
.product-icon{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    color:var(--navy-900);
    background:var(--gold);
    border-radius:7px;
    font-size:17px;
    transition:var(--transition);
}
.product-card:hover .product-icon{
    background:#fff;
    transform:translateY(-3px);
}
.product-content h3{
    color:#fff;
    font-size:20px;
    font-weight:800;
}
.product-card:not(.product-card-large) .product-content h3{
    font-size:17px;
}
.product-content p{
    max-width:500px;
    margin-top:8px;
    color:rgba(255,255,255,.65);
    font-size:11px;
    line-height:1.65;
}
.product-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-top:14px;
    color:var(--gold);
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.product-link i{
    transition:var(--transition);
}
.product-card:hover .product-link{
    color:#fff;
}
.product-card:hover .product-link i{
    transform:translateX(5px);
}
.products-bottom{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:22px;
    padding:21px 25px;
    background:#f5f7f8;
    border:1px solid var(--border);
    border-radius:8px;
}
.products-bottom-text span{
    display:block;
    color:var(--text-light);
    font-size:10px;
}
.products-bottom-text strong{
    display:block;
    margin-top:3px;
    color:var(--navy-800);
    font-size:13px;
}
.products-bottom-button{
    display:inline-flex;
    align-items:center;
    gap:9px;
    flex-shrink:0;
    padding:12px 19px;
    color:#fff;
    background:var(--navy-800);
    border-radius:5px;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.products-bottom-button:hover{
    color:var(--navy-900);
    background:var(--gold);
    transform:translateY(-2px);
}
@media(max-width:991px){
    .products-section{
        padding:90px 0;
    }
    .products-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
        margin-bottom:40px;
    }
    .products-heading-right{
        max-width:600px;
    }
    .products-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:250px;
    }
    .product-card-large{
        grid-column:span 2;
        grid-row:span 1;
    }
    .product-card-wide{
        grid-column:span 2;
    }
    .product-number,
    .product-card-large .product-number{
        top:-205px;
    }
}
@media(max-width:767px){
    .products-section{
        padding:75px 0;
    }
    .products-title{
        font-size:38px;
        letter-spacing:-1px;
    }
    .products-grid{
        display:grid;
        grid-template-columns:1fr;
        grid-auto-rows:280px;
        gap:14px;
    }
    .product-card,
    .product-card-large,
    .product-card-wide{
        grid-column:span 1;
        grid-row:span 1;
        min-height:280px;
    }
    .product-number,
    .product-card-large .product-number{
        top:-225px;
    }
    .product-content{
        padding:23px;
    }
    .products-bottom{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }
    .products-bottom-button{
        width:100%;
        justify-content:center;
    }
}
@media(max-width:575px){
    .products-title{
        font-size:34px;
    }
    .product-card,
    .product-card-large,
    .product-card-wide{
        min-height:265px;
    }
    .product-number,
    .product-card-large .product-number{
        top:-210px;
    }
}

    /* ============================================================
   SOLAR SAVINGS ESTIMATOR
============================================================ */
.solar-estimator-section{
    position:relative;
    padding:125px 0;
    background:var(--navy-900);
    overflow:hidden;
}
.solar-estimator-section::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    right:-300px;
    top:-300px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(245,181,27,.16),transparent 68%);
    pointer-events:none;
}
.solar-estimator-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    left:-250px;
    bottom:-250px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(38,148,71,.12),transparent 68%);
    pointer-events:none;
}
.estimator-content{
    position:relative;
    z-index:2;
    padding-right:35px;
}
.estimator-content .section-label{
    color:var(--gold);
}
.estimator-content .section-label span{
    background:var(--gold);
}
.estimator-title{
    color:#fff;
    font-size:clamp(38px,4vw,55px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:800;
}
.estimator-title span{
    display:block;
    color:var(--gold);
}
.estimator-text{
    max-width:530px;
    margin-top:23px;
    color:rgba(255,255,255,.62);
    font-size:15px;
    line-height:1.85;
}
.estimator-points{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:27px;
}
.estimator-points div{
    display:flex;
    align-items:center;
    color:rgba(255,255,255,.78);
    font-size:12px;
}
.estimator-points i{
    margin-right:9px;
    color:var(--gold);
    font-size:13px;
}
.estimator-note{
    display:flex;
    align-items:flex-start;
    gap:10px;
    max-width:520px;
    margin-top:30px;
    padding:14px 16px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    border-radius:7px;
}
.estimator-note i{
    margin-top:2px;
    color:var(--gold);
    font-size:13px;
}
.estimator-note span{
    color:rgba(255,255,255,.45);
    font-size:10px;
    line-height:1.65;
}
.estimator-box{
    position:relative;
    z-index:2;
    padding:32px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}
.estimator-box-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-bottom:23px;
    border-bottom:1px solid var(--border);
}
.estimator-box-header span{
    color:var(--green);
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
}
.estimator-box-header h3{
    margin-top:7px;
    color:var(--navy-800);
    font-size:20px;
    font-weight:800;
}
.estimator-sun{
    width:52px;
    height:52px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy-900);
    background:var(--gold);
    border-radius:50%;
    font-size:20px;
}
.estimator-input-area{
    padding:27px 0;
}
.estimator-input-area label{
    display:block;
    margin-bottom:11px;
    color:var(--navy-800);
    font-size:12px;
    font-weight:800;
}
.bill-input-wrap{
    display:flex;
    align-items:center;
    height:58px;
    border:1px solid #dce2e6;
    border-radius:7px;
    overflow:hidden;
    background:#fafbfc;
}
.bill-input-wrap span{
    width:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green);
    background:#f1f5f2;
    font-size:20px;
    font-weight:700;
}
.bill-input-wrap input{
    width:100%;
    height:100%;
    padding:0 18px;
    border:0;
    outline:0;
    background:transparent;
    color:var(--navy-800);
    font-family:'Manrope',sans-serif;
    font-size:20px;
    font-weight:800;
}
.bill-range{
    width:100%;
    height:5px;
    margin-top:22px;
    appearance:none;
    -webkit-appearance:none;
    background:#dfe5e8;
    border-radius:10px;
    outline:none;
}
.bill-range::-webkit-slider-thumb{
    width:19px;
    height:19px;
    appearance:none;
    -webkit-appearance:none;
    background:var(--gold);
    border:3px solid #fff;
    border-radius:50%;
    box-shadow:0 2px 8px rgba(0,0,0,.20);
    cursor:pointer;
}
.bill-range::-moz-range-thumb{
    width:15px;
    height:15px;
    background:var(--gold);
    border:3px solid #fff;
    border-radius:50%;
    box-shadow:0 2px 8px rgba(0,0,0,.20);
    cursor:pointer;
}
.range-labels{
    display:flex;
    justify-content:space-between;
    margin-top:8px;
    color:#9aa4ab;
    font-size:9px;
}
.estimate-results{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}
.estimate-result{
    padding:18px 14px;
    background:#f5f7f8;
    border:1px solid #edf0f2;
    border-radius:7px;
}
.estimate-result span{
    display:block;
    color:var(--text-light);
    font-size:9px;
    line-height:1.5;
    text-transform:uppercase;
    letter-spacing:.7px;
}
.estimate-result strong{
    display:block;
    margin-top:8px;
    color:var(--navy-800);
    font-family:'Manrope',sans-serif;
    font-size:19px;
    font-weight:800;
}
.estimate-highlight{
    background:rgba(245,181,27,.09);
    border-color:rgba(245,181,27,.20);
}
.estimate-highlight strong{
    color:var(--green);
}
.estimate-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid var(--border);
}
.estimate-footer div{
    color:var(--text-light);
    font-size:10px;
}
.estimate-footer div i{
    margin-right:6px;
    color:var(--gold-dark);
}
.estimate-footer a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    flex-shrink:0;
    color:var(--navy-800);
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.estimate-footer a:hover{
    color:var(--green);
    transform:translateX(3px);
}
@media(max-width:991px){
    .solar-estimator-section{
        padding:90px 0;
    }
    .estimator-content{
        padding-right:0;
        margin-bottom:20px;
    }
}
@media(max-width:767px){
    .solar-estimator-section{
        padding:75px 0;
    }
    .estimator-title{
        font-size:38px;
        letter-spacing:-1px;
    }
    .estimator-text{
        font-size:14px;
    }
    .estimator-box{
        padding:23px;
    }
    .estimate-results{
        grid-template-columns:1fr;
    }
    .estimate-result{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:15px;
    }
    .estimate-result strong{
        margin-top:0;
    }
    .estimate-footer{
        flex-direction:column;
        align-items:flex-start;
    }
    .estimate-footer a{
        width:100%;
        justify-content:center;
        padding:12px;
        background:var(--navy-800);
        color:#fff;
        border-radius:5px;
    }
}
@media(max-width:575px){
    .estimator-title{
        font-size:34px;
    }
    .estimator-box-header h3{
        font-size:17px;
    }
    .estimator-sun{
        width:44px;
        height:44px;
        font-size:17px;
    }
}

    /* ============================================================
   SOLUTIONS BY APPLICATION
============================================================ */
.applications-section{
    position:relative;
    padding:125px 0;
    background:#f7f9fb;
    overflow:hidden;
}
.applications-section::before{
    content:'';
    position:absolute;
    left:-250px;
    top:-250px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(38,148,71,.08),transparent 68%);
    pointer-events:none;
}
.applications-heading{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:50px;
    margin-bottom:48px;
}
.applications-heading-left{
    max-width:720px;
}
.applications-title{
    color:var(--navy-800);
    font-size:clamp(36px,4vw,52px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:800;
}
.applications-title span{
    color:var(--green);
}
.applications-heading-right{
    max-width:380px;
}
.applications-heading-right p{
    color:var(--text-light);
    font-size:13px;
    line-height:1.8;
}
.applications-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}
.application-card{
    position:relative;
    min-height:420px;
    display:block;
    overflow:hidden;
    background:var(--navy-800);
    border-radius:10px;
    box-shadow:0 12px 35px rgba(8,28,45,.08);
}
.application-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .9s cubic-bezier(.2,.7,.2,1);
}
.application-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(4,18,31,.08) 0%,rgba(4,18,31,.22) 30%,rgba(4,18,31,.94) 100%);
    transition:var(--transition);
}
.application-card:hover img{
    transform:scale(1.07);
}
.application-card:hover .application-overlay{
    background:linear-gradient(180deg,rgba(4,18,31,.12) 0%,rgba(4,18,31,.28) 25%,rgba(4,18,31,.97) 100%);
}
.application-top{
    position:absolute;
    top:24px;
    left:25px;
    right:25px;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.application-top span{
    color:rgba(255,255,255,.60);
    font-family:'Manrope',sans-serif;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
}
.application-top i{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy-900);
    background:var(--gold);
    border-radius:7px;
    font-size:17px;
    transition:var(--transition);
}
.application-card:hover .application-top i{
    color:var(--navy-900);
    background:#fff;
    transform:translateY(-3px);
}
.application-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:3;
    padding:28px;
}
.application-label{
    color:var(--gold);
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
}
.application-content h3{
    margin-top:6px;
    color:#fff;
    font-size:29px;
    font-weight:800;
}
.application-content p{
    max-width:470px;
    margin-top:9px;
    color:rgba(255,255,255,.63);
    font-size:12px;
    line-height:1.7;
}
.application-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:#fff;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.application-link i{
    color:var(--gold);
    transition:var(--transition);
}
.application-card:hover .application-link{
    color:var(--gold);
}
.application-card:hover .application-link i{
    transform:translateX(5px);
}
.applications-bottom{
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:18px;
    padding:20px 24px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:8px;
}
.applications-bottom-icon{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:var(--navy-900);
    background:var(--gold);
    border-radius:7px;
    font-size:17px;
}
.applications-bottom-text{
    flex:1;
}
.applications-bottom-text strong{
    display:block;
    color:var(--navy-800);
    font-size:12px;
    font-weight:800;
}
.applications-bottom-text span{
    display:block;
    margin-top:3px;
    color:var(--text-light);
    font-size:10px;
}
.applications-button{
    display:inline-flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
    padding:12px 18px;
    color:#fff;
    background:var(--navy-800);
    border-radius:5px;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:var(--transition);
}
.applications-button:hover{
    color:var(--navy-900);
    background:var(--gold);
    transform:translateY(-2px);
}
@media(max-width:991px){
    .applications-section{
        padding:90px 0;
    }
    .applications-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
        margin-bottom:40px;
    }
    .applications-heading-right{
        max-width:620px;
    }
    .application-card{
        min-height:390px;
    }
}
@media(max-width:767px){
    .applications-section{
        padding:75px 0;
    }
    .applications-title{
        font-size:38px;
        letter-spacing:-1px;
    }
    .applications-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
    .application-card{
        min-height:380px;
    }
    .applications-bottom{
        flex-wrap:wrap;
    }
    .applications-bottom-text{
        flex:1;
        min-width:200px;
    }
    .applications-button{
        width:100%;
        justify-content:center;
        margin-top:5px;
    }
}
@media(max-width:575px){
    .applications-title{
        font-size:34px;
    }
    .application-card{
        min-height:350px;
    }
    .application-content{
        padding:23px;
    }
    .application-content h3{
        font-size:25px;
    }
}

    /* ============================================================
   PRAKASH AGENCIES LOGO
============================================================ */
.brand-logo-link{
    display:flex;
    align-items:center;
    flex-shrink:0;
    text-decoration:none;
}
.brand-logo{
    display:block;
    width:435;
    height:68px;
    max-width:435px;
    object-fit:contain;
    transition:var(--transition);
}
.brand-logo-link:hover .brand-logo{
    transform:scale(1.02);
}
@media(max-width:1199px){
    .brand-logo{
        height:62px;
        max-width:215px;
    }
}
@media(max-width:991px){
    .brand-logo{
        height:58px;
        max-width:205px;
    }
}
@media(max-width:575px){
    .brand-logo{
        height:52px;
        max-width:185px;
    }
}

    .hero{
    position:relative;
    min-height:880px;
    background:var(--navy-950);
    overflow:hidden;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
    min-height:880px;
}
.hero-slide{
    position:relative;
    min-height:880px;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero-slide-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:0;
}
.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(90deg,rgba(3,15,26,.88) 0%,rgba(3,15,26,.68) 32%,rgba(3,15,26,.28) 68%,rgba(3,15,26,.08) 100%);
    pointer-events:none;
}
.hero-slide .container{
    position:relative;
    z-index:5;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer{
    position:relative;
    background:#03111d;
    color:#fff;
    overflow:hidden;
}
.site-footer::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    right:-300px;
    top:-300px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(245,181,27,.08),transparent 68%);
    pointer-events:none;
}
.footer-main{
    position:relative;
    z-index:2;
    padding:85px 0 65px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo{
    display:inline-flex;
    align-items:center;
}
.footer-logo img{
    display:block;
    width:auto;
    height:70px;
    max-width:235px;
    object-fit:contain;
}
.footer-about{
    max-width:360px;
    margin-top:23px;
    color:rgba(255,255,255,.50);
    font-size:12px;
    line-height:1.85;
}
.footer-social{
    display:flex;
    gap:8px;
    margin-top:25px;
}
.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,.55);
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px;
    font-size:13px;
    transition:var(--transition);
}
.footer-social a:hover{
    color:var(--navy-900);
    background:var(--gold);
    border-color:var(--gold);
    transform:translateY(-3px);
}
.footer-heading{
    position:relative;
    margin-bottom:24px;
    color:#fff;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}
.footer-heading::after{
    content:'';
    display:block;
    width:25px;
    height:2px;
    margin-top:10px;
    background:var(--gold);
}
.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}
.footer-links li{
    margin-bottom:11px;
}
.footer-links a{
    color:rgba(255,255,255,.50);
    font-size:11px;
    transition:var(--transition);
}
.footer-links a:hover{
    color:var(--gold);
    padding-left:4px;
}
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}
.footer-contact-icon{
    width:34px;
    height:34px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    background:rgba(245,181,27,.08);
    border:1px solid rgba(245,181,27,.12);
    border-radius:5px;
    font-size:12px;
}
.footer-contact-item span{
    display:block;
    color:rgba(255,255,255,.35);
    font-size:9px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.8px;
}
.footer-contact-item p{
    margin-top:3px;
    color:rgba(255,255,255,.65);
    font-size:11px;
    line-height:1.5;
}
.footer-contact-item a{
    color:rgba(255,255,255,.65);
    transition:var(--transition);
}
.footer-contact-item a:hover{
    color:var(--gold);
}
.footer-bottom{
    position:relative;
    z-index:2;
    padding:20px 0;
    background:rgba(0,0,0,.18);
}
.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.35);
    font-size:9px;
}
.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:18px;
}
.footer-bottom-links a{
    color:rgba(255,255,255,.35);
    font-size:9px;
    transition:var(--transition);
}
.footer-bottom-links a:hover{
    color:var(--gold);
}
.footer-credit a{
    color:rgba(255,255,255,.55);
}
.footer-credit a:hover{
    color:var(--gold);
}
@media(max-width:991px){
    .footer-main{
        padding:70px 0 50px;
    }
    .footer-bottom-inner{
        flex-wrap:wrap;
    }
}
@media(max-width:767px){
    .footer-main{
        padding:60px 0 40px;
    }
    .footer-logo img{
        height:60px;
        max-width:205px;
    }
    .footer-bottom-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
    .footer-bottom-links{
        order:3;
    }
}
@media(max-width:575px){
    .footer-logo img{
        height:54px;
        max-width:185px;
    }
    .footer-bottom-links{
        flex-wrap:wrap;
        gap:10px 16px;
    }
}

    /* ============================================================
   GLOBAL TYPOGRAPHY REFINEMENT
   Increase readability across the complete website
============================================================ */
body{
    font-size:16px;
}
p{
    font-size:16px;
    line-height:1.8;
}
.nav-link{
    font-size:12px;
}
.nav-cta{
    font-size:11px;
}
.section-label{
    font-size:11px;
}
.section-title{
    font-size:clamp(36px,4vw,52px);
}
.intro-text{
    font-size:16px;
    line-height:1.85;
}
.hero-text{
    font-size:16px;
    line-height:1.8;
}
.hero-feature{
    font-size:12px;
}
.btn-primary-custom,
.btn-outline-custom{
    font-size:11px;
}
.why-description{
    font-size:16px;
    line-height:1.85;
}
.why-card p{
    font-size:14px;
    line-height:1.75;
}
.why-card h3{
    font-size:19px;
}
.why-bottom-item{
    font-size:12px;
}
.journey-intro{
    font-size:16px;
    line-height:1.8;
}
.journey-step h3{
    font-size:18px;
}
.journey-step p{
    font-size:14px;
    line-height:1.75;
}
.journey-button{
    font-size:11px;
}
.products-heading-right p{
    font-size:15px;
    line-height:1.8;
}
.product-content h3{
    font-size:20px;
}
.product-card:not(.product-card-large) .product-content h3{
    font-size:18px;
}
.product-content p{
    font-size:14px;
    line-height:1.7;
}
.product-link{
    font-size:11px;
}
.products-bottom-text span{
    font-size:11px;
}
.products-bottom-text strong{
    font-size:14px;
}
.products-bottom-button{
    font-size:11px;
}
.estimator-text{
    font-size:16px;
    line-height:1.85;
}
.estimator-points div{
    font-size:13px;
}
.estimator-note span{
    font-size:11px;
    line-height:1.7;
}
.estimator-box-header span{
    font-size:10px;
}
.estimator-box-header h3{
    font-size:21px;
}
.estimator-input-area label{
    font-size:13px;
}
.estimate-result span{
    font-size:10px;
}
.estimate-footer div{
    font-size:11px;
}
.estimate-footer a{
    font-size:11px;
}
.applications-heading-right p{
    font-size:15px;
    line-height:1.8;
}
.application-content h3{
    font-size:30px;
}
.application-content p{
    font-size:14px;
    line-height:1.75;
}
.application-link{
    font-size:11px;
}
.applications-bottom-text strong{
    font-size:14px;
}
.applications-bottom-text span{
    font-size:11px;
}
.applications-button{
    font-size:11px;
}
.footer-about{
    font-size:13px;
    line-height:1.85;
}
.footer-links a{
    font-size:12px;
}
.footer-contact-item p{
    font-size:12px;
}
.footer-contact-item span{
    font-size:10px;
}
.footer-bottom p,
.footer-bottom-links a{
    font-size:10px;
}
@media(max-width:767px){
    p{
        font-size:15px;
        line-height:1.75;
    }
    .hero-text,
    .intro-text,
    .why-description,
    .journey-intro,
    .estimator-text{
        font-size:15px;
    }
    .why-card p,
    .journey-step p,
    .product-content p,
    .application-content p{
        font-size:13px;
    }
}

    /* ============================================================
   FOOTER TYPOGRAPHY REFINEMENT
============================================================ */
.footer-heading{
    font-size:14px;
    margin-bottom:25px;
}
.footer-links li{
    margin-bottom:13px;
}
.footer-links a{
    font-size:14px;
    line-height:1.6;
}
.footer-about{
    font-size:14px;
    line-height:1.85;
}
.footer-contact-item span{
    font-size:10px;
}
.footer-contact-item p{
    font-size:13px;
    line-height:1.6;
}
.footer-social a{
    font-size:14px;
}
.footer-bottom p{
    font-size:11px;
}
.footer-bottom-links a{
    font-size:11px;
}
.footer-credit{
    font-size:11px;
}
@media(max-width:767px){
    .footer-heading{
        font-size:14px;
    }
    .footer-links a{
        font-size:14px;
    }
    .footer-about{
        font-size:14px;
    }
    .footer-contact-item p{
        font-size:13px;
    }
    .footer-bottom p,
    .footer-bottom-links a{
        font-size:11px;
    }
}

  /* ============================================================
   NAVIGATION DROPDOWN
============================================================ */
.navbar .dropdown{
    position:relative;
}
.navbar .dropdown-menu{
    min-width:235px;
    padding:9px;
    margin-top:0 !important;
    background:var(--white);
    border:1px solid rgba(8,28,45,.08);
    border-radius:8px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}
.navbar .dropdown-item{
    padding:10px 13px;
    color:var(--text);
    border-radius:5px;
    font-size:13px;
    font-weight:500;
    line-height:1.4;
    transition:var(--transition);
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus{
    color:var(--green);
    background:rgba(38,148,71,.07);
    padding-left:17px;
}
.navbar .dropdown-divider{
    margin:7px 4px;
    border-color:var(--border);
}
.navbar .dropdown-featured{
    color:var(--green);
    font-weight:800;
}
.navbar .dropdown-featured i{
    margin-left:5px;
    transition:var(--transition);
}
.navbar .dropdown-featured:hover i{
    transform:translateX(4px);
}
.navbar .dropdown-toggle::after{
    margin-left:6px;
    vertical-align:2px;
    border-width:4px 4px 0;
}


 /* ============================================================
   DESKTOP HOVER DROPDOWN
============================================================ */
@media(min-width:992px){
    .navbar .dropdown:hover > .dropdown-menu{
        display:block;
    }
    .navbar .dropdown:hover > .nav-link{
        color:var(--gold);
    }
}
    /* ============================================================
   ABOUT PAGE
============================================================ */
.inner-page-hero{position:relative;min-height:430px;display:flex;align-items:center;background:#061522;overflow:hidden;}
.inner-page-hero-bg{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,17,29,.96) 0%,rgba(3,17,29,.78) 45%,rgba(3,17,29,.25) 100%),url('../images/about/prakash-agencies-about.jpg') center/cover no-repeat;}
.inner-page-hero-content{position:relative;z-index:2;max-width:720px;padding:100px 0 85px;}
.inner-page-hero-content h1{margin:20px 0 20px;color:#fff;font-family:'Manrope',sans-serif;font-size:clamp(42px,5vw,68px);font-weight:800;line-height:1.04;letter-spacing:-2px;}
.inner-page-hero-content h1 span{color:var(--gold);}
.inner-page-hero-content p{max-width:620px;margin:0;color:rgba(255,255,255,.68);font-size:17px;line-height:1.8;}
.about-intro-section{padding:110px 0;background:#fff;}
.about-image-wrap{position:relative;padding-right:30px;}
.about-image-wrap::before{content:'';position:absolute;left:-18px;top:28px;width:90%;height:90%;border:1px solid rgba(38,148,71,.18);z-index:0;}
.about-image-wrap img{position:relative;z-index:1;width:100%;height:510px;object-fit:cover;border-radius:4px;display:block;}
.about-image-badge{position:absolute;z-index:2;right:0;bottom:30px;display:flex;align-items:center;gap:12px;padding:18px 22px;background:var(--navy-900);color:#fff;box-shadow:0 15px 40px rgba(0,0,0,.18);}
.about-image-badge strong{font-family:'Manrope',sans-serif;font-size:34px;line-height:1;color:var(--gold);}
.about-image-badge span{font-size:11px;line-height:1.5;text-transform:uppercase;letter-spacing:.7px;color:rgba(255,255,255,.65);}
.about-content{padding-left:25px;}
.about-content .section-title{margin-bottom:25px;}
.about-content p{max-width:620px;margin:0 0 17px;color:var(--text);font-size:16px;line-height:1.85;}
.about-button{display:inline-flex;align-items:center;gap:10px;margin-top:12px;padding:13px 20px;background:var(--green);color:#fff;font-size:12px;font-weight:800;border-radius:4px;transition:var(--transition);}
.about-button:hover{background:var(--navy-900);color:#fff;transform:translateY(-2px);}
.about-button i{transition:var(--transition);}
.about-button:hover i{transform:translate(3px,-3px);}
.about-solutions-section{padding:105px 0;background:#f6f8f8;}
.about-section-intro{max-width:560px;margin:0 0 0 auto;color:var(--text-muted);font-size:16px;line-height:1.85;}
.about-service-card{position:relative;height:100%;padding:38px 32px;background:#fff;border:1px solid var(--border);border-radius:5px;overflow:hidden;transition:var(--transition);}
.about-service-card:hover{transform:translateY(-7px);box-shadow:0 20px 45px rgba(8,28,45,.1);border-color:rgba(38,148,71,.2);}
.about-service-number{position:absolute;right:24px;top:20px;color:rgba(8,28,45,.07);font-family:'Manrope',sans-serif;font-size:48px;font-weight:800;line-height:1;}
.about-service-icon{width:50px;height:50px;display:flex;align-items:center;justify-content:center;margin-bottom:25px;background:rgba(38,148,71,.08);color:var(--green);border-radius:5px;font-size:21px;}
.about-service-card h3{margin-bottom:13px;color:var(--navy-900);font-family:'Manrope',sans-serif;font-size:20px;font-weight:800;}
.about-service-card p{margin:0 0 22px;color:var(--text-muted);font-size:14px;line-height:1.75;}
.about-service-card a{display:inline-flex;align-items:center;gap:8px;color:var(--green);font-size:12px;font-weight:800;}
.about-service-card a i{transition:var(--transition);}
.about-service-card a:hover i{transform:translateX(4px);}
.about-why-section{padding:110px 0;background:var(--navy-900);color:#fff;}
.about-why-section .section-label{color:rgba(255,255,255,.5);}
.about-why-section .section-label span{background:var(--gold);}
.about-why-section .section-title{color:#fff;}
.about-why-section .section-title span{color:var(--gold);}
.about-why-intro{max-width:560px;margin-top:25px;color:rgba(255,255,255,.58);font-size:16px;line-height:1.85;}
.about-values-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:rgba(255,255,255,.08);}
.about-value{display:flex;gap:17px;padding:30px;background:rgba(255,255,255,.025);}
.about-value-icon{width:44px;height:44px;flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--gold);border:1px solid rgba(245,181,27,.2);border-radius:5px;font-size:17px;}
.about-value h3{margin:2px 0 8px;color:#fff;font-family:'Manrope',sans-serif;font-size:17px;font-weight:800;}
.about-value p{margin:0;color:rgba(255,255,255,.48);font-size:13px;line-height:1.7;}
.about-approach-section{padding:110px 0;background:#fff;}
.about-approach-heading{max-width:700px;margin:0 auto 55px;}
.about-process-card{position:relative;height:100%;padding:35px 28px;border:1px solid var(--border);border-radius:5px;text-align:center;background:#fff;transition:var(--transition);}
.about-process-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(8,28,45,.08);}
.about-process-number{position:absolute;top:16px;right:18px;color:rgba(8,28,45,.07);font-family:'Manrope',sans-serif;font-size:35px;font-weight:800;}
.about-process-card>i{display:flex;width:52px;height:52px;align-items:center;justify-content:center;margin:0 auto 20px;background:rgba(38,148,71,.08);color:var(--green);border-radius:50%;font-size:19px;}
.about-process-card h3{margin-bottom:10px;color:var(--navy-900);font-family:'Manrope',sans-serif;font-size:18px;font-weight:800;}
.about-process-card p{margin:0;color:var(--text-muted);font-size:14px;line-height:1.75;}
.about-cta-section{padding:0 0 100px;background:#fff;}
.about-cta{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:55px 60px;background:var(--green);border-radius:6px;overflow:hidden;position:relative;}
.about-cta::after{content:'';position:absolute;width:350px;height:350px;right:-150px;top:-180px;border-radius:50%;border:1px solid rgba(255,255,255,.12);}
.about-cta .section-label{color:rgba(255,255,255,.65);}
.about-cta .section-label span{background:var(--gold);}
.about-cta h2{position:relative;z-index:1;margin:15px 0 10px;color:#fff;font-family:'Manrope',sans-serif;font-size:clamp(28px,3vw,42px);font-weight:800;line-height:1.15;}
.about-cta h2 span{color:var(--gold);}
.about-cta p{position:relative;z-index:1;margin:0;color:rgba(255,255,255,.7);font-size:15px;line-height:1.7;}
.about-cta-button{position:relative;z-index:2;flex-shrink:0;display:inline-flex;align-items:center;gap:10px;padding:15px 23px;background:#fff;color:var(--navy-900);font-size:12px;font-weight:800;border-radius:4px;transition:var(--transition);}
.about-cta-button:hover{background:var(--gold);color:var(--navy-900);transform:translateY(-2px);}
.about-cta-button i{transition:var(--transition);}
.about-cta-button:hover i{transform:translate(3px,-3px);}
@media(max-width:991px){
.inner-page-hero{min-height:390px;}
.inner-page-hero-content{padding:90px 0 70px;}
.about-intro-section,.about-solutions-section,.about-why-section,.about-approach-section{padding:80px 0;}
.about-content{padding-left:0;}
.about-image-wrap{padding-right:20px;}
.about-section-intro{margin-top:20px;margin-left:0;}
.about-cta{padding:45px;}
}
@media(max-width:767px){
.inner-page-hero{min-height:350px;}
.inner-page-hero-bg{background-position:center;}
.inner-page-hero-content{padding:80px 0 60px;}
.inner-page-hero-content h1{font-size:42px;letter-spacing:-1px;}
.inner-page-hero-content p{font-size:15px;}
.about-intro-section,.about-solutions-section,.about-why-section,.about-approach-section{padding:65px 0;}
.about-image-wrap{padding-right:12px;margin-bottom:15px;}
.about-image-wrap img{height:400px;}
.about-image-badge{right:-2px;bottom:20px;padding:14px 17px;}
.about-image-badge strong{font-size:28px;}
.about-content .section-title{font-size:38px;}
.about-values-grid{grid-template-columns:1fr;}
.about-value{padding:24px;}
.about-cta{flex-direction:column;align-items:flex-start;padding:35px 28px;}
.about-cta-button{margin-top:5px;}
}

   
}
