body{
    scroll-behavior: smooth;
}
/* =========================================================
   ABOUT BANNER
========================================================= */

.about-banner {
    position: relative;
    width: 100%;
    height: 470px;

    margin: 0;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            rgb(0, 65, 0) 0%,
            rgb(0, 82, 0) 45%,
            rgb(55, 150, 0) 100%
        );
}


/* =========================================================
   SUBTLE BACKGROUND
========================================================= */

.about-banner::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.12),
            transparent 55%
        );

    z-index: 1;
}


/* =========================================================
   BIG CIRCLES
========================================================= */

.about-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 2;
}


/* BIG OUTER CIRCLE */

.about-circle-1 {
    width: 620px;
    height: 620px;

    right: -190px;
    top: -85px;

    border: 2px solid rgba(255, 255, 255, 0.38);

    box-shadow:
        0 0 0 28px rgba(255, 255, 255, 0.035),
        0 0 0 60px rgba(255, 255, 255, 0.025);

    animation: aboutCircleRotate 18s linear infinite;
}


/* MIDDLE CIRCLE */

.about-circle-2 {
    width: 460px;
    height: 460px;

    right: -105px;
    top: -5px;

    border: 2px solid rgba(184, 237, 112, 0.75);

    box-shadow:
        0 0 25px rgba(184, 237, 112, 0.15);

    animation: aboutCircleRotateReverse 14s linear infinite;
}


/* INNER CIRCLE */

.about-circle-3 {
    width: 300px;
    height: 300px;

    right: -25px;
    top: 75px;

    border: 3px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        inset 0 0 35px rgba(184, 237, 112, 0.1),
        0 0 35px rgba(184, 237, 112, 0.12);

    animation: aboutCirclePulse 4s ease-in-out infinite;
}


/* =========================================================
   GLOW
========================================================= */

.about-light-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    right: 120px;
    top: 85px;

    border-radius: 50%;

    background: rgba(184, 237, 112, 0.13);

    filter: blur(45px);

    z-index: 1;

    animation: aboutGlowPulse 4s ease-in-out infinite;
}


/* =========================================================
   CONTENT
========================================================= */

.about-banner-content {
    position: relative;

    z-index: 10;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 40px 35px;

    color: #ffffff;
}


/* =========================================================
   SMALL COMPANY TITLE
========================================================= */

.about-small-title {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 9px 17px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-small-title i {
    color: #b8ed70;

    font-size: 15px;
}


/* =========================================================
   HEADING
========================================================= */

.about-banner-content h1 {
    margin: 22px 0 0;

    font-size: clamp(55px, 7vw, 88px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -3px;

    color: #ffffff;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   GREEN LINE
========================================================= */

.about-banner-line {
    width: 75px;
    height: 4px;

    margin-top: 25px;

    border-radius: 10px;

    background: #b8ed70;

    box-shadow:
        0 0 15px rgba(184, 237, 112, 0.7);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.about-banner-content p {
    max-width: 500px;

    margin: 20px 0 0;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.about-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 27px;

    font-size: 14px;

    font-weight: 600;
}

.about-breadcrumb a {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}

.about-breadcrumb a:hover {
    color: #b8ed70;
}

.about-breadcrumb > i {
    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

.about-breadcrumb span {
    color: #b8ed70;
}


/* =========================================================
   CIRCLE ANIMATIONS
========================================================= */

@keyframes aboutCircleRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes aboutCircleRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


@keyframes aboutCirclePulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.75;
    }

    50% {
        transform: scale(1.06);

        opacity: 1;
    }

}


@keyframes aboutGlowPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.65;
    }

    50% {
        transform: scale(1.15);

        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-banner {
        height: 430px;
    }

    .about-banner-content {
        padding-left: 30px;
    }

    .about-circle-1 {
        width: 500px;
        height: 500px;

        right: -180px;
        top: -50px;
    }

    .about-circle-2 {
        width: 370px;
        height: 370px;

        right: -100px;
        top: 15px;
    }

    .about-circle-3 {
        width: 250px;
        height: 250px;

        right: -35px;
        top: 75px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .about-banner {
        height: 390px;
    }

    .about-banner-content {
        padding: 30px 22px;
    }

    .about-small-title {
        font-size: 10px;

        letter-spacing: 1.3px;

        padding: 8px 13px;
    }

    .about-banner-content h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .about-banner-content p {
        max-width: 340px;

        font-size: 14px;
    }

    .about-circle-1 {
        width: 390px;
        height: 390px;

        right: -220px;
        top: -30px;
    }

    .about-circle-2 {
        width: 300px;
        height: 300px;

        right: -165px;
        top: 25px;
    }

    .about-circle-3 {
        width: 220px;
        height: 220px;

        right: -120px;
        top: 65px;
    }

    .about-light-glow {
        width: 220px;
        height: 220px;

        right: -20px;
        top: 90px;
    }

}

.about-banner {
    background-image: url("https://i.pinimg.com/736x/6d/d9/81/6dd981bd9408b8be772f5c6b31d05ba3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 600px;
position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.about-banner h1 {
    /* position: absolute; */
    color: white;
    /* font-size: 40px; */
    /* background: rgba(0, 0, 0, 0.5); */
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 10px 20px;
    border-radius: 5px;
}

.about-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: white;
}
.about-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}




.highlight-why{
    display: flex;
    flex-direction: column;
    align-items: center;
      /* backdrop-filter: blur(6px); */
    background-color: #267712a1;
      backdrop-filter: blur(46px);
      color: white;
      box-shadow: 0px 5px 10px 10px rgba(0, 0, 0, 0.336);
        transition: all 0.35s ease-in-out;
        /* grid-area: 20px !important; */
        grid-auto-columns: auto;


}

@keyframes blink {
  0%   { opacity: 1; }
  1%  { opacity: 0; }
  100% { opacity: 1; }
}

.highlight-why:hover{

transform: translateY(-10px);  
  /* background-color: #267712a1;
      backdrop-filter: blur(46px);
      color: white;
      box-shadow: 0px 5px 10px 10px rgba(0, 0, 0, 0.336); */
/* transition: all 0.8s; */
}


#h2top{
    font-weight: bolder;
    font-display: block;
    line-height: 1.8;
    letter-spacing: 3px;
    text-align: center;
    /* color: #22790d; */
}

.col-lg-4{
    height: 350px;
}

.ser-img{
    margin-bottom: 20px;
    border-radius: 50px;
    width: 120px;
    height: 120px;
}



/* card css */


.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    /* background: linear-gradient(135deg, #3700ff, #388048, #0080a3); */
    z-index: -1;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.img-box {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    margin-bottom: 20px;
}

.ser-img {
    max-height: 160px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .ser-img {
    transform: rotate(-3deg) scale(1.1);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.content h5 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #111;
    position: relative;
}

.content h5::after {
    content: "";
    width: 0%;
    height: 3px;
    /* background: linear-gradient(90deg, #28a745, #00c6ff); */
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease;
}

.service-card:hover h5::after {
    width: 60%;
}

.content p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,198,255,0.08) 10%, transparent 10%);
    background-size: 20px 20px;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::after {
    opacity: 1;
}

.system-design{
    background:
     /* linear-gradient(rgba(0, 0, 0, 0.288),rgba(255, 255, 255, 0.363)), */
    url("https://myoptimalenergy.com/wp-content/uploads/2024/10/Solar-Installer.png");
    background-repeat: no-repeat;
    height: 800px;
    width: 100%;
    background-attachment:local;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bi-lightbulb{
    margin-right: 10px;
}

.about-h1{
    /* font-size: 8vw;
    text-align: center; */
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    
}

/* .aboutP{ */
p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.7;
    justify-content: flex-start;
    text-align: justify;
    text-justify: inter-word;
}

.h2top{
    font-weight: bolder;
    font-display: block;
    line-height: 1.8;
    letter-spacing: 3px;
}
/* .about-icon-main{
    border: 2px solid red;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
} */
.about-icons{
   backdrop-filter: blur(6px); 
    color: #267712a1;
    font-size: 60px;
}
@media (max-width: 768px) {
.about-h1{
font-size: 2rem;
letter-spacing: 5px;
}
}
