body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
/* =====================================
   PRELOADER LOGO
===================================== */
#loader-wrapper {
    position: fixed;
    inset: 0;
    background: #ffffff;   
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader-logo img {
    width: 180px;
    height: 140px;
    object-fit: contain;
    padding: 10px;
    background: #fff;
    border-radius: 50%;                 
    border: 4px solid #F4B000;         
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    animation: pulseLogo 1.4s infinite ease-in-out;
}
@keyframes pulseLogo {
    0% {transform: scale(1);}
    50% {transform: scale(1.08);}
    100% {transform: scale(1);}
}
#loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 768px) {
    #loader-logo img {
        width: 130px;
        height: 100px;
        padding: 10px;
    }
}
/* =====================================
    TOP BAR
===================================== */
.top-bar {
    background: #0a8f2c;
    color: #fff;
    padding: 6px 0;
    font-size: 13px;
}
.top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}
.top-icon {
    font-size: 28px;
    color: #ffb400;
    min-width: 30px;
}
.top-box small {
    font-size: 14px;
    font-weight: 600;
}
.top-box p {
    margin: 0;
    font-size: 13px;
}
.social-section {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-section a {
    width: 36px;
    height: 36px;
    font-size: 16px;
    background: #fff;
    color: #0a8f2c;
    border-radius: 50%;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-section a:hover {
    background: #ffb400;
    color: #fff;
}
/* Tablet Adjustments */
@media (max-width: 992px) {
    .top-wrapper {
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
    .social-section {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    .top-box {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}
/* =====================================
   Navigation bar
===================================== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}
.nav-logo {
    height: 60px;
    width: auto;
}
.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #333 !important;
}
.brand-text {
    font-weight: 700;
    font-size: 24px;
    color: #F4B000;
    white-space: nowrap;   
}
.nav-link:hover {
    color: #F4B000 !important;
}
.nav-link.active {
    color: #F4B000 !important;
    border-bottom: 2px solid #F4B000;
}
.btn-warning {
    background-color: #F4B000;
    border: none;
    font-weight: 600;
}
.btn-warning:hover {
    background-color: #1E8E3E;
    color: #fff;
}
@media (max-width: 768px) {
   .navbar-brand {
        display: flex;
        align-items: center;
    }
    .nav-logo {
        height: 54px;
    }
    .brand-text {
        font-size: 18px;   
    }
    .navbar-toggler {
        margin-left: auto;
    }
    .header-btn {
        width: 100% !important;
        max-width: 135px !important;
    }
}
/* =================================
   DROPDOWN MENU
================================= */
.dropdown-menu {
    border-radius: 10px;
    min-width: 230px;
    padding: 8px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-size: 15px;
    padding: 10px 18px;
    color: #333;
    transition: 0.3s;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: #F4B000;
    color: #fff;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* =========================================
HERO SLIDER SECTION
========================================= */

.hero-slider-section{
position: relative;
margin-top: 0;
}

#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item,
.hero-slide{
height: 85vh;
min-height: 450px;
}

.hero-slide{
    position:relative;
    height:85vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

/* Background Image */
.hero-bg-img{
    position:absolute;
    top:0;
    left:0;
    width:115%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* Only active slide image moves */
.carousel-item.active .hero-bg-img{
    animation:heroMove 8s linear forwards;
}

/* Alternate direction */
.carousel-item:nth-child(even).active .hero-bg-img{
    animation:heroMoveReverse 8s linear forwards;
}

@keyframes heroMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-120px);
    }

}

@keyframes heroMoveReverse{

    from{
        transform:translateX(-120px);
    }

    to{
        transform:translateX(0);
    }

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.30) 100%
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content{
position: relative;
z-index: 2;
max-width: 680px;
animation: fadeInUp 1s ease;
}

.hero-tag{
display: inline-block;
background: #F4B400;
color: #111;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.8px;
padding: 10px 18px;
border-radius: 40px;
margin-bottom: 20px;
text-transform: uppercase;
}

.hero-content h1{
font-size: 2.8rem;
font-weight: 800;
line-height: 1.15;
margin-bottom: 20px;
color: #fff;
}

.hero-content p{
font-size: 1.2rem;
line-height: 1.9;
color: rgba(255,255,255,0.92);
margin-bottom: 30px;
max-width: 620px;
}

.hero-btns{
display: flex;
flex-wrap: wrap;
gap: 15px;
}

.hero-btn-primary{
background: #F4B400;
color: #111;
font-weight: 700;
padding: 14px 28px;
border-radius: 50px;
border: none;
transition: 0.35s ease;
}

.hero-btn-primary:hover{
background: #fff;
color: #0B5E2B;
transform: translateY(-3px);
}

.hero-btn-outline{
background: transparent;
color: #fff;
font-weight: 700;
padding: 14px 28px;
border-radius: 50px;
border: 2px solid rgba(255,255,255,0.85);
transition: 0.35s ease;
}

.hero-btn-outline:hover{
background: #0B5E2B;
border-color: #0B5E2B;
color: #fff;
transform: translateY(-3px);
}

#heroSlider .carousel-indicators{
bottom: 30px;
z-index: 3;
}

#heroSlider .carousel-indicators button{
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #fff;
opacity: 0.6;
margin: 0 6px;
border: none;
}

#heroSlider .carousel-indicators .active{
background-color: #F4B400;
opacity: 1;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next{
width: 6%;
z-index: 3;
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon{
width: 3rem;
height: 3rem;
background-size: 55% 55%;
background-color: rgba(255,255,255,0.18);
border-radius: 50%;
padding: 22px;
backdrop-filter: blur(3px);
}

@keyframes fadeInUp{
from{
opacity: 0;
transform: translateY(30px);
}
to{
opacity: 1;
transform: translateY(0);
}
}
.metro-highlight{
    color: #F4B400;
    font-weight: 800;
    background: rgba(244, 180, 0, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1199px){
.hero-content h1{
font-size: 3rem;
}
}

@media (max-width: 991px){
#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item,
.hero-slide{
height: 85vh;
min-height: 520px;
}


.hero-content{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1{
    font-size: 2.5rem;
}

.hero-content p{
    font-size: 1.05rem;
    max-width: 100%;
}

.hero-btns{
    justify-content: center;
}

.hero-overlay{
    background: rgba(0,0,0,0.58);
}


}

@media (max-width: 768px){
#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item,
.hero-slide{
height: 75vh;
/* min-height: 420px; */
}
.hero-bg-img{
    width:150%;
    height:100%;
    object-fit:cover;
    animation:heroMoveMobile 8s linear forwards;
}

@keyframes heroMoveMobile{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-60px);
    }
}

.hero-content h1{
    font-size: 2rem;
}

.hero-content p{
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-tag{
    font-size: 11px;
    padding: 8px 14px;
}

.hero-btn-primary,
.hero-btn-outline{
    width: 100%;
    text-align: center;
    padding: 12px 22px;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next{
    display: none;
}

}

/* =====================================
    ABOUT SECTION
===================================== */
.about-section {
    background: #f8f9fa;
}
.section-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 700;
    color: #134f24;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    text-align: center;
}
.section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #F4B000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 5px;
}
.about-section p {
    text-align: justify;
    font-size: clamp(15px, 2.2vw, 17px);
    line-height: 1.8;
    color: #555;
}
.about-img {
    max-width: 100%;
    transition: 0.4s ease;
}
.about-img:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .about-section {
        text-align: center;
    }
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-section p {
        text-align: justify;
    }
    .about-img {
        margin-top: 30px;
    }
    .btn-warning {
        width: 100%;
        max-width: 250px;
    }
}
/* =====================================
    SERVICES SECTION
===================================== */
.services-section {
    background: #f5f6f8;
}
.section-subtitle {
    font-size: clamp(18px, 2.5vw, 18px);
    color: #333;
}
.service-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
    height:100%;
}
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.service-icon {
    font-size: 50px;
    color: #1E8E3E;
    margin-bottom: 20px;
    transition: 0.4s ease;
}
.service-card:hover .service-icon {
    color: #F4B000;
    transform: scale(1.2);
}
.service-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1E8E3E;
}
.service-card p {
    font-size: clamp(16px, 2.2vw, 16px);
    text-align: justify;
    color: #555;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
}
/* =====================================
  PROJECTS SLIDER
===================================== */
.projects-section {
    background: #f8f9fa;
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}
.project-card:hover img {
    transform: scale(1.1);
}
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: 0.4s ease;
}
.project-card:hover .project-overlay {
    transform: translateY(0);
}
.swiper-button-next,
.swiper-button-prev {
    color: #1E8E3E;
}
.swiper-pagination-bullet {
    background: #1E8E3E;
}
.swiper-pagination-bullet-active {
    background: #F4B000;
}

/* =====================================
  SOLAR ESTIMATE SECTION
===================================== */
.solar-estimate-section{
background:#f8f9fa;
}

.solar-estimate-card{
background:#fff;
border-radius:25px;
padding:60px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.estimate-badge{
display:inline-block;
background:#f4b400;
color:#000;
font-size:14px;
font-weight:600;
padding:10px 22px;
border-radius:50px;
}

.estimate-title{
color:#0B5E2B;
font-size:48px;
font-weight:700;
line-height:1.2;
margin-bottom:20px;
}

.estimate-text{
color:#555;
font-size:18px;
line-height:1.8;
margin-bottom:30px;
}

.feature-item{
font-size:18px;
color:#333;
margin-bottom:15px;
font-weight:500;
}

.bill-image{
max-width:220px;
}

.upload-btn{
background:#f4b400;
color:#000;
border:none;
padding:18px 40px;
border-radius:50px;
font-size:20px;
font-weight:600;
transition:0.3s;
}

.upload-btn:hover

.modal-content{
border:none;
border-radius:20px;
}

.modal-header{
background:#0B5E2B;
color:#fff;
}

.submit-btn{
width:100%;
background:#f4b400;
border:none;
padding:14px;
border-radius:10px;
font-weight:600;
font-size:18px;
}

@media(max-width:768px){
.solar-estimate-card{
    padding:30px;
}
.estimate-title{
    font-size:34px;
}
.bill-image{
    max-width:150px;
    margin-top:30px;
}
.upload-btn{
    width:100%;
}
}

/* =========================================
   MODAL
========================================= */

.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.modal-header{
    background:#22c55e;
    color:#fff;
}

.modal-title{
    font-weight:600;
}

.form-control{
    padding:12px;
    border-radius:10px;
}

.submit-btn{
    background:#22c55e;
    color:#fff;
    border:none;
    padding:14px;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
}

.submit-btn:hover{
    background:#16a34a;
    color:#fff;
}

/* Responsive */

@media(max-width:768px){

    .estimate-title{
        font-size:30px;
    }

    .estimate-btn{
        width:100%;
    }

}

/* =========================================
   SOLAR ESTIMATION CALCULATOR SECTION
========================================= */
.solar-calculator-section{
    background:#f8f9fa;
}

.calculator-card{
    background:#fff;
    border-radius:24px;
    padding:35px 30px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    border:1px solid #edf0f2;
    height:100%;
}

.calc-card-title{
    font-size:2rem;
    font-weight:700;
    color:#0B5E2B;
    margin-bottom:28px;
}

.calc-input{
    height:54px;
    border-radius:14px;
    border:1px solid #dfe3e8;
    padding:12px 16px;
    font-size:1rem;
    box-shadow:none !important;
}

.calc-input:focus{
    border-color:#0B5E2B;
}

.form-label{
    font-weight:600;
    color:#333;
    margin-bottom:10px;
}

.form-range{
    accent-color:#0B5E2B;
    height:8px;
}

.calc-btn{
    background:#0B5E2B;
    color:#fff;
    border:none;
    padding:15px 25px;
    border-radius:14px;
    font-size:1.05rem;
    font-weight:700;
    transition:0.3s ease;
}

.calc-btn:hover{
    background:#F4B400;
    color:#111;
}

.calc-note{
    display:flex;
    align-items:flex-start;
    gap:10px;
    background:#f8fbf8;
    border:1px solid #e3efe5;
    padding:15px;
    border-radius:14px;
    font-size:0.95rem;
    color:#555;
    line-height:1.7;
}

.calc-note i{
    color:#F4B400;
    font-size:1.1rem;
    margin-top:2px;
}

/* Result card */
.result-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.result-badge{
    display:inline-block;
    background:rgba(244,180,0,0.14);
    color:#0B5E2B;
    padding:8px 16px;
    border-radius:30px;
    font-size:0.9rem;
    font-weight:700;
}

.result-list{
    display:flex;
    flex-direction:column;
    gap:0;
    margin-bottom:25px;
}

.result-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.result-item:last-child{
    border-bottom:none;
}

.result-item span{
    color:#444;
    font-size:1.05rem;
    font-weight:500;
}

.result-item strong{
    color:#0B5E2B;
    font-size:1.1rem;
    font-weight:700;
    text-align:right;
}

.result-footer{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #ececec;
}

.result-footer p{
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

.result-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.result-btn-primary{
    background:#F4B400;
    color:#111;
    border:none;
    font-weight:700;
    padding:12px 22px;
    border-radius:50px;
    transition:0.3s ease;
}

.result-btn-primary:hover{
    background:#0B5E2B;
    color:#fff;
}

.result-btn-outline{
    background:transparent;
    color:#0B5E2B;
    border:2px solid #0B5E2B;
    font-weight:700;
    padding:12px 22px;
    border-radius:50px;
    transition:0.3s ease;
}

.result-btn-outline:hover{
    background:#0B5E2B;
    color:#fff;
}

/* Responsive */
@media(max-width:991px){
    .calc-card-title{
        font-size:1.7rem;
    }

    .calculator-card{
        padding:28px 22px;
    }
}

@media(max-width:767px){
    .calc-card-title{
        font-size:1.45rem;
    }

    .result-item{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .result-item strong{
        text-align:left;
    }

    .result-btns{
        flex-direction:column;
    }

    .result-btn-primary,
    .result-btn-outline{
        width:100%;
        text-align:center;
    }
}

/* =====================================
   WHY CHOOSE US
===================================== */
.why-section {
    background: #f5f6f8;
}
.why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.why-icon {
    font-size: 50px;
    color: #1E8E3E;
    margin-bottom: 20px;
    transition: 0.4s ease;
}
.why-card:hover .why-icon {
    color: #F4B000;
    transform: scale(1.2);
}
.why-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1E8E3E;
}
.why-card p {
    font-size: clamp(16px, 2.2vw, 16px);
    text-align: justify;
    color: #555;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .why-card {
        padding: 30px 20px;
    }
}
/* =====================================
  Our Strength
===================================== */
.stats-section {
    position: relative;
    background: url('../images/Agastya.jpg') right center/cover no-repeat;
    padding: 80px 0;
    overflow: hidden;
}
.stats-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    z-index: 1;
}
.stats-section .container {
    position: relative;
    z-index: 2;
}
.stats-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.stats-icon {
    font-size: 45px;
    color: #234b87;   
    min-width: 60px;
}
.stats-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: #000;
}
.stats-card p {
    margin: 0;
    font-size: 16px;
    color: #444;
}
@media (max-width: 992px) {
    .stats-section::after {
        display: none;
    }
}
@media (max-width: 768px) {
    .stats-card {
        flex-direction: column;
        text-align: center;
        padding: 1px 10px;
        gap: 5px;
    }
    .stats-card p {
        margin: 5px 0;
    }
}
/* =====================================
PARTNERS SECTION
===================================== */

.partners-section{
background:#f8f9fa;
}

.partner-card{
background:#fff;
 padding:15px 10px;
border-radius:25px;
border:2px solid #e9ecef;
box-shadow:0 10px 25px rgba(0,0,0,.06);
text-align:center;
transition:all .4s ease;
position:relative;
overflow:hidden;
height:100%;
animation:floatCard 4s ease-in-out infinite;
}

.partner-card::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.6),
transparent
);
transition:.8s;
}

.partner-card:hover::before{
left:100%;
}

.partner-card:hover{
transform:translateY(-10px);
border-color:#F4B400;
box-shadow:0 20px 40px rgba(11,94,43,.15);
}

.partner-card img{
max-width:100%;
height:75px;
object-fit:contain;
transition:.4s;
}

.partner-card:hover img{
transform:scale(1.1);
}

.partner-card p{
margin-top:15px;
margin-bottom:0;
font-weight:600;
color:#0B5E2B;
font-size:16px;
}

.partner-card small{
color:#666;
display:block;
margin-top:5px;
}

@keyframes floatCard{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-5px);
}
100%{
transform:translateY(0);
}
}

@media(max-width:768px){
.partner-card{
    padding:15px;
}

.partner-card img{
    height:55px;
}

.partner-card p{
    font-size:14px;
}

}

/* =====================================
  TESTIMONIAL SECTION 
===================================== */
.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: left;
    transition: 0.3s ease;
    height: 100%;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.google-logo {
    width: 30px;
    margin-left: auto;
}
.review-header h6 {
    margin: 0;
    font-weight: 600;
}
.review-header span {
    font-size: clamp(16px, 2.1vw, 16px);
    color: #666;
}
.stars {
    color: #F4B000;
    margin: 8px 0;
}
.review-card p {
    font-size: clamp(16px, 2.2vw, 16px);
    color: #555;
    line-height: 1.6;
}
/* =====================================
   FOOTER CALL TO ACTION
===================================== */
.cta-section {
    background: linear-gradient(135deg, #134f24, #1E8E3E, #F4B000);
    padding: 60px 0;
}
/* =====================================
   FOOTER
===================================== */
.custom-footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.custom-footer h4,
.custom-footer h5 {
    color: #F4B000; 
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-about {
    line-height: 1.7;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #F4B000;
    padding-left: 5px;
}
.footer-line {
    border-color: rgba(255, 255, 255, 0.29);
}
.custom-footer a {
    /* color: white; */
    text-decoration: none;
}
.custom-footer a:hover {
    text-decoration: underline;
}
.contact-info i {
    color: #F4B000;  
    font-size: 18px;
}
.contact-info a {
    color: #ffffff;
    text-decoration: none;
}
.contact-info a:hover {
    color: #F4B000;
}
/* ===== Footer Social Icons ===== */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s ease;
}
.footer-social a:hover {
    background: #F4B000; 
    color: #000;
    transform: translateY(-5px);
}
.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.footer-icon {
    color: #F4B000;  
    font-size: 15px;
    transition: 0.3s;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links li:hover .footer-icon {
    transform: translateX(4px);
}
.footer-links a:hover {
    color: #F4B000;
}
/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}
.whatsapp {
    background: #25D366;
}
.top-btn {
    background: #F4B000;
}
.float-btn:hover {
    transform: scale(1.1);
}
.footer-btn {
    width: 100%;
    max-width: 200px;
}
@media (max-width: 768px) {
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .footer-btn {
        width: 100%;
        max-width: 130px;
        display: inline-block;
    }  
    .footer-about {
        text-align: justify;
    }
}
