/********** Template CSS **********/
:root {
    --primary: #702e8e;
    --light: #F6F7F8;
    --dark: #2a0d3c;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,.btn-toggle,.btn-toggle.collapsed,.btn-toggle,
.close-sidebar-btn
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    display: flex;
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: flex;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/../img/gleesolar.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

h1-1 {
            text-align: left;
}

/*** Offcanvas Sidebar Toggle ***/

.offcanvas {
      background-color: #702e8e; /* Purple background */
    }
    .offcanvas-header {
      border-bottom: 1px solid #fff;
    }
    .offcanvas .btn-close {
      background-color: #fff; /* White button */
      border: none;
    }
    .offcanvas .btn-close:hover {
      background-color: #683a97;
    }
    .form-control, .form-select {
      background-color: white;
      color: black;
    }

.custom-spacing {
    margin-left: 15px; /* Adjust as needed */
  }

.form-container .recaptcha {
            margin: 10px 0;
}

/*** Calculator ***/

body {
            font-family: "nunito",sans-serif;
            margin: center;
            padding: 3px;
            background-color: #f4f4f4;
	  		border: #5A257C
}
       
h1 {
            text-align: center;
}

.input-section {
            text-align: center;
            margin-bottom: 20px;
}

.input-section input {
            width: 300px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #702e8e;
            border-radius: 5px;
            text-align: center;
}

.calculate-button {
            margin-top: 15px;
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #702e8e;
            border: none;
            border-radius: 5px;
            cursor: pointer;
}

.calculate-button:hover {
            background-color: #7e3092;
}

.results {
            display: flex;
            justify-content: space-between;
            gap: 10px;
}

.result-box {
            flex: 1;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 20px;
            background-color: #f9f9f9;
            text-align: left;
}

.result-box h3 {
            color: #333;
            margin-bottom: 15px;
}

.result-box .field {
            margin-bottom: 10px;
}

.result-box .field label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
}

.result-box .field input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            text-align: left;
            background: #fff;
}

body {
            font-family: "nunito",sans-serif;
            margin: center;
            padding: 3px;
            background-color: #f4f4f4;
}
       
h1 {
            text-align: center;
}

.input-section {
            text-align: center;
            margin-bottom: 20px;
}

.input-section input {
            width: 300px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #702e8e;
            border-radius: 5px;
            text-align: center;
}

.calculate-button {
            margin-top: 15px;
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #702e8e;
            border: none;
            border-radius: 5px;
            cursor: pointer;
}

.calculate-button:hover {
            background-color: #7e3092;
}

.results {
            display: flex;
            justify-content: space-between;
            gap: 10px;
}

.result-box {
            flex: 1;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 20px;
            background-color: #f9f9f9;
            text-align: left;
}

.result-box h3 {
            color: #333;
            margin-bottom: 15px;
}

.result-box .field {
            margin-bottom: 10px;
}

.result-box .field label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
}

.result-box .field input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            text-align: left;
            background: #fff;
}

.image-section {
            margin-top: 20px;
            text-align: center;
}

/*** Messenger ***/

/* Notification Container */
        .messenger-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border: 2px solid #702e8e;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            animation: bounceIn 1.5s ease-out;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        .messenger-notification:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(0, 132, 255, 0.5);
        }

        /* Red Badge */
        .notification-badge {
            position: absolute;
            top: -10px;
            left: -10px;
            background-color: mediumpurple;
            color: white;
            font-weight: bold;
            font-size: 12px;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            line-height: 24px;
            text-align: center;
        }

        /* Message Box */
        .message-box {
            padding: 15px;
        }

        .message-box p {
            margin: 0;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
        }

        .message-box p i {
            margin-right: 5px;
            color: #683a97;
        }

        /* Button */
        .btn-messenger {
            background-color: #683a97;
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            padding: 8px 16px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-messenger:hover {
            background-color: #702e8e;
            transform: scale(1.05);
        }

        /* Animation */
        @keyframes bounceIn {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            70% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(1);
            }
        }

/*** Service ***/

.service-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/../img/../img/../img/../img/../img/nav/aboutus_1.png) center center no-repeat;
    background-size: cover;
}

.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Product Distribution ***/
@media (min-width: 1000px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.page-feature {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-size: cover;
}

.page-partners {
    background: #fffff; /* Replace with your desired color */
    background-size: cover;
	border: 1px solid #000; /* Black border, 5px wide */
}

.page-clients {
    background: #fffff; /* Replace with your desired color */
    background-size: cover;
	border: 1px ridge #000; /* Black border, 5px wide */
}

.card {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
        }
        .icon-container {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #702e8e, #702e8e);
            border-radius: 50%;
            color: white;
            font-size: 28px;
        }
        .highlight-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #702e8e;
        }
        .highlight-title {
            font-size: 1rem;
            color: #555;
        }

/*** Project Portfolio ***/

.project-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/../img/../img/nav/aboutus_1.png) center center no-repeat;
    background-size: cover;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display:block;
}

.portfolio-img::before,
.portfolio-img::after {
    position: relative;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
.quote-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/../img/../img/nav/quote.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*** Quote Form ***/
 body {
            font-family: "nunito",sans-serif;
            background-color: #f9f9f9;
            margin: 20px;
        }
        form {
            max-width: 1000px;
            margin: auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        input, select, textarea, button {
            width: 100%;
            margin-bottom: 15px;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        select {
            background: no-repeat right 10px center;
            background-color: #fff;
            background-size: 12px;
            cursor: pointer;
        }
        input:focus, select:focus, textarea:focus {
            border-color: #702e8e;
            outline: none;
        }
        button {
            background-color: #702e8e;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            border: none;
}

 button:hover {
            background-color: #683a97;
}

/*** Partners and Clients ***/
.partner-logo {
      max-width: 100%;
      height: auto;
      filter: rgb(100%);
      transition: filter 0.3s;
    }
    .partner-logo:hover {
      filter: grayscale(0%);
    }

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/../img/nav/aboutus_1.png) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
.contact-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url('../img/../img/../img/../img/nav/aboutus_1.png') center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

 .contact-info {
            margin-bottom: 20px;
        }

.contact-info h2 {
            margin-bottom: 10px;
        }

.contact-info p {
            margin: 5px 0;
        }

.map {
            border: 2px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }

	iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

/*** Video Play ***/
.video-thumbnail {
            position: relative;
            cursor: pointer;
            max-width: 100%;
        }

.video-thumbnail img {
            width: 100%;
            border-radius: 10px;
        }

.video-thumbnail .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            color: white;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 50%;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

.video-thumbnail:hover .play-icon {
            transform: translate(-50%, -50%) scale(1.1);
            background-color: rgba(0, 0, 0, 0.8);
        }

#videoContainer {
            display: none;
            margin-top: 10px;
        }

/*** Mission & Vision ***/
.mission-vision {
      padding: 60px 20px;
      background-color: #f8f9fa;
}

.section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      color: #2a0d3c;
}

.card {
      border: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
      transform: translateY(-10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.icon-box {
      font-size: 3rem;
      color: #683a97;
      margin-bottom: 15px;
}

/*** About Us ***/
.about-us {
      padding: 60px 20px;
      background-color: #f8f9fa;
}

.about-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      color: #702e8e;
}

.about-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #2a0d3c;
}

.about-image img {
      width: 100%;
      height: auto;
      border-radius: 15px;
    }
.about-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/../img/../img/../img/nav/aboutus_1.png) center center no-repeat;
    background-size: cover;
}

/*** Product Carousel ***/
.carousel-item img {
            height: 150px;
            object-fit: contain;
            margin: 0 auto;
        }
        .carousel {
            background-color: #ffff; /* Light green background */
            padding: 20px;
        }

/** Media Feature ***/
.circle-image {
      border-radius: 50%;
      object-fit: cover;
      width: 100%;
      aspect-ratio: 1 / 1;
    }
    .rect-image {
      width: 100%;
      height: auto;
    }


/*** Terms & Condition ***/
 body {
            font-family: "nunito", sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
}

			header, footer {
            background-color: #683a97;
            color: white;
            text-align: center;
            padding: 10px 0;
}

main {
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
}

h1 {
            color: #2a0d3c;
}

h2 {
            color: #2a0d3c;
}

p {
            margin: 10px 0;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #7e3092;
    border: 1px solid #683a97;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7e3092;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

