/* =====================================================
   GLOBAL RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    color: #212121;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =====================================================
   CONTAINER
===================================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =====================================================
   TOP BLUE BAR
===================================================== */
.gov-topbar {
    background: #0a5ea8;
    height: 38px;
}

.topbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    color: #fff;
    font-size: 14px;
}

.gov-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    color: #fff;
    margin-left: 12px;
}
/* =====================================================
   GLOBAL RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    color: #212121;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =====================================================
   CONTAINER
===================================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =====================================================
   TOP BLUE BAR
===================================================== */
.gov-topbar {
    background: #0a5ea8;
    height: 38px;
}

.topbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    color: #fff;
    font-size: 14px;
}

.gov-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    color: #fff;
    margin-left: 12px;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.gov-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.ministry {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ministry-text span {
    font-size: 12px;
    color: #555;
}

.ministry-text strong {
    display: block;
    font-size: 13px;
}

.portal-title h1 {
    font-size: 22px;
    color: #0a5ea8;
    font-weight: 600;
}

.portal-title span {
    font-size: 14px;
    color: #555;
}

/* =====================================================
   HEADER BUTTONS
===================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    border: 1px solid #0a5ea8;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 14px;
    color: #0a5ea8;
    background: #fff;
}

.btn-primary {
    background: #0a5ea8;
    color: #fff;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
}

/* =====================================================
   NAV BAR (DESKTOP)
===================================================== */
.gov-nav {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.nav-toggle {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px 0;
}

.nav-list > li {
    position: relative;
    font-size: 15px;
    cursor: pointer;
}

.nav-list > li > a {
    color: #000;
}

/* Active item */
.nav-list > li.active a {
    background: #e6f0fb;
    padding: 6px 12px;
    border-radius: 8px;
    color: #0a5ea8;
}

/* Hover */
.nav-list > li > a:hover {
    color: #0a5ea8;
}

/* =====================================================
   DROPDOWNS (DESKTOP)
===================================================== */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    padding: 6px 0;
    z-index: 9999;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #000;
}

.dropdown-menu li a:hover {
    background: #e6f0fb;
    color: #0a5ea8;
}

/* =====================================================
   HERO (BASIC – ALREADY WORKING)
===================================================== */
.hero-gov {
    padding: 50px 0;
    background: #fff;
}

/* =====================================================
   MOBILE STYLES (THIS FIXES YOUR ISSUE)
===================================================== */
@media (max-width: 992px) {

    /* Header stack */
    .header-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Hamburger */
    .nav-toggle {
        display: block;
        font-size: 26px;
        background: none;
        border: none;
        color: #0a5ea8;
        cursor: pointer;
        margin: 10px 0;
    }

    /* Hide nav by default */
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
    }

    /* Show nav */
    .nav-list.open {
        display: flex;
    }

    .nav-list > li {
        width: 100%;
        padding: 0px 16px;
    }

    .nav-list > li > a {
        width: 100%;
        display: block;
    }

    /* Disable hover dropdown */
    .dropdown:hover > .dropdown-menu {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }
}

/* ================= HERO PM SECTION ================= */
.hero-pm {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* INDIA MAP (DOTTED) */
.hero-map {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 420px;
    background: url("../images/india-map.png") no-repeat center;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
}

/* LEFT CONTENT */
.hero-content {
    width: 70%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #000;
}

.hero-content h1 span {
    color: #0a5ea8;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

/* RIGHT IMAGE */
.hero-image {
    width: 30%;
    text-align: right;
    z-index: 2;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
}

/* NAME BLOCK */
.pm-name {
    margin-top: 12px;
    text-align: right;
}

.pm-name strong {
    color: #0a5ea8;
    font-size: 20px;
}

.pm-name span {
    font-size: 13px;
    color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-map {
        display: none;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        margin: 0 auto;
    }

    .hero-image {
        margin-top: 30px;
    }
}
/* =====================================================
   MOBILE HEADER + HERO (MATCH PORTAL)
===================================================== */
@media (max-width: 768px) {

    /* ===== HEADER ===== */

    .gov-topbar {
        height: 36px;
    }

    .gov-header .header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ministry {
        align-items: flex-start;
        gap: 8px;
    }

    .ministry img {
        height: 44px;
    }

    /* Hide desktop title if needed */
    .portal-title {
        display: none;
    }

    /* Keep hamburger on right */
    .nav-toggle {
        display: block;
        font-size: 28px;
        color: #0a5ea8;
    }

    /* ===== HERO ===== */

    .hero-pm {
        padding: 30px 0 20px;
    }

    .hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    /* Title first */
    .hero-content {
        width: 100%;
        order: 1;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-content h1 span {
        display: block;
        font-size: 32px;
    }

    /* PM Image second (BIG) */
    .hero-image {
        width: 100%;
        order: 2;
        margin: 20px 0;
        text-align: center;
    }

    .hero-image img {
        max-width: 85%;
        height: auto;
    }

    /* Text after image */
    .hero-content p {
        order: 3;
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
        text-align: left;
    }

    /* Hide dotted map on mobile */
    .hero-map {
        display: none;
    }
}
/* =====================================================
   MOBILE HEADER + HERO (MATCH PORTAL)
===================================================== */
@media (max-width: 768px) {

    /* ===== HEADER ===== */

    .gov-topbar {
        height: 36px;
    }

    .gov-header .header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ministry {
        align-items: flex-start;
        gap: 8px;
    }

    .ministry img {
        height: 44px;
    }

    /* Hide desktop title if needed */
    .portal-title {
        display: none;
    }

    /* Keep hamburger on right */
    .nav-toggle {
        display: block;
        font-size: 28px;
        color: #0a5ea8;
    }

    /* ===== HERO ===== */

    .hero-pm {
        padding: 30px 0 20px;
    }

    .hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    /* Title first */
    .hero-content {
        width: 100%;
        order: 1;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-content h1 span {
        display: block;
        font-size: 32px;
    }

    /* PM Image second (BIG) */
    .hero-image {
        width: 100%;
        order: 2;
        margin: 20px 0;
        text-align: center;
    }

    .hero-image img {
        max-width: 85%;
        height: auto;
    }

    /* Text after image */
    .hero-content p {
        order: 3;
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
        text-align: left;
    }

    /* Hide dotted map on mobile */
    .hero-map {
        display: none;
    }
}
/* =====================================================
   MOBILE HEADER – LOGO + MENU IN ONE LINE
===================================================== */
@media (max-width: 768px) {

    .gov-header .header-flex {
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .ministry {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ministry img {
        height: 42px;
    }

    .ministry-text span,
    .ministry-text strong {
        font-size: 11px;
        line-height: 1.2;
    }

    .portal-title {
        display: none !important;
    }

    .nav-toggle {
        display: block !important;
        font-size: 28px;
        color: #0a5ea8;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        line-height: 1;
    }

     .header-actions {
        display: flex !important;
        justify-content: flex-end;
    }

    /* Show only Download button */
    .header-actions a {
        display: none;
    }

    .download-btn {
        display: inline-block !important;
        font-size: 13px;
        padding: 6px 14px;
        border-radius: 20px;
    }
}
/* =====================================================
   MOBILE ONLY – HIDE HEADER ACTION BUTTONS
   (DESKTOP UNAFFECTED)
===================================================== */
@media (max-width: 768px) {

    /* One-line header */
    .gov-header .header-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    /* Show hamburger on mobile */
    .nav-toggle {
        display: block !important;
        font-size: 28px;
        background: none;
        border: none;
        color: #0a5ea8;
        cursor: pointer;
    }

    /* Hide portal title on mobile */
    .portal-title {
        display: none !important;
    }
}
/* =====================================================
   REMOVE DOT / BULLET FROM NAV DROPDOWN (DESKTOP FIX)
===================================================== */
.gov-nav ul,
.gov-nav ul li {
    list-style: none !important;
}

.gov-nav li::marker {
    content: none !important;
}
/* =====================================================
   ANNOUNCEMENT SLIDER (PORTAL STYLE)
===================================================== */
.announcement-bar {
    background: #e6f2ff;
    padding: 12px 0;
    border-top: 1px solid #cfe4ff;
    border-bottom: 1px solid #cfe4ff;
}

.announcement-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* LEFT TITLE */
.announcement-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    border-right: 1px solid #9ec5ff;
    padding-right: 14px;
}

/* SLIDER AREA */
.announcement-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.announcement-track {
    display: flex;
    transition: transform 0.5s ease;
}

.announcement-item {
    min-width: 100%;
    font-size: 20px;
    color: #000;
    line-height: 1.5;
}

/* CONTROLS */
.announcement-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.announcement-controls button {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: #0a5ea8;
}

/* MOBILE */
@media (max-width: 768px) {
    .announcement-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .announcement-title {
        border-right: none;
        padding-right: 0;
    }

    .announcement-controls {
        align-self: flex-end;
    }
}
/* =====================================================
   HOW TO APPLY – STEPS (PORTAL LOOKALIKE)
===================================================== */
.steps-section {
    padding: 50px 0;
    background: #ffffff;
}

.steps-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}



/* Hide scrollbar (clean look) */
.steps-wrapper::-webkit-scrollbar {
    display: none;
}

/* Step Card */
.step-card {
    min-width: 220px;
    background: #eaf4ff;
    border-radius: 22px;
    padding: 22px 16px 26px;
    text-align: center;
    border: 3px solid #0a5ea8;
    scroll-snap-align: start;
}

/* Icon */
.step-icon {
    font-size: 44px;
    margin-bottom: 10px;
}

/* Step number */
.step-card h3 {
    font-size: 16px;
    color: #0a5ea8;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Text */
.step-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.step-card a {
    color: #0a5ea8;
    font-weight: 600;
}

/* =====================================================
   DESKTOP LAYOUT (NO SCROLL)
===================================================== */
@media (min-width: 992px) {
    .steps-wrapper {
        overflow-x: visible;
        justify-content: space-between;
    }

    .step-card {
        flex: 1;
        max-width: 210px;
    }
}
/* =====================================================
   HOW TO APPLY – FIXED ALIGNMENT (PORTAL CORRECT)
===================================================== */

/* MOBILE FIRST (SCROLL) */
.steps-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
}

.step-card {
    min-width: 220px;
    scroll-snap-align: start;
}

/* DESKTOP – GRID (NO OVERFLOW) */
@media (min-width: 992px) {
    .steps-wrapper {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
        overflow: visible;
    }

    .step-card {
        min-width: 0;          /* 🔑 critical fix */
        width: 100%;
    }
}
/* =====================================================
   SITE LOGO
===================================================== */
.site-logo {
    height: 80px;          /* desktop */
    width: auto;
    object-fit: contain;
}

/* Mobile size */
@media (max-width: 768px) {
    .site-logo {
        height: 56px;
    }
}
/* =====================================================
   HOW TO APPLY – PORTAL STYLE HEADING
===================================================== */
/* =====================================================
   PORTAL STYLE TWO-COLOR HEADING
   (Consumer Registration Process look)
===================================================== */
.portal-heading {
    font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.portal-heading-blue {
    color: #0a5ea8;   /* portal blue */
}

.portal-heading-black {
    color: #000;
}
@media (max-width: 768px) {
    .portal-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.section-subheading {
    font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #555;
    margin-bottom: 28px;
    max-width: 720px;
}
/* =====================================================
   HERO IMAGE SLIDER
===================================================== */
.hero-image.slider {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    overflow: hidden;
}

.slider-track {
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: #cbdaf1;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #0a5ea8;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-image.slider {
        max-width: 85%;
        margin: 0 auto;
    }
}
/* =====================================================
   ABOUT SOLAR SECTION
===================================================== */
.about-solar {
    padding: 60px 0;
    background: #ffffff;
}

.about-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT CONTENT */
.about-content {
    width: 50%;
}

.about-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.about-heading span {
    color: #0a5ea8;
    position: relative;
}

/* Orange underline accent */
.about-heading span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: #ff8c00;
    border-radius: 2px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    border: 2px solid #0a5ea8;
    color: #0a5ea8;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #0a5ea8;
    color: #fff;
}

/* RIGHT IMAGE */
.about-image {
    width: 50%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .about-wrap {
        flex-direction: column;
    }

    .about-content,
    .about-image {
        width: 100%;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-content p {
        max-width: 100%;
    }

    .about-tagline {
        font-size: 18px;
    }
}

/* =====================================================
   PORTAL STYLE FOOTER
===================================================== */
.portal-footer {
    background: linear-gradient(135deg, #063a6b, #0a5ea8);
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* TOP SECTION */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 30px;
    gap: 40px;
}

/* LOGO */
.footer-logo img {
    height: 100px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

/* LINKS */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 14px 40px;
    font-size: 14px;
}

.footer-links a {
    color: #ffffff;
    opacity: 0.95;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ACTIONS */
.footer-actions {
    text-align: right;
}

.footer-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 14px;
    white-space: nowrap;
}

.footer-call:hover {
    background: rgba(255,255,255,0.12);
}

/* STORE BUTTONS */
.store-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.store-buttons img {
    height: 80px;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 13px;
    padding: 14px 0;
    opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }
}
/* =====================================================
   SOLAR BENEFITS SECTION
===================================================== */
.solar-benefits {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

/* Title */
.solar-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a5ea8; /* solar orange */
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Dashed divider */
.solar-divider {
    border-top: 2px dashed #cfcfcf;
    margin: 24px auto;
    width: 90%;
    max-width: 900px;
}

/* Headline */
.solar-headline {
    font-size: 32px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

/* Subtext */
.solar-subtext {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits grid */
.benefits-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    gap: 20px;
}

/* Each item */
.benefit-item {
    flex: 1;
    min-width: 140px;
}

.benefit-icon {
    font-size: 40px;
    color: #d17a0f;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .solar-title {
        font-size: 32px;
    }

    .solar-headline {
        font-size: 24px;
    }

    .solar-subtext {
        font-size: 15px;
    }

    .benefits-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .benefit-item {
        flex: 0 0 40%;
    }
}
/* =====================================================
   SOLAR CTA – PERFECT DESKTOP ALIGNMENT
===================================================== */
.solar-cta {
    background: #0a5ea8;
}

/* GRID CONTROLS SPLIT */
.solar-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 720px) 1fr;
    align-items: stretch;
}

/* LEFT SIDE */
.cta-left {
    background: #0a5ea8;
    display: flex;
    justify-content: center;
}

.cta-left-inner {
    max-width: 640px;
    padding: 80px 48px;
    color: #ffffff;
}

.cta-left-inner h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-left-inner p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #0a5ea8;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
}

/* RIGHT IMAGE */
.cta-right {
    overflow: hidden;
}

.cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 520px;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {

    .solar-cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-left-inner {
        padding: 40px 24px;
    }

    .cta-left-inner h2 {
        font-size: 28px;
    }

    .cta-left-inner p {
        font-size: 15px;
    }

    .cta-right img {
        min-height: 260px;
    }
}
/* ================= HERO ================= */
.hiw-hero {
    background: #0a5ea8;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.hiw-hero h1 {
    font-size: 44px;
    margin-bottom: 12px;
}

.hiw-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================= STEPS ================= */
/* ================= HOW IT WORKS – MODERN ================= */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

.hiw-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.hiw-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* GRID */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */
.hiw-card {
    background: #f4f9ff;
    border-radius: 14px;
    padding: 26px 24px 30px;
    border: 1px solid #dbe9ff;
    transition: all 0.3s ease;
}

.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* STEP NUMBER */
.hiw-step {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #0a5ea8;
    margin-bottom: 10px;
}

/* TITLE */
.hiw-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

/* TEXT */
.hiw-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .hiw-title {
        font-size: 28px;
    }
}


/* ================= RESPONSIBILITY ================= */
.hiw-responsibility {
    background: #f9fbff;
    padding: 70px 0;
}

.hiw-responsibility h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.responsibility-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.responsibility-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #0a5ea8;
}

.responsibility-box ul {
    padding-left: 18px;
}

.responsibility-box li {
    font-size: 15px;
    margin-bottom: 8px;
}

/* ================= CTA ================= */
.hiw-cta {
    background: #0a5ea8;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.hiw-cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.hiw-cta p {
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #0a5ea8;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsibility-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .hiw-hero h1 {
        font-size: 32px;
    }

    .hiw-steps h2,
    .hiw-responsibility h2 {
        font-size: 26px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== HERO ===== */
.about-hero {
    background: #0a5ea8;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 70px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}
/* ===== ABOUT IMAGE ===== */
.about-image2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* ===== MISSION VISION ===== */
.mv-section {
    background: #f8fbff;
    padding: 70px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mv-card h3 {
    font-size: 22px;
    color: #0a5ea8;
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us {
    padding: 70px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #f4f9ff;
    padding: 24px;
    border-radius: 12px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0a5ea8;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .mv-grid,
    .why-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}
/* ===== TESTIMONIAL SLIDER ===== */
/* ================= TESTIMONIALS ================= */

.testimonials-section {
    background: #0a5ea8;
    padding: 80px 0;
}

.testimonials-title {
    color: #ffffff;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 70px;
    text-align: center;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 15px;
}

.testimonial-card span {
    font-size: 15px;
    font-weight: 600;
    color: #0a5ea8;
}

/* Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0a5ea8;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    transition: 0.3s;
    z-index: 10;
}

.nav-btn:hover {
    background: #e6f2ff;
}

/* LEFT + RIGHT FIX */
.nav-btn.prev {
    left: -23px;
}

.nav-btn.next {
    right: -23px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .nav-btn.prev {
        left: -10px;
    }

    .nav-btn.next {
        right: -10px;
    }
}
/* CONTAINER */
.rs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.rs-hero {
    background: linear-gradient(135deg, #0a5ea8, #084b85);
    color: #fff;
    padding: 90px 0;
}

.rs-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.rs-hero p {
    font-size: 18px;
    margin-bottom: 24px;
}

/* BUTTON */
.rs-btn {
    display: inline-block;
    background: #ffffff;
    color: #0a5ea8;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.rs-btn:hover {
    background: #f1f1f1;
}

/* SECTIONS */
.rs-section {
    padding: 40px 0;
}

.rs-light {
    background: #f5f9ff;
}

.rs-dark {
    background: #0a5ea8;
    color: #fff;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

/* STEPS */
.rs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rs-step {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    border: 2px solid #0a5ea8;
}

.rs-step span {
    font-size: 28px;
    font-weight: 700;
    color: #0a5ea8;
}

.rs-step h3 {
    margin: 12px 0 8px;
}

/* BENEFITS */
.rs-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rs-benefit {
    background: #f5f9ff;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
}

.rs-benefit h3 {
    margin-bottom: 10px;
}

/* WHY US */
.rs-why ul {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.rs-why li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* CTA */
.rs-cta {
    background: #f5b400;
    text-align: center;
    padding: 70px 20px;
}

.rs-cta h2 {
    margin-bottom: 10px;
}

.rs-btn-light {
    background: #0a5ea8;
    color: #fff;
}

.rs-btn-light:hover {
    background: #083f70;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .rs-steps,
    .rs-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .rs-steps,
    .rs-benefits {
        grid-template-columns: 1fr;
    }

    .rs-hero {
        padding: 60px 0;
    }

    .rs-hero h1 {
        font-size: 28px;
    }
}
/* CONTAINER */
.cs-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.cs-hero {
    background: linear-gradient(135deg, #0a5ea8, #084b85);
    color: #fff;
    padding: 90px 0;
}

.cs-hero-content {
    max-width: 720px;
}

.cs-hero h1 {
    font-size: 42px;
    margin-bottom: 14px;
}

.cs-hero p {
    font-size: 18px;
    margin-bottom: 26px;
}

/* BUTTON */
.cs-btn {
    display: inline-block;
    background: #ffffff;
    color: #0a5ea8;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cs-btn:hover {
    background: #f1f1f1;
}

.cs-btn-dark {
    background: #0a5ea8;
    color: #ffffff;
}

.cs-btn-dark:hover {
    background: #083f70;
}

/* SECTIONS */
.cs-section {
    padding: 70px 0;
}

.cs-light {
    background: #f4f9ff;
}

.cs-dark {
    background: #0a5ea8;
    color: #ffffff;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

/* INTRO */
.cs-intro {
    max-width: 850px;
}

/* STEPS */
.cs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cs-step {
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    border: 2px solid #0a5ea8;
}

.cs-step span {
    font-size: 26px;
    font-weight: 700;
    color: #0a5ea8;
}

.cs-step h3 {
    margin: 12px 0 8px;
}

/* BENEFITS */
.cs-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cs-benefit {
    background: #f4f9ff;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
}

/* INDUSTRIES */
.cs-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.cs-industries span {
    background: #ffffff;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #dbe9ff;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cs-steps,
    .cs-benefits,
    .cs-industries {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .cs-steps,
    .cs-benefits,
    .cs-industries {
        grid-template-columns: 1fr;
    }

    .cs-hero {
        padding: 60px 0;
    }

    .cs-hero h1 {
        font-size: 28px;
    }
}
/* CATEGORIES */
.project-categories {
    background: #f4f9ff;
    padding: 60px 0;
    text-align: center;
}

.project-categories h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.category-card h3 {
    color: #0a5ea8;
    font-size: 20px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* FEATURED PROJECTS */
.featured-projects {
    padding: 70px 0;
}

.featured-projects h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* PERFECT GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE PLACEHOLDER */
.project-image {
    height: 180px;
    background: linear-gradient(135deg, #e6f2ff, #cfe4ff);
}

/* CONTENT */
.project-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-content h3 {
    color: #0a5ea8;
    font-size: 20px;
    margin-bottom: 8px;
}

.project-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.project-content ul {
    list-style: none;
    font-size: 14px;
    margin-top: auto;
}

.project-content li {
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   PROJECT IMAGE SLIDER
================================ */

.project-slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e6f2ff;
}

.slider-track2 {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.slider-track2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 94, 168, 0.9);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-btn:hover {
    background: #084b87;
}
/* ==========================
   PROCESS
========================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: #eaf4ff;
    padding: 25px;
    border-radius: 14px;
    border-left: 6px solid #0a5ea8;
}

.process-step span {
    font-weight: 700;
    color: #0a5ea8;
}
/* ==========================
   INDUSTRIES
========================== */
.industrialcontainer {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: #fff;
    border: 1px solid #e1ecf7;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    font-weight: 600;
}
/* ==========================
   BENEFITS
========================== */
.benefits {
    background: #f5f9ff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px) {
    .intro-grid,
    .benefit-grid,
    .process-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .hero-industrial h1 {
        font-size: 32px;
    }
}
/* SECTIONS */
.og-section {
    padding: 70px 0;
}

.og-light {
    background: #f4f9ff;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

/* INTRO */
.og-intro {
    max-width: 850px;
}

/* STEPS */
.og-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.og-step {
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    border: 2px solid #0a5ea8;
    text-align: center;
}

.og-step span {
    font-size: 26px;
    font-weight: 700;
    color: #0a5ea8;
}

/* BENEFITS */
.og-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.og-benefit {
    background: #f4f9ff;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
}

/* APPLICATIONS */
.og-applications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.og-app {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #dbe9ff;
    font-weight: 500;
}

/* PROCESS */
.og-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.og-process-step {
    background: #eaf4ff;
    padding: 24px;
    border-radius: 14px;
    border-left: 6px solid #0a5ea8;
}

.og-process-step span {
    font-weight: 700;
    color: #0a5ea8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .og-steps,
    .og-benefits,
    .og-process,
}
/* CONTAINER */
.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.contact-hero {
    background: linear-gradient(135deg, #0a5ea8, #083d6b);
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    opacity: 0.95;
}

/* SECTION */
.contact-section {
    padding: 70px 0;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* DETAILS */
.contact-details h2 {
    color: #0a5ea8;
    margin-bottom: 20px;
}

.detail-box {
    background: #f4f9ff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.detail-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #0a5ea8;
}

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    color: #0a5ea8;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cfdff2;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a5ea8;
}

/* BUTTON */
.contact-form button {
    background: #0a5ea8;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.contact-form button:hover {
    background: #083d6b;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 380px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}
/* ===============================
   DIRECTORS MESSAGE SECTION
================================ */

.directors-section {
    padding: 40px 0;
    background: #f4f9ff;
}

.directors-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.directors-title {
    text-align: center;
    font-size: 30px;
    color: #0a5ea8;
    margin-bottom: 50px;
}

/* GRID */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */
.director-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.director-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0a5ea8;
}

/* CONTENT */
.director-content h3 {
    margin: 0;
    font-size: 20px;
    color: #000;
}

.director-content span {
    display: block;
    font-size: 14px;
    color: #0a5ea8;
    margin-bottom: 10px;
    font-weight: 600;
}

.director-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .director-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .director-content p {
        text-align: left;
    }
}
/* ===============================
   SOLAR BRANDS SECTION
================================ */

.brands-section {
    padding: 80px 0;
    background: #ffffff;
}

.brands-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* TITLE */
.brands-title {
    text-align: center;
    font-size: 30px;
    color: #0a5ea8;
    margin-bottom: 10px;
}

.brands-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #555;
}

/* GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    align-items: center;
}

/* BRAND CARD */
.brand-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* LOGO */
.brand-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .brands-title {
        font-size: 24px;
    }

    .brand-item {
        padding: 16px;
    }

    .brand-item img {
        max-height: 60px;
    }
}
