﻿#loader {
    position: fixed;
    inset: 0;
    background: rgb(255 255 255 / 0.80);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
/* ---------------------- */
/* LEFT SIDE LOGO PANEL   */
/* ---------------------- */
.logo-panel {
    background: linear-gradient(180deg, #ffb100, #ffcc33);
    padding: 3px 10px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}

.side-logo {
    width: 75px;
    background-color: #fff;
    border-radius: 50%;
}

.logo-text {
    color: #000;
    font-weight: 700;
    font-size: 2.5rem;
    padding-left: 8px;
    display: block;
    line-height: 1.1;
}

.logotxt small {
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    padding-left: 10px;
    display: block;
}

/* ---------------------- */
/* TOP BAR WITH ICONS     */
/* ---------------------- */
.top-bar {
    padding: 3px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.social-icons a {
    color: #131313;
    margin-left: 15px;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

    .social-icons a .lni-facebook {
        color: #1877F2;
    }

    .social-icons a .lni-instagram {
        background: linear-gradient( 45deg, #833AB4, #FD1D1D, #F77737 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .social-icons a .lni-linkedin-original {
        color: #0A66C2;
    }

    .social-icons a .lni-youtube {
        color: #FF0000;
    }

    .social-icons a i:hover {
        color: #ffcc33 !important;
        transform: translateY(-1px);
    }

/* ---------------------- */
/* NAV MENU BAR           */
/* ---------------------- */

.solar-header {
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    z-index: 9999;
    position: relative;
}

    .solar-header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        margin-top: 0;
    }

    .solar-header:not(.fixed) {
        opacity: 1;
        transform: translateY(-20px);
    }

.solar-menu-bar {
    background: #fff;
    margin: 0;
    padding: 2px;
}

    .solar-menu-bar .nav-link {
        color: #131313 !important;
        padding: 8px 20px 8px 30px !important;
        font-weight: 600;
        transition: 0.3s;
        position: relative;
    }

        .solar-menu-bar .nav-link:hover {
            background: #ffb100;
            color: #000 !important;
            border-radius: 5px;
        }

        .solar-menu-bar .nav-link i {
            position: absolute;
            left: 0;
            top: 12px;
            margin-left: 10px;
        }

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.dropdown-item:hover {
    background: #ffcc33;
    color: #000;
}

@media (min-width: 992px) {
    .hover-dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ---------------------- */
/* RESPONSIVE DESIGN      */
/* ---------------------- */

@media (max-width: 991px) {

    .top-bar {
        justify-content: center;
    }

    .solar-menu-bar .nav-link {
        padding: 12px 15px;
    }
}

#solarCarousel {
    margin-top: -20px;
}

    #solarCarousel .carousel-caption {
        bottom: 20%;
        left: 10%;
        right: auto;
        text-align: left;
    }

        #solarCarousel .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
        }

        #solarCarousel .carousel-caption p {
            font-size: 1.2rem;
            color: #fff;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

    #solarCarousel .btn-warning {
        background: #ffcc33;
        border: none;
        font-weight: 600;
    }

        #solarCarousel .btn-warning:hover {
            background: #ffaa00;
            color: #fff;
        }

.our-project {
    background: #f4f4f9;
    position: relative;
    background: url('../images/creative-blue.png'), linear-gradient(135deg, #f4f4f9, #f4f4f9);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

    .our-project .ourprojimg {
        position: absolute;
        right: 0;
        top: 0;
        width: 120px;
        opacity: 0.8;
    }

.coverflow-container {
    perspective: 1500px;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.coverflow-track {
    display: flex;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

    .coverflow-track a {
        text-decoration: none;
    }

.coverflow-card {
    flex: 0 0 300px;
    margin: 0 20px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: #fff;
    transition: transform 0.5s, filter 0.5s;
}

    .coverflow-card img {
        width: 215px;
        height: 250px;
        object-fit: cover;
    }

    .coverflow-card .overlay {
        padding: 10px;
        text-align: center;
        font-weight: 500;
        font-size: 1rem;
        background: rgb(235 154 3);
        color: #fff;
    }

    .coverflow-card.inactive {
        filter: blur(2px);
        transform: scale(0.8) rotateY(30deg);
        opacity: 1;
    }

    .coverflow-card.active {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
        z-index: 2;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.slider-btn-left {
    left: 10px;
}

.slider-btn-right {
    right: 10px;
}

@media (max-width: 768px) {
    .coverflow-card {
        flex: 0 0 70%;
        margin: 0 10px;
    }
}








.about-solar-section {
    position: relative;
    padding: 100px 0;
    background: #f9fbff;
    overflow: hidden;
    background-image: url('../images/productbg.jpg');
}

    .about-solar-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(#f1cjsn3 1px, transparent 1px);
        background-size: 25px 25px;
        opacity: 0.15;
        z-index: 0;
    }

    .about-solar-section .container {
        position: relative;
        z-index: 1;
    }

.section-tag {
    display: inline-block;
    color: #f39c12;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .about-points li {
        margin-bottom: 10px;
        font-weight: 500;
    }

.solar-btn {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

    .solar-btn:hover {
        background: linear-gradient(135deg, #f1c40f, #f39c12);
        transform: translateY(-3px);
    }

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeLeft 1s ease forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeRight 1s ease forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
}





.why-solar-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/dashed.png'), linear-gradient(135deg, #fff7e6, #f9fbff);
    background-repeat: repeat;
    background-position: center;
    overflow: hidden;
}

    .why-solar-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(243,156,18,0.25) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.35;
        z-index: 0;
    }

    .why-solar-section .container {
        position: relative;
        z-index: 1;
    }

    .why-solar-section .why-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

        .why-solar-section .why-card:hover {
            background: linear-gradient(135deg, #fff7e6, #ffffff);
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

    .why-solar-section .why-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 32px;
        color: #fff;
        transition: transform 0.3s ease;
    }

    .why-solar-section .why-card:hover .why-icon {
        transform: scale(1.1);
    }

    .why-solar-section .bg-one {
        background: linear-gradient(135deg, #f39c12, #f1c40f);
    }

    .why-solar-section .bg-two {
        background: linear-gradient(135deg, #3498db, #5dade2);
    }

    .why-solar-section .bg-three {
        background: linear-gradient(135deg, #2ecc71, #58d68d);
    }

    .why-solar-section .bg-four {
        background: linear-gradient(135deg, #9b59b6, #af7ac5);
    }

    .why-solar-section .why-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .why-solar-section .why-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .why-solar-section .fade-up {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.9s ease forwards;
    }

    .why-solar-section .delay-1 {
        animation-delay: 0.2s;
    }

    .why-solar-section .delay-2 {
        animation-delay: 0.4s;
    }

    .why-solar-section .delay-3 {
        animation-delay: 0.6s;
    }

    .why-solar-section .delay-4 {
        animation-delay: 0.8s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.solar-counter-alt {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

    /* subtle dots pattern */
    .solar-counter-alt::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 25px 25px;
    }

    .solar-counter-alt .solarleftimg {
        position: absolute;
        left: 0;
        top: 0;
    }

    .solar-counter-alt .solarcountimg {
        position: absolute;
        right: 2px;
        width: 120px;
        bottom: 0;
        opacity: 0.2;
    }

    .solar-counter-alt .container {
        position: relative;
        z-index: 1;
    }

    /* Counter Box */
    .solar-counter-alt .counter-strip {
        background: #111827;
        border-radius: 18px;
        padding: 45px 20px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

        /* vertical color bar */
        .solar-counter-alt .counter-strip::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 6px;
            height: 100%;
        }

    .solar-counter-alt .c1::before {
        background: #facc15;
    }

    .solar-counter-alt .c2::before {
        background: #38bdf8;
    }

    .solar-counter-alt .c3::before {
        background: #4ade80;
    }

    .solar-counter-alt .c4::before {
        background: #c084fc;
    }

    .solar-counter-alt .counter-strip i {
        font-size: 36px;
        margin-bottom: 15px;
        display: inline-block;
    }

    .solar-counter-alt .counter-strip h2 {
        font-size: 46px;
        font-weight: 800;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .solar-counter-alt .counter-strip span {
        font-size: 15px;
        opacity: 0.85;
    }

    /* Hover Glow Effect */
    .solar-counter-alt .counter-strip:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 30px rgba(250,204,21,0.25);
    }









.testimonial-alt-section {
    padding: 100px 0;
    background: #f9fbff;
    position: relative;
}

    .testimonial-alt-section .testimonialimg {
        position: absolute;
        right: 2px;
        width: 120px;
        bottom: 0;
    }

    .testimonial-alt-section .testimonialleftimg {
        position: absolute;
        left: 0;
        width: 120px;
        top: 0;
        transform: rotate(180deg);
    }

    .testimonial-alt-section .testimonial-card-slider {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 65px 0 30px;
    }

        .testimonial-alt-section .testimonial-card-slider::-webkit-scrollbar {
            display: none;
        }

    .testimonial-alt-section .testimonial-card {
        width: 49%;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        flex-shrink: 0;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-top: 6px solid #f39c12;
    }

        .testimonial-alt-section .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

    /* Client Image */
    .testimonial-alt-section .card-img {
        text-align: center;
        margin-top: -45px;
    }

        .testimonial-alt-section .card-img img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 4px solid #f39c12;
            object-fit: cover;
        }

    /* Content */
    .testimonial-alt-section .card-content {
        padding: 20px;
        text-align: center;
    }

        .testimonial-alt-section .card-content h5 {
            margin-bottom: 5px;
            font-weight: 600;
        }

        .testimonial-alt-section .card-content span {
            display: block;
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }

        .testimonial-alt-section .card-content .stars {
            color: #f1c40f;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .testimonial-alt-section .card-content p {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
        }









.contact-light {
    padding: 80px 0;
    background: url('../images/preview.png'), linear-gradient(135deg, #f2ebdc, #f2ebdc);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    overflow: hidden;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}


    .contact-light .section-header h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .contact-light .section-header p {
        color: #64748b;
        font-size: 15px;
    }
.contact-lightwc {
    background: url('../images/preview.png'), linear-gradient(180deg, #ffffff, #f2ebdc);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.contact-card-light {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
    min-height: 200px;
}

    .contact-card-light:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }

    .contact-card-light .card-icon {
        font-size: 32px;
        color: #f39c12;
        margin-bottom: 12px;
    }

    .contact-card-light h5 {
        color: #0f172a;
        margin-bottom: 8px;
        font-size: 18px;
    }

    .contact-card-light p {
        font-size: 14px;
        color: #64748b;
    }

.contact-form-light {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

    .contact-form-light .form-control {
        border-radius: 6px;
        border: 1px solid #cbd5e1;
        background: #fff;
        color: #0f172a;
        padding: 12px 15px;
        margin-bottom: 15px;
    }

        .contact-form-light .form-control:focus {
            border-color: #f39c12;
            box-shadow: 0 0 8px rgba(243,156,18,0.3);
        }

.btn-light-themed {
    background: #f39c12;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
}

    .btn-light-themed:hover {
        background: #e67e22;
    }

.map-card-light {
    border-radius: 12px;
    border: 0;
    width: 100%;
    height: 470px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    background-color: #fff;
    padding: 5px;
}

@media(max-width: 992px) {
    .contact-form-light,
    .map-card-light {
        margin-bottom: 30px;
    }
}

















.footer-two-part {
    font-family: 'Poppins', sans-serif;
}

.footer-main {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #cfd8dc;
    padding: 30px 0 10px;
    position: relative;
    z-index: 1;
}

.footer-logo .logo-panel {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 60px;
    background-color: #fff;
    border-radius: 50%;
}

.logo-text h4 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.logo-text small {
    display: block;
    color: #cfd8dc;
    font-size: 12px;
}

/* Footer Description */
.footer-logo p {
    color: #cfd8dc;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Menu & Contact */
.footer-menu, .footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-menu li, .footer-contact li {
        margin-bottom: 10px;
    }

        .footer-menu li a {
            color: #cfd8dc;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-menu li a:hover {
                color: #f39c12;
            }

        .footer-contact li i {
            margin-right: 8px;
            color: #f39c12;
        }

/* Bottom Layer */
.footer-bottom {
    background: #0f172a;
    color: #cfd8dc;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom .social-icons a {
        display: inline-block;
        margin-left: 10px;
        font-size: 18px;
        color: #f39c12;
        transition: 0.3s;
    }

        .footer-bottom .social-icons a:hover {
            color: #f1c40f;
        }

/* Responsive */
@media(max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom .social-icons a {
        margin-left: 5px;
    }
}







/* ===== HERO SECTION ===== */
.about-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #f9fbff 0%, #fffbcc 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: default;
    margin-top: -20px;
}

    /* ===== SUN ===== */
    .about-hero .sun {
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        background: radial-gradient(circle at center, #ffcc33 0%, rgba(255,204,51,0) 70%);
        border-radius: 50%;
        animation: sunPulse 3s infinite alternate;
        z-index: 1;
        box-shadow: 0 0 50px 20px rgba(255,204,51,0.4);
    }

@keyframes sunPulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
        box-shadow: 0 0 40px 15px rgba(255,204,51,0.3);
    }

    100% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
        box-shadow: 0 0 70px 25px rgba(255,204,51,0.5);
    }
}

/* ===== TEXT CONTENT ===== */
.about-hero .content {
    text-align: center;
    z-index: 3;
}

    .about-hero .content h1 {
        font-size: 50px;
        font-weight: 700;
        color: #f39c12;
    }

    .about-hero .content p {
        font-size: 18px;
        margin-top: 15px;
    }

/* ===== TEXT REVEAL ===== */
.about-hero .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

    .about-hero .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .about-hero .reveal.delay {
        transition-delay: 0.3s;
    }

/* ===== UNDERLINE ===== */
.about-hero .underline {
    display: block;
    width: 0;
    height: 4px;
    background: #ffb100;
    margin: 14px auto;
    transition: width 0.8s ease;
}

    .about-hero .underline.active {
        width: 90px;
    }

/* ===== ENERGY FLOW LINES ===== */
.about-hero .flow-line {
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(to top, #ffb100, #ffcc33);
    bottom: 100px;
    animation: flow 2s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes flow {
    0% {
        height: 0;
        opacity: 0;
    }

    50% {
        height: 80px;
        opacity: 1;
    }

    100% {
        height: 0;
        opacity: 0;
    }
}

/* ===== FLOATING PARTICLES ===== */
.about-hero .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffcc33;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-40px) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translateY(-80px) scale(0.8);
        opacity: 0;
    }
}

/* ===== DOUBLE SVG WAVES ===== */
.about-hero .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: block;
    z-index: 1;
}

    .about-hero .wave path {
        fill: #f9fbff;
    }

    .about-hero .wave.wave2 {
        bottom: -30px;
        opacity: 0.6;
        fill: #f9fbff;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero {
        height: 380px;
    }

        .about-hero .content h1 {
            font-size: 36px;
        }

        .about-hero .content p {
            font-size: 16px;
        }
}








.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: #f9a825;
        font-weight: 600;
    }

    .section-title h2 {
        font-size: 36px;
        margin-top: 10px;
    }

/*.values {
    background: #f5f7fa;
}*/

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid #f9a825;
    transition: all 0.4s ease; /* Smooth animation */
    cursor: pointer;
}

    /* Hover Effects */
    .value-box:hover {
        background: #f9fbe7; /* Light yellow on hover */
        transform: translateY(-10px) scale(1.03); /* Slight lift and grow */
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Soft shadow */
        border-left-color: #fbc02d; /* Darker yellow border */
    }

    .value-box h4 {
        transition: color 0.4s ease;
    }

    .value-box:hover h4 {
        color: #f9a825; /* Highlight the heading on hover */
    }

    .value-box p {
        transition: color 0.4s ease;
    }

    .value-box:hover p {
        color: #555; /* Slight text color change */
    }





.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mv-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

    .mv-box h3 {
        margin-bottom: 10px;
        color: #fff;
    }

    .mv-box:nth-child(1) {
        background: #e3970e;
        color: #fff;
    }

    .mv-box:nth-child(2) {
        background: #17a541;
        color: #fff;
    }

    /* Optional: for more boxes */
    .mv-box:nth-child(3) {
        background: #2196f3; /* Blue */
    }

    .mv-box:nth-child(4) {
        background: #e91e63; /* Pink */
    }





.team-section {
    padding: 100px 0;
}

.team-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

    .team-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

.team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f9b000;
    margin-bottom: 20px;
}

.team-role {
    color: #f9b000;
    font-size: 0.9rem;
    letter-spacing: 1px;
}







.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

.why-icon {
    font-size: 45px;
    color: #f9b000;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}




.cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
}

    .cta a {
        background: #000;
        color: #fff;
        padding: 15px 40px;
        border-radius: 40px;
        font-weight: 700;
        text-decoration: none;
        font-size: 1.1rem;
        transition: 0.3s;
        display: inline-block;
    }

        .cta a:hover {
            background: #222;
        }




.service-card {
    background-color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .service-card i {
        transition: transform 0.3s;
    }

    .service-card:hover i {
        transform: scale(1.2) rotate(15deg);
    }

    .service-card .display-4 {
        font-size: 3.5rem !important;
    }





.project-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-card:hover .card-body {
    opacity: 1;
    visibility: visible;
}

.project-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.project-details {
    font-size: 0.875rem;
    margin-top: 10px;
    display: block;
}

.short-description {
    font-size: 0.875rem;
    color: #bbb;
}

.project-card .badge {
    font-size: 0.875rem;
}


