:root {
    --primary-green: #128241;
    --secondary-green: #20db6e;
    --dark-green: #023718;
    --light-green: #a6ff99;
    --dark-text: #011d0d;
    --light-text: #ffffff;
    --text-primary: #353736;
    --light-gray: #989898;
    --gray: #888888;
    --bg-gray: #f8f8f8;
    --medium-gray: #b9b9b9;
    --bg-dark: #1e2f51;
    --gray-cart: #c1c4c6;
    --light-creme: #f6f6f6;
    --bg-light-creme: #ecf5f0;
    --offWhite: #f1f1f1;
}
.section_Title {
    color: var(--secondary-green);
}
.text_green {
    color: var(--primary-green);
    font-family: inter;
}
.bg_green {
    background-color: var(--primary-green);
}

.dark-green {
    color: var(--dark-green);
}
.bg-gray {
    background-color: var(--bg-gray);
    color: #000;
}
@font-face {
    font-family: "Lufga SemiBold";
    font-style: normal;
    font-weight: normal;
    src: local("Lufga SemiBold"), url("fonts/LufgaSemiBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga Regular";
    font-style: normal;
    font-weight: normal;
    src: local("Lufga Regular"), url("fonts/LufgaRegular.woff") format("woff");
}
@font-face {
    font-family: "Lufga Medium";
    font-style: normal;
    font-weight: normal;
    src: local("Lufga Medium"), url("fonts/LufgaMedium.woff") format("woff");
}

@font-face {
    font-family: "Lufga SemiMedium";
    font-style: normal;
    font-weight: normal;
    src: local("Lufga Medium"), url("fonts/LufgaMedium.woff") format("woff");
}
html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--dark-text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.navbar {
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar-collapse {
    flex-grow: inherit;
}

.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand img {
    height: auto;
    max-width: 75px;
}

.navbar-nav .nav-link {
    color: #000;
    margin: 0 5px;
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 400;
    padding: 0.2rem;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-green);
    text-decoration: none;
}

.navbar-nav .nav-link.active {
    color: var(--secondary-green);
}

.float-center {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.btn,
.btn:hover {
    text-decoration: none;
}
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-header {
    padding: 5.5px 25px 5.5px 25px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.1;
}

span.btn-small-text {
    display: block;
    text-align: left;
    font-size: 9px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

/* Video Header Styles */
.video-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.youtube-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.youtube-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* clients logo CSS */
.client-logos-section {
    padding: 60px 0;
    overflow: hidden;
}

.client-logo {
    padding: 0 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    margin: 0 auto;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/** hero section **/

.hero-section {
    padding: 100px 0;
}

.section-title {
    font-family: "Lufga SemiBold";
    color: var(--primary-green);
    margin-bottom: 30px;
    position: relative;
    font-size: clamp(34px, calc(2.125rem + ((1vw - 7.68px) * 3.2118)), 71px);
}

.section-subtitle {
    color: #011d0d;
    font-size: 24px;
    font-weight: 600;
}
@media (min-width: 425px) {
    .lead {
        font-size: calc(1rem + ((1vw - 0.01px) * 0.4169));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .lead {
        font-size: 24px;
    }
}
.lead {
    font-family: "inter";
    color: #1d1d1d;
}
.GapS-title {
    color: var(--primary-green);
    font-weight: 600;
    font-family: inter;
}
@media (min-width: 300px) {
    .GapS-title {
        font-size: calc(1.625rem + ((1vw - 3px) * 0.3704));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .GapS-title {
        font-size: 32px;
    }
}
.title {
    color: var(--primary-green);
    font-size: clamp(16px, calc(1rem + ((1vw - 7.68px) * 1.3889)), 32px);
    font-weight: 600;
}

.stats-box {
    background-color: var(--light-text);
    margin-bottom: 50px;
    font-family: "Lufga SemiBold";
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-stats {
    margin-bottom: 20px;
    margin-left: 30px;
    font-family: inter;
}
.stats-box:hover {
    transform: translateY(-5px);
}

.stats-box h5 {
    color: var(--dark-green);

    font-family: "Lufga SemiBold";
    font-size: clamp(16px, calc(1rem + ((1vw - 7.68px) * 1.3889)), 30px);
    border-left: 1px solid var(--primary-green);
    line-height: 1;
    padding-left: 30px;
}

.stats-box p {
    color: var(--dark-text);
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    background-image: url("https://img.youtube.com/vi/unfXxAvK92U/maxresdefault.jpg");
    border-radius: 10px;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--light-text);
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    background-color: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 839px;
    height: 460px;
    border: none;
    display: none;
    border-radius: 10px;
}

.video-loaded .video-iframe {
    display: block;
    position: relative;
}

.video-loaded .video-placeholder {
    display: none;
}

.stats-bottom-content {
    padding-top: 30px;
    padding-top: 30px;
}

.stats-bottom-content p {
    font-family: "Lufga Regular";
    font-size: 20px;
}

/*** award section styles ***/

.awards-container {
    display: flex;
    position: relative;
    width: 100%;
}
#awards {
    position: relative;
    transition: cursor 0.2s ease;
}
/* Smooth transitions for scrollable panels */
#left-scrollable,
#right-scrollable {
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.side-panel {
    flex: 2;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.scrollable-content {
    height: calc(750 - 60px);
    overflow-y: hidden;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.award-header {
    top: 80px; /* Positioned below the header */
    z-index: 10;
    /*padding-top: 2rem;
	 padding-bottom: 2rem;	*/
    padding-bottom: 0;
}
.scrollable-content {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    position: absolute;
    width: 100%;
    transition: transform 0.3s ease;
    padding-top: 10px; /* Add padding to prevent cutoff at top */
    padding-bottom: 10px; /* Add padding to prevent cutoff at bottom */
}

.award-card {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--light-text);
}

.award-card img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
    max-height: 80px;
    object-fit: contain;
}

.award-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.award-subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.award-description {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.center-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    max-height: 750px;
}

.trophy-container {
    position: relative;
    width: 194px;
    height: 440px;
}

.trophy {
    width: 100%;
    height: 80%;
    /* height: 100%; */
    background-image: url("../img/golden-star-award-trophy.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: trophy-glow 1s infinite alternate;
}

@keyframes trophy-glow {
    0% {
        filter: drop-shadow(0 0 5px gold);
    }
    100% {
        filter: drop-shadow(0 0 20px gold);
    }
}

.nav-buttons {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--light-text);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: var(--primary-green);
}

.nav-button.up {
    border: 2px solid var(--primary-green);
    background-color: var(--light-text);
    color: var(--primary-green);
}

.nav-button.up:hover {
    background-color: #f0f0f0;
}

/*** section skwed ***/

.section-skewed {
    position: relative;
    overflow: hidden;
    clear: both;
}
.skewed_img {
    margin-bottom: -2px;
}
.full-container {
    background: var(--primary-green);
    padding-bottom: 20px;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.stacked-cards {
    position: relative;
    padding: 20px;
}

.stacked-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
}

.stacked-image img {
    width: 100%;
    height: auto;
    display: block;
}
.btn-custom {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px 11px 23.8px;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.btn-custom > svg {
    margin-top: -1.5px;
}
.btn-custom:hover {
    background: #fff;
    color: var(--primary-green);
}

.border-green {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}
.border-green:hover {
    border: 1px solid var(--primary-green);
    color: #fff;
    background-color: var(--primary-green);
}

.section-skewed .subtitle {
    font-size: 14px;
    font-family: "Lufga SemiBold";
    text-transform: capitalize;
    opacity: 0.7;
    margin-bottom: 10px;
    color: #a6ff99;
}
.section-skewed .title {
    font-family: "Lufga SemiBold";
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}
.section-skewed .description {
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

.green-bg-section {
    background-color: var(--primary-green);
    color: var(--light-text);
    padding: 60px 0;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 30px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Products Section - 100vh Container */
#products {
    position: relative !important;
    height: 100vh !important;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: white;
    /* Remove default padding */
    padding: 0 !important;
    margin: 0;
}

/* Products Header - Always Visible at Top */
#products .products-header {
    position: relative;
    z-index: 1000;
    background: white;
    padding: 40px 0 20px 0;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#products .products-header .section-title {
    font-family: "Lufga SemiBold";
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: clamp(24px, calc(1.5rem + ((1vw - 7.68px) * 1.2)), 42px);
}

#products .products-header .section-subtitle {
    color: #011d0d;
    font-size: clamp(16px, calc(1rem + ((1vw - 7.68px) * 0.5)), 24px);
    font-weight: 400;
    margin-bottom: 20px;
}

/* Mobile Navigation Buttons */
#products .mobile-nav-buttons {
    padding: 10px 0 0 0;
}

#products .mobile-nav-buttons .btn-responsive a {
    font-size: 14px;
    padding: 8px 16px;
    margin: 0 4px;
    transition: all 0.3s ease;
    border-radius: 25px;
}

#products .mobile-nav-buttons .btn-Product-active {
    background: var(--primary-green) !important;
    color: white !important;
    border-color: var(--primary-green) !important;
}

#products .mobile-nav-buttons .btn-outline-primary {
    color: var(--gray);
    border-color: var(--gray);
}

#products .mobile-nav-buttons .btn-outline-primary:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Products Sliding Area - Middle Section */
#products .products-sliding-area {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: #fff;
    min-height: 0; /* Important for flex child */
}

/* Individual Product Areas */
#products .productArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 30px 20px;
    box-sizing: border-box;
    padding-top: 0px;

    /* Animation properties */
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;

    /* Initial state */
    transform: translateY(100%);
    opacity: 0;
}

/* First product visible initially */
#products .productArea:first-child {
    transform: translateY(0);
    opacity: 1;
}

/* Product content layout */
#products .productArea .row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

#products .productArea .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* height: 100%; */
    padding: 20px;
    align-items: start;
    padding-top: 0px !important;
}
.second-column {
    align-items: center !important;
    aspect-ratio: 1;
}
/* Product titles */
#products .productArea h3 {
    color: var(--primary-green);
    font-family: "Lufga SemiBold";
    font-size: clamp(20px, calc(1.25rem + ((1vw - 7.68px) * 0.8)), 32px);
    margin-bottom: 20px;
}

/* Product descriptions */
#products .productArea p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* Product images */
#products .productArea img {
    max-width: 60%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Remove scale transform to avoid scroll animation interruption */
#products .productArea {
    transform: scale(0.92) !important;
    transition: none;
}

#WallGraph .second-column img {
    margin-top: 35px;
}

#AirPureGateway .second-column img {
    max-width: 45%;
    margin-top: 40px;
}

.main-feature .squire-icon {
    background-color: var(--primary-green);

    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 3px;
    flex-shrink: 0;
    display: inline-block;
}

.optional-feature .squire-icon {
    background-color: var(--bg-dark);

    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 3px;
    flex-shrink: 0;
    display: inline-block;
}
@media (max-width: 991px) {
    #products .productArea {
        /* transform: scale(0.85); */
    }
    #products .productArea img {
        max-width: 90%;
        max-height: 180px;
    }
}

@media (max-width: 600px) {
    #products .productArea {
        /* transform: scale(0.75); */
    }
    #products .productArea img {
        max-width: 100%;
        max-height: 120px;
    }
}
#products .products-btn-area {
    align-items: start !important;
}
.enhanced-sticky-footer {
    padding: 0px 0 60px 0 !important;
}
#products .products-btn-area .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Product features */
#products .products-features-info {
    margin-top: 0px;
    padding-bottom: 0px !important;
}

#products .feature {
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

#products .squire-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 3px;
    flex-shrink: 0;
}

#products .main-feature .squire-icon {
    background-color: var(--primary-green);
}

#products .optional-feature .squire-icon {
    background-color: var(--bg-dark);
}

/* Products Footer - Always Visible at Bottom */
#products .products-footer {
    position: relative;
    z-index: 1000;
    background: white;
    padding: 20px 0 40px 0;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#products .products-footer .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#products .products-footer .btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

/* Hide original elements that are now duplicated */

/* Z-index stacking for products */
#products .productArea:nth-child(1) {
    z-index: 103;
}
#products .productArea:nth-child(2) {
    z-index: 102;
}
#products .productArea:nth-child(3) {
    z-index: 101;
}

.testimonial-section {
    background-color: var(--light-green);
    padding: 60px 0;
}

/**** interactive section styles ****/
/* Interactive Sections - Enhanced for Smooth Scrolling */
.interactive-section {
    padding: 4rem 0;
    position: relative;
    /* Ensure proper spacing */
    margin: 2rem 0;
}

/* Image Container */
.image-container {
    position: relative;
    height: 500px;
    /* Add perspective for 3D effects */
    perspective: 1000px;
}

/* Slide Images - Enhanced for smoother animations */
.slide-image {
    position: absolute;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    opacity: 0;
    transition: none; /* Let GSAP handle all transitions */
    /* Hardware acceleration for smoother performance */
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Left direction images (coming from left) */
.direction-left .slide-image {
    /** transform: translateX(-500px) translateZ(0); **/
}

/* Right direction images (coming from right) */
.direction-right .slide-image {
    /** transform: translateX(500px) translateZ(0); **/
}

/* Stacked positioning for left direction */
.direction-left .slide-image:nth-child(1) {
    top: 0px;
    right: 50px;
    z-index: 3;
}

.direction-left .slide-image:nth-child(2) {
    top: 20px;
    right: 70px;
    z-index: 2;
}

.direction-left .slide-image:nth-child(3) {
    top: 40px;
    right: 90px;
    z-index: 1;
}

/* Stacked positioning for right direction */
.direction-right .slide-image:nth-child(1) {
    top: 40px;
    left: 0px;
    z-index: 3;
}

.direction-right .slide-image:nth-child(2) {
    top: 20px;
    left: 0px;
    z-index: 2;
}

.direction-right .slide-image:nth-child(3) {
    top: 0px;
    left: 0px;
    z-index: 1;
}

/* Enhanced hover states for interactive images */
.slide-image:hover {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ensure smooth scrolling between sections */
.interactive-section + .interactive-section {
    margin-top: 4rem;
}

/* Text content animations */

/* Testimonials Section */

.testimonial-card {
    background-color: var(--light-text);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}
.delay-5 {
    transition-delay: 0.5s;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-tagline p {
    margin-top: 10px;
    font-size: 18px;
    color: #011d0d;
    font-family: "Poppins", sans-serif;
}

.enquire-btn {
    display: inline-block;
    background-color: #1d8347;
    color: var(--light-text);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
    font-size: 16px;
    font-family: "inter", sans-serif;
}

.enquire-btn:hover {
    background-color: #156835;
    color: var(--light-text);
    text-decoration: none;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #011d0d;
    font-family: "inter", sans-serif;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #011d0d;
    font-family: "inter", sans-serif;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1d8347;
    text-decoration: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1d8347;
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 0 5px;
}

.social-icon:hover {
    background-color: #156835;
    color: var(--light-text);
    text-decoration: none;
}

.footer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.footer-bottom {
    font-size: 14px;
    color: #011d0d;
    font-family: "Poppins", sans-serif;
}

.footer-bottom a {
    font-size: 14px;
    color: #011d0d;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    margin-left: 15px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.floating-chat {
    position: fixed;
    bottom: 280px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.floating-chat:hover {
    transform: scale(1.1);
    background-color: var(--secondary-green);
}

.floating-chat:hover {
    color: var(--light-text);
    text-decoration: none;
}
.scroll-top-btn {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.scroll-top-btn:hover {
    /* background-color: var(--primary-green);
	color: var(--light-text); */
    transform: scale(1.1);
    text-decoration: none;
}

.purcity-testimonials-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Add 50px padding-top for testimonials section on product pages */
.RoofGaps .purcity-testimonials-section,
.wallGaps .purcity-testimonials-section,
body[class*="product"] .purcity-testimonials-section {
    padding-top: 50px;
}

.purcity-section-title {
    text-align: center;
    font-family: "Lufga SemiBold";
    font-size: clamp(34px, calc(2.125rem + ((1vw - 7.68px) * 3.2118)), 71px);
    /* margin-bottom: 3rem; */
    margin-bottom: -3%;
    color: #fff;
}
#purcity-testimony-title {
    font-family: "Lufga Medium";
}
.purcity-video-container {
    /* background-color: #f1f1f1; */
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.purcity-video-wrapper {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.purcity-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    cursor: pointer;
}

.purcity-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purcity-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: #e52d27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.purcity-play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid var(--light-text);
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.purcity-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    z-index: 1;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}

.purcity-video-overlay h3 {
    font-size: 1.25rem;
}
.purcity-video-info * {
    color: #fff !important;
}
.purcity-video-info {
    padding: 1rem;
    background-color: var(--primary-green);
    color: #333;
}

.purcity-video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.purcity-video-info p {
    color: #555;
    margin-bottom: 1rem;
}

.purcity-info-footer {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.purcity-company-logo {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.purcity-company-name {
    font-weight: bold;
    margin-right: 1rem;
}

.purcity-location {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 0.875rem;
}

.purcity-location-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
    display: flex;
    align-items: center;
}

.purcity-testimonials-list {
    position: relative;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.purcity-testimonials-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.purcity-testimonial-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    /* padding: 1rem; */
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.purcity-testimonial-card:hover,
.purcity-testimonial-card.purcity-active {
    background-color: var(--light-text);
}

.purcity-testimonial-image {
    width: 35%;
    /* object-fit: cover; */
    /* max-height: 150px; */
}

.purcity-testimonial-info {
    flex: 1;
    padding: 5px 15px;
}

.purcity-testimonial-info h3 {
    font-weight: bold;
    color: #333;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.purcity-testimonial-info p {
    color: #555;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.purcity-testimonial-location {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 0.75rem;
}

.purcity-nav-buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}
.purcity-nav-buttons > button {
    margin: auto 13px;
}
.purcity-nav-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #1e8449;
    color: var(--light-text);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.purcity-nav-button:hover {
    background-color: #128241;
}

.purcity-nav-button:disabled {
    background-color: #7ac29a;
    cursor: not-allowed;
}

.purcity-youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.purcity-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text);
    font-size: 1.5rem;
    text-align: center;
    z-index: 1;
    display: none;
}

.purcity-loading-spinner {
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 5px solid var(--light-text);
    width: 50px;
    height: 50px;
    animation: purcity-spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes purcity-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .purcity-testimonials-list {
        margin-top: 2rem;
    }
    .purcity-video-wrapper {
        height: 0;
        padding-bottom: 56.25%;
    }
}
.navbar-toggler-icon {
    background-image: url(../img/menu_Icon.svg);
}
/* Media queries for responsiveness */
@media (min-width: 222px) {
    .text-1 {
        font-size: 16px;
    }
}
@media (min-width: 768px) {
    .text-1 {
        font-size: 18px;
    }
}
@media (min-width: 1440px) {
    .navbar .container,
    .client-logos-section .container {
        max-width: 1406px;
    }
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .navbar.scrolled {
        backdrop-filter: blur(20px) saturate(1.8) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
        background-color: #353736;
        padding-top: 16px !important;
        margin-top: 0px !important;
        padding-bottom: 16px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 60px;
        transition: all 0.3s;
        margin-top: 0px;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 15px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.page-link {
    border: none;
    text-align: center;
}

.page_BTN {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin: 0 3px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.page-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_BTN_Active {
    color: #fff;
}
.cart_icon path {
    fill: #333;
}
.page_BTN_Active > .page-link {
    background-color: #1d7747;
    color: #fff;
    border-radius: 6px;
}
.previous_BTN {
    color: #6c8f7b !important;
}
.page_BTN *,
.page-item * {
    color: #023718;
}

.icon-container {
    margin-top: 10px;
}

#news .card-img-top {
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    border-radius: 10px !important;
    width: 100%;
    object-fit: inherit;
    height: auto;
}
.bg-bottom {
    margin-top: -3px;
}
.btn_Blue {
    background-color: #2954ef;
    border: none !important;
}
.btn_Green {
    background-color: #278c2f;
    border: none !important;
}
.clock_Icon {
    width: 11px;
    margin-top: -1.5px;
}
.fs-exSmall {
    font-size: 11px;
}
.card-text {
    font-size: 12px;
    margin-top: 10px;
}
.card-footer {
    background-color: transparent;
    padding: 0 16px 16px 16px;
    border-top: none;
}
.card-container {
    max-height: 520px;
}
/*************** video section **************/
.video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

#video-background iframe {
    width: 100vw;
    height: 56.25vw;

    min-height: 100vh;
    min-width: 177.77vh;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content {
    position: relative;
    z-index: 1;
    color: var(--light-text);
    text-align: center;
    padding-top: 40vh;
}
.video-stream {
    width: 100% !important;
    height: auto !important;
    left: 0;
}
.purcity-location-icon > svg {
    fill: #a6ff99;
}
.purcity-location-icon > svg > circle {
    fill: #128241;
    r: 5;
}
@media (min-width: 425px) {
    .text_size {
        font-size: calc(1.75rem + ((1vw - 0.01px) * 1.876));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .text_size {
        font-size: 50px;
    }
}

.Speech_section {
    margin-top: 160px;
}
.innovation-section {
    /**	width: 80%;
	transform: translateX(-5%);
**/
}
.innovation-section > div {
    /**transform: scaleX(0.8) scaleY(0.8);
	**/
}
.business-section {
    margin-top: 60px;
}

.elementor-video {
    max-width: 620px;
    border-radius: 10px;
    width: -webkit-fill-available;
}

.innovation-section .row.bg_green.radious_10Px {
    width: 80%;
}
.Innovation_section_img {
    bottom: -10%;
    right: 2%;
}
@media (min-width: 425px) {
    .text_size_2 {
        font-size: calc(1.75rem + ((1vw - 0.01px) * 0.6253));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .text_size_2 {
        font-size: 40px;
    }
}
.innovation-section {
    border-radius: 10px;
}

.award_section {
    background: #ecf5f0;
}
.Innovation_section {
    padding-bottom: 174px;
}

.award_section + footer {
    margin-top: -40px !important;
}
.radious_10Px {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.search-box,
.dropdown-box {
    border-radius: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    background-color: #fff;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.search-btn {
    background-color: #1a8c3f;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
}
.dropdown-box.c_shadow > .form-select {
    border: none;
}

.form-select {
    background-color: transparent;
    padding-left: 0;
}
.form-select > option {
    color: #777777;
}
.form-select,
.form-control {
    border-color: #dee2e6;
    padding: 0.375rem 0.75rem;
    color: #777777;
}
.form-select:focus,
.search-input:focus {
    box-shadow: none;
}
.enhanced-sticky-header {
    padding: 0 !important;
}
.c_shadow {
    box-shadow: 0 0 20px 5px rgb(214 242 219);
}
.UN_Container,
.International_Container {
    /* box-shadow: 0 0 20px 5px rgb(232, 253, 255);
	border-color: #007bff; */
    border: 1px solid var(--light-gray) !important;
}
.UN_clock_Icon {
    width: 16px;
    margin-top: -1.5px;
    margin-right: 5px;
}
.small_Text {
    font-size: 13px;
}
.innovation-section {
    font-family: "Lufga SemiBold";
}

@media (min-width: 425px) {
    .top-news-left .top-news-title,
    .top-news-right .top-news-title {
        /**	font-size: calc(1.25rem + ((1vw - 0.01px) * -0.4169));
		min-height: 0vw;
		**/
    }
}
@media (min-width: 1920px) {
    .top-news-left .top-news-title,
    .top-news-right .top-news-title {
    }
}

@media (min-width: 210px) {
    .top-news-left .top-news-text,
    .top-news-right .top-news-text {
    }
}
@media (min-width: 1920px) {
    .top-news-left .top-news-text,
    .top-news-right .top-news-text {
    }
}
.top-news-left > .p-3,
.top-news-right .c-Two > .row.p-3 {
    border: 1px solid var(--light-gray) !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
@media (min-width: 425px) {
    .top-news-footer * {
    }
}
@media (min-width: 1920px) {
    .top-news-footer * {
    }
}

.splide .splide__slide {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (min-width: 900px) {
    #main-slider-list .splide__slide {
        height: 370px !important;
    }
}

.Linked_logo {
    font-size: 16px;
}
.latest-news-items {
    flex: 0 0 calc(20% - 12.8px);
    box-sizing: border-box;
}
.img-background {
    width: 100%;
    height: auto;
    min-height: 500px;
    z-index: 1;
    overflow: hidden;
}

.news-banner {
    background: url("/path-to-your-image.png") no-repeat center center;
    background-size: cover;
    height: 300px;
    position: relative;
}

.news-banner .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    z-index: 1;
}

.video-section .container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 2;
}

@media (min-width: 425px) {
    .News-inner-heading {
        font-size: calc(2.0625rem + ((1vw - 0.01px) * -0.6774));
        min-height: 0vw;
        font-weight: 700;
        color: #000;
    }
}
@media (min-width: 1920px) {
    .News-inner-heading {
        font-size: 20px;
        font-weight: 700;
        color: #000;
    }
}
@media (min-width: 425px) {
    .News-inner-Text {
        font-size: calc(1.5rem + ((1vw - 0.01px) * -0.4169));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .News-inner-Text {
        font-size: 16px;
    }
}
.empty-box {
    margin-bottom: 300px;
}
.Climate_Change_Banner_container * {
    font-family: "Lufga SemiBold";
}
.Climate_Change_Banner_container {
    background-color: #ecf5f0;
}
.Climate_Change_Banner_container > .container {
    padding: 10% 5%;
}

.Climate_Change_Banner_container > .container > div > .col-md-7 p {
    font-size: 26px;
    font-weight: 700;
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

.Climate_Change_Banner_container > .container > div > .col-md-7 p > img {
    margin-right: 10px;
    width: 24px;
}
.Shine-pureCity-container {
    font-family: "Lufga SemiBold";
}
.Shine-pureCity-container > div > img {
    max-height: 690px;
}
.bg-green {
    top: 0;
}

.pureCity-overlay-content {
    z-index: 2;
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
}
@media (min-width: 425px) {
    .pureCity-overlay-content h1,
    .pureCity-overlay-content h3 {
        font-size: calc(2.125rem + ((1vw - 0.01px) * 0.3127));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .pureCity-overlay-content h1,
    .pureCity-overlay-content h3 {
        font-size: 40px;
    }
}
.pureCity-overlay-heading > img {
    min-width: 100px;
    width: 12vw;
    max-width: 150px;
}
.pureCity-overlay-content > div > div * {
    color: #fff;
}
.pureCity-overlay-content p {
    font-size: 18px;
    font-family: inter;
}

.Urbanization-container {
    color: #fff;
}
@media (min-width: 425px) {
    .Urbanization-description {
        font-size: calc(1.25rem + ((1vw - 0.01px) * -0.1042));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .Urbanization-description {
        font-size: 18px;
    }
}
.graph-mesurement-helps-container {
    font-size: 20px;
}

.faq-header {
    font-weight: 700;
    font-size: 1.5rem;
}

.faq-category {
    font-weight: 700;
    color: #000;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-green);
    color: var(--light-text);
    box-shadow: none;
}

.accordion-button {
    font-weight: 600;
}

.section-label {
    color: #1f7d3f;
    font-weight: 700;
    font-size: 0.8rem;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after {
    background-image: url(../img/down_arrow.svg);
    background-position: 0;
    width: 32px;
    height: 32px;
    background-size: 30px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../img/upper_arrow.svg);
    background-position: 0;
    width: 32px;
    height: 32px;
    background-size: 30px;
    transform: translateY(100%);
}
.accordion-body {
    background-color: var(--primary-green);
    color: var(--light-text);
    margin-top: -1px;
}
.form-section {
    padding: 50px;
    background-color: var(--light-text);
    border-radius: 12px;
}

.form-title {
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    color: #157347;
    margin-bottom: 40px;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.submit-btn {
    background-color: #157347;
    border: none;
    padding: 10px 30px;
    color: var(--light-text);
    font-weight: 600;
    border-radius: 30px;
}

.submit-btn:hover {
    background-color: #125f3a;
}

.captcha {
    display: flex;
    align-items: center;
    gap: 20px;
}
.line_c {
    border: 1px solid var(--light-text);
    width: 100px;
}
.offer-Btn {
    background-color: #fff;
    color: var(--primary-green);
}
.offer-container {
    background-color: #ecf5f0;
    box-shadow: 0 0 44px -25px #12241a;
    width: 50%;
    bottom: -10%;
    right: -5%;
    aspect-ratio: 1.3 / 1;
}
.offer-container .offer-container-data {
    margin: 20px 10%;
}
.offer-container-data > div > img,
.offer-container-data > div > div {
    align-self: center;
    justify-self: center;
}
.offer-container-data > div > img {
    width: 50px;
    aspect-ratio: 1;
}
.offer-container-data > div > div * {
    font-size: 20px;
    font-family: inter;
}
.offer-container-data > div > div > span:first-child {
    font-weight: 700 !important;
}
.section-wraper {
    border: 1px solid #f1f1f4;
}
/*************************************************/

.product-section h2 {
    font-weight: 700;
    color: #1a8f3c;
}

.sidebar-box {
    background-color: var(--primary-green);
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.product-img-container img {
    height: 200px;
    object-fit: contain;
    padding: 10px;
}

.plus-btn {
    width: 32px;
    height: 32px;
    line-height: 24px;
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.btn-quote {
    background-color: #1a8f3c;
    border: none;
}

.btn-quote:hover {
    background-color: #146c2d;
}

.plus_position {
}
.wall-gaps-banner-btn {
    bottom: 30% !important;
    z-index: 99;
}
.featuerss-section {
    padding-left: 1%;
}
.wallGaps-btn-area > a,
.graphs-btn-container > a {
    margin-left: 15px;
    margin-right: 15px !important;
    font-family: inter;
    font-weight: 600;
}
@media (min-width: 425px) {
    .graphs-btn-container > a {
        font-size: calc(0.9375rem + ((1vw - 0.01px) * 0.6253));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .graphs-btn-container > a {
        font-size: 27px;
    }
}
.graphs-btn-container > a {
    padding: 1.5vh 2.5vw;
}
.box {
    margin-bottom: 100vh;
}

.cooling-capabilities-section {
    background-color: var(--bg-light-creme);
}
.cooling-capabilities-section > img:first-child {
    margin-top: -11%;
}
.spalised-container {
    margin-bottom: -11% !important;
    margin-top: -11% !important;
}
@media (min-width: 425px) {
    .spalised-container-description *,
    .energy-saving-description *,
    .Insulation-section > p {
        font-size: calc(1rem + ((1vw - 4.25px) * 0.1338));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .spalised-container-description *,
    .energy-saving-description *,
    .Insulation-section > p {
        font-size: 18px;
    }
}
.side-banner-img {
}
.Insulation-section {
    margin-top: 20%;
}
.energy-saving-section > .position-absolute.container {
    top: 0;
    left: 50%;
    padding-top: 6%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.energy-saving-section > img {
    max-height: 1400px;
    object-fit: cover;
    min-height: 900px;
}
.energy-saving-description * {
    color: #fff;
}
.energy-saving-content {
    margin-top: 10%;
    font-weight: 600;
}
.testimonials-overlay-top-img {
    margin-top: -16%;
}
.testimonials-overlay-bottom-img {
    margin-bottom: -16%;
}
.test-analyses-section {
    margin-top: 5vw;
}
.Scenarios-section {
    margin-top: 12vh;
}
@media (min-width: 425px) {
    .test-analyses-title {
        font-size: calc(1.0625rem + ((1vw - 4.25px) * 2.0736));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .test-analyses-title {
        font-size: 48px;
    }
}
.test-analyses-title {
    font-family: "Lufga SemiBold";
    color: var(--primary-green);
}
.test-analyses-content {
    margin-top: -16vh;
    padding: 12vw 15px 1vw 15px;
    font-size: 18px;
}
@media (min-width: 425px) {
    .Working-steps-title {
        font-size: calc(2.1875rem + ((1vw - 4.25px) * 3.2776));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .Working-steps-title {
        font-size: 84px;
    }
}
.Working-steps-title {
    color: var(--primary-green);
    font-family: "Lufga SemiBold";
}

.Working-steps-title {
    right: 0;
    margin: 0;
    top: 0;
    transform: rotateZ(90deg) translateX(50%) translateY(-184%);
}

@media (min-width: 320px) {
    .Scenarios-heading * {
        font-size: calc(0.9375rem + ((1vw - 4.25px) * 0.3344));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .Scenarios-heading * {
        font-size: 20px;
    }
}
.Scenarios-heading * {
    color: var(--primary-green);
    font-family: "Lufga SemiBold";
}
.Scenarios-section-card {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    min-width: 160px;
}
.Scenarios-heading h2 > span {
    font-style: italic;
}
.img-section {
    padding: 20px;
}

.img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
h5.card-title.Product-title {
    margin-top: 20px;
}

h5.card-title.Product-title a {
    color: #128241;
}
.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.image-box {
    padding: 10px;
}
.img-section > .row:first-child img,
.img-section > .row:last-child img {
    aspect-ratio: 1;
}

.products-features-info .feature,
.form-heading {
    font-family: "Lufga SemiBold";
}
.sidebar-box > h5,
.Product-title {
    font-family: "Lufga Medium";
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 transparent;
    background: rgba(0, 0, 0, 0.7);
}

.navbar-toggler {
    border: none;
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
    ul.pagination.justify-content-center * {
        font-size: 13px;
    }
}
.hero-section > .container .hero-description {
    color: var(--primary-green);
    font-family: "Lufga Regular";
}
@media (min-width: 300px) {
    .btn-responsive * {
        font-size: calc(0.625rem + ((1vw - 3px) * 0.3704));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    .btn-responsive * {
        font-size: 16px;
    }
}
@media (min-width: 300px) {
    #products .section-subtitle {
        font-size: calc(1rem + ((1vw - 3px) * 0.4938));
        min-height: 0vw;
    }
}
@media (min-width: 1920px) {
    #products .section-subtitle {
        font-size: 24px;
    }
}
#products .section-subtitle {
    font-weight: 400;
}
.nav-Active {
    background: var(--primary-green);
}
.nav-Active {
    color: #fff !important;
}
@media (min-width: 325px) and (max-width: 767px) {
    .award-description {
        font-size: calc(0.3125rem + ((1vw - 3.25px) * 0.905)) !important;
        min-height: 0vw;
    }
}
@media (max-width: 767px) {
    .award-description {
        font-size: 5px;
    }
}
.btn-responsive > a:hover {
    background-color: var(--primary-green);
}
.btn-Product-active {
    background: var(--primary-green);
    color: #fff !important;
    border-color: var(--primary-green) !important;
}
#products .btn-responsive > a {
    color: var(--gray);
    border-color: var(--gray);
}
@media (min-width: 222px) {
    .products-btn-area * {
        font-size: calc(0.6875rem + ((1vw - 2.22px) * 0.9174));
        min-height: 0vw;
    }
}
@media (min-width: 767px) {
    .products-btn-area * {
        font-size: 16px;
    }
}
@media (min-width: 222px) {
    .purcity-testimony-title {
        font-size: calc(1rem + ((1vw - 2.22px) * 1.0989)) !important;
        min-height: 0vw;
    }
}
@media (min-width: 768px) {
    .purcity-testimony-title {
        font-size: 22px !important;
    }
}

@media only screen and (max-width: 767px) {
    .offer-container {
        position: relative !important;
        aspect-ratio: 0;
    }
    .offer-container {
        width: 100% !important;
        margin-top: 30px;
        right: 0%;
    }
    .section-wraper .bg_green {
        background-color: transparent;
    }
    .offer-container-data > div > div * {
        font-size: 15px;
    }
    .offer-container-data > div > img {
        width: 40px;
    }
}

.section-wraper .bg_green {
    background-color: var(--primary-green);
}
.Offfer-section {
    margin-bottom: 100px;
}
.Energy_consumption-Img-container > div > h3 {
    font-size: 200px;
    color: var(--primary-green);
    font-family: "Lufga SemiBold";
    font-style: italic;
}

@media (min-width: 425px) {
    .Energy_consumption-Img-container > div > h3 {
        font-size: calc(6.25rem + ((1vw - 4.25px) * 12.9032));
        min-height: 0vw;
    }
}
@media (min-width: 1200px) {
    .Energy_consumption-Img-container > div > h3 {
        font-size: 200px;
    }
}
@media (min-width: 425px) {
    .Energy_consumption-Img-container > div > h3 > span.percent {
        font-size: calc(3.125rem + ((1vw - 4.25px) * 6.4516));
        min-height: 0vw;
    }
}
@media (min-width: 1200px) {
    .Energy_consumption-Img-container > div > h3 > span.percent {
        font-size: 100px;
    }
}
@media (min-width: 425px) {
    .Energy_consumption-Img-container > div > p {
        font-size: calc(0.875rem + ((1vw - 4.25px) * 2.3372));
        min-height: 0vw;
    }
}
@media (min-width: 1024px) {
    .Energy_consumption-Img-container > div > p {
        font-size: 28px;
    }
}
.card-one,
.card-two {
    max-width: 400px;
    background: var(--bg-light-creme);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    cursor: default;
}

.card-one:hover,
.card-two:hover {
    box-shadow: 0px 0px 52px 15px rgba(189, 189, 189, 0.644);
    scale: 1.02;
}
.card-one img,
.card-two img {
    margin-top: -23%;
}

@media (min-width: 425px) {
    .card-one h3,
    .card-two h3 {
        font-size: calc(2.875rem + ((1vw - 4.25px) * 1.1823));
        min-height: 0vw;
    }
}
@media (min-width: 1440px) {
    .card-one h3,
    .card-two h3 {
        font-size: 58px;
    }
}
.card-one h3,
.card-two h3 {
    margin-top: 0;
}
.Death_Card,
.Children_Card {
    background-color: var(--bg-light-creme);
    transition: 0.5s all;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.Death_Card:hover,
.Children_Card:hover {
    box-shadow: 0px 0px 52px 15px rgba(189, 189, 189, 0.644);
    scale: 1.02;
    cursor: default;
}
.Death_Card img,
.Children_Card img {
    min-width: 57px;
}
.Death_Card h4,
.Children_Card h4,
.Death_Card p,
.Children_Card p {
    margin: 10px 0 !important;
}
@media (min-width: 425px) {
    .Death_Card h4,
    .Children_Card h4 {
        font-size: calc(1.125rem + ((1vw - 4.25px) * 2.5616));
        min-height: 0vw;
    }
}
@media (min-width: 1440px) {
    .Death_Card h4,
    .Children_Card h4 {
        font-size: 44px;
    }
}
textarea {
    resize: none;
    overflow: auto;
}
.animated-awards-recognitions,
.animated-Patents-Trademarks,
.Progress-svg {
    max-width: 1450px;
}

/************ Awards & Recognitions animation banner start *************/

/**************** Works for text up to bottom********************/
.common-bottom.text_animation.to-bottom {
    animation: text_animation 1.5s;
    -webkit-animation: text_animation 1.5s;
}

@keyframes text_animation {
    0% {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY (0px);
        -webkit-transform: translateY (0px);
        -moz-transform: translateY (0px);
        -ms-transform: translateY (0px);
        -o-transform: translateY (0px);
        opacity: 1;
    }
}
/**************** Works for down line bottom to up********************/
.to-bottom {
    animation: bottomAnimation 3s;
    -webkit-animation: bottomAnimation 3s;
}
@keyframes bottomAnimation {
    0% {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        transform: translateY (0px);
        -webkit-transform: translateY (0px);
        -moz-transform: translateY (0px);
        -ms-transform: translateY (0px);
        -o-transform: translateY (0px);
        opacity: 1;
    }
}
/**************** Works for text bottom to top ********************/
.to-top {
    animation: goTop 3s;
    -webkit-animation: goTop 3s;
}
@keyframes goTop {
    0% {
        transform: translateY(40px);
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        transform: translateY (0px);
        -webkit-transform: translateY (0px);
        -moz-transform: translateY (0px);
        -ms-transform: translateY (0px);
        -o-transform: translateY (0px);
        opacity: 1;
    }
}
/**************** Works for down text top to bottom ********************/
.common-top.text_animation_two.to-top {
    animation: text_animation_two 1.5s;
    -webkit-animation: text_animation_two 1.5s;
}

@keyframes text_animation_two {
    0% {
        transform: translateY(40px);
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY (0px);
        -webkit-transform: translateY (0px);
        -moz-transform: translateY (0px);
        -ms-transform: translateY (0px);
        -o-transform: translateY (0px);
        opacity: 1;
    }
}

#banner-svg {
    padding: 5px;
}

/*************************** Patents & Trademarks *****************************/
/**************** Works for down line bottom to up********************/
.to-bottom-two {
    animation: bottomToTop 3s;
    -webkit-animation: bottomToTop 3s;
}
@keyframes bottomToTop {
    0% {
        translate: 0 -40px;
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        translate: 0 0px;
        opacity: 1;
    }
}
.common-bottom-two.number-animated-bottom.to-bottom-two {
    animation-duration: 1.5s;
}
.common-bottom-two.text-animated-bottom.to-bottom-two {
    animation-duration: 2.1s;
}

.to-top-two {
    animation: goTop 3s;
    -webkit-animation: goTop 3s;
}
@keyframes goTop {
    0% {
        translate: 0 40px;
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        translate: 0 0px;
        opacity: 1;
    }
}
.common-top-two.number-animated-top.to-top-two {
    animation-duration: 1.5s;
}
.common-top-two.text-animated-top.to-top-two {
    animation-duration: 2.1s;
}
/***********Progress-banner*************/
.to-top-3rd {
    animation: goTop 2.5s;
    -webkit-animation: goTop 2.5s;
}
@keyframes goTop {
    0% {
        translate: 0 40px;
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        translate: 0 0px;
        opacity: 1;
    }
}
.common-top-3rd.number-3rd-animation.to-top-3rd {
    animation-duration: 1s;
}

.to-bottom-3rd {
    animation: bottomToTop 2.5s;
    -webkit-animation: bottomToTop 2.5s;
}
@keyframes bottomToTop {
    0% {
        translate: 0 -40px;
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        translate: 0 0px;
        opacity: 1;
    }
}
.common-bottom-3rd.number-3rd-animation {
    animation-duration: 1s;
}
.book-consultation-btn {
    font-weight: 600;
}
.top-news-left > div {
    height: 100%;
}

.overFlowY {
    overflow-y: hidden;
}
#holo {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0);
    z-index: 99;
}

.go_top {
    animation: btnMoveRight 1s ease;
    -webkit-animation: btnMoveRight 1s ease;
}

@keyframes btnMoveRight {
    0% {
        right: -100%;
    }
    100% {
        right: 20px;
    }
}
#Footer {
    overflow-x: hidden;
}
.chat-header * {
    color: white;
}

.chat-container {
    width: 360px;
    z-index: 9999;
    height: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    right: 30px;
    bottom: 20px;
}

.chat-header {
    background-color: #075e54;
    color: white;
    padding: 15px;
    text-align: center;
}

.chat-box {
    flex: 1;
    padding: 15px;
    background-color: #dcf8c6;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.sent {
    background-color: #dcf8c6;
    align-self: flex-end;
}

.received {
    background-color: #ffffff;
    align-self: flex-start;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #075e54;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.graphs-btn-container a {
    border-color: var(--gray);
    color: var(--gray);
}
.graphs-btn-container a:active {
    border-color: var(--gray) !important;
    color: var(--gray) !important;
}
.graphs-btn-container a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}
.graphs-btn-active {
    border-color: var(--primary-green) !important;
    background-color: var(--primary-green) !important;
    color: #fff !important;
}
.card-body {
    padding-top: 0;
}

/* Sticky slideshow sections */

.sticky-slideshow {
    position: relative;
    margin-top: -1px;
    height: 400vh; /* Creates scroll distance for slides */
    overflow: hidden;
}

.sticky-slideshow.active {
    z-index: 10;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

.slideshow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    height: 100%;
}

/* For right-side image sections */
.slideshow-content.image-right {
    grid-template-columns: 1fr 1fr;
}

.slideshow-content.image-right .slideshow-text {
    order: 1;
}

.slideshow-content.image-right .slideshow-images {
    order: 2;
}

.slideshow-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slideshow-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 300;
}

.slideshow-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.slide-info {
    font-size: 1rem;
    color: #999;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide-counter {
    font-weight: bold;
}

.slide-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.slideshow-images {
    position: relative;
    height: 70vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section backgrounds */
.sticky-slideshow:nth-of-type(3) .slideshow-container {
    background: #f8f9fa;
}

.sticky-slideshow:nth-of-type(5) .slideshow-container {
    background: #fff;
}

/* Awards section enhancements */
.award-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.award-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .slideshow-content,
    .slideshow-content.image-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slideshow-content.image-right .slideshow-text,
    .slideshow-content.image-right .slideshow-images {
        order: initial;
    }

    .slideshow-text h2 {
        font-size: 2.5rem;
    }

    .slideshow-images {
        height: 50vh;
    }

    .sticky-slideshow {
        height: 300vh; /* Reduce scroll distance on mobile */
    }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-animation-container {
    --color: rgba(30, 30, 30);
    --bgColor: #fff;

    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--color);
    background: var(--bgColor);
}

.card-animation-container > .container {
    max-width: 80rem;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tab-navigation.sticky {
    left: 20% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -moz-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    -o-transform: translateX(-50%) !important;
    border: 0;
}

.tab-button {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: gray;
    font-weight: 600;
    font-size: 1.8rem;
    /* border-radius: 10px; */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: inherit;
    border-radius: 10px;
    text-align: left;
}

.tab-button.active {
    background: rgba(18, 130, 65, 0.1);
    color: #128241;
}

.tab-button:hover:not(.active) {
    background: rgba(18, 130, 65, 0.1);
    color: gray;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.card-animation-container ul {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* line */
.card-animation-container ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 20;
    background: #128241;
    border-radius: calc(var(--line-w) / 2);
}

/* row gaps */
.card-animation-container ul li:not(:last-child) {
    margin-bottom: var(--row-gap);
}

/* card */
.card-animation-container ul li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.card-animation-container ul li.animate {
    opacity: 1;
    transform: translateX(0);
}

/* date */
.card-animation-container ul li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);
    text-align: center;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: grid;
    place-content: center;
    position: relative;
    border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
    transition: all 0.3s ease;
}

/* date flap */
.card-animation-container ul li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

/* circle */
.card-animation-container ul li .date::after {
    content: "";
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    background: var(--bgColor);
    border: 0.3rem solid var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* title descr */
.card-animation-container ul li .title,
.card-animation-container ul li .descr {
    padding-top: 1.5rem;
    background: var(--bgColor);
    position: relative;
    padding-inline: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.card-animation-container ul li .title {
    overflow: hidden;
    padding-block-start: 1.5rem;
    padding-block-end: 1rem;
    font-weight: 500;
    font-size: 1.2rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-animation-container ul li .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.card-animation-container ul li .icon svg {
    width: 100%;
    height: 100%;
    fill: #128241;
    transition: all 0.3s ease;
}

.card-animation-container ul li:hover .icon svg {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(18, 130, 65, 0.3));
}

.card-animation-container ul li .descr {
    padding-block-end: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}

/* shadows */
.card-animation-container ul li .title::before,
.card-animation-container ul li .descr::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    left: 50%;
    border-radius: 50%;
    filter: blur(4px);
    transform: translate(-50%, 50%);
}

.card-animation-container ul li .title::before {
    bottom: calc(100% + 0.125rem);
}

.card-animation-container ul li .descr::before {
    z-index: -1;
    bottom: 0.25rem;
}

/* Hover effects */
.card-animation-container ul li:hover {
    transform: translateX(10px) scale(1.02);
}

.card-animation-container ul li:hover .date {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-animation-container ul li:hover .date::after {
    transform: translate(50%, -50%) scale(1.2);
    box-shadow: 0 0 20px var(--accent-color);
}

.card-animation-container ul li:hover .title,
.card-animation-container ul li:hover .descr {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product_testimonials .bg-top,
.product_testimonials .bg-bottom {
    display: none !important;
}

@media (max-width: 1700px) {
    .tab-navigation.sticky {
        left: 10px !important;
        transform: translateX(0%) !important;
        -webkit-transform: translateX(0%) !important;
        -moz-transform: translateX(0%) !important;
        -ms-transform: translateX(0%) !important;
        -o-transform: translateX(0%) !important;
        border: 0;
        width: auto !important;
    }

    .tab-navigation.sticky .tab-button {
        font-size: 1.2rem;
    }
}

@media (min-width: 40rem) {
    .card-animation-container ul {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }

    .card-animation-container ul::before {
        grid-column: 2;
    }

    .card-animation-container ul li:nth-child(odd) {
        grid-column: 1;
        transform: translateX(-50px);
    }

    .card-animation-container ul li:nth-child(odd).animate {
        transform: translateX(0);
    }

    .card-animation-container ul li:nth-child(even) {
        grid-column: 3;
        transform: translateX(50px);
    }

    .card-animation-container ul li:nth-child(even).animate {
        transform: translateX(0);
    }

    /* start second card */
    .card-animation-container ul li:nth-child(2) {
        grid-row: 2/4;
    }

    .card-animation-container ul li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    .card-animation-container ul li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
        animation: pulse 2s infinite;
    }

    .card-animation-container ul li:nth-child(odd) .date {
        border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
    }

    .card-animation-container ul li:nth-child(odd):hover {
        transform: translateX(-10px) scale(1.02);
    }

    .card-animation-container ul li:nth-child(even):hover {
        transform: translateX(10px) scale(1.02);
    }

    .card-animation-container ul li:nth-child(odd):hover .date::after {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 20px var(--accent-color);
    }
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .card-animation-container .tab-navigation {
        flex-direction: column;
        gap: 0.25rem;
    }

    .card-animation-container .tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .card-animation-container h1 {
        font-size: 2rem;
    }
}

.card-animation-container .credits a {
    color: var(--color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-animation-container .credits a:hover {
    color: #3498db;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced visual effects */
.card-animation-container ul li .title {
    position: relative;
    overflow: hidden;
}

.card-animation-container ul li .title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.card-animation-container ul li:hover .title::after {
    left: 100%;
}

/* Pulse animation for circles */
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 var(--accent-color);
    }
    50% {
        box-shadow: 0 0 0 10px transparent;
    }
}

a.px-4.btn.btn-custom.Explore-GapS-btn:hover {
    background: #fff !important;
}

a.px-4.btn.btn-custom.Explore-GapS-btn,
#products .products-features-info {
    border: 1px solid #fff;
}
img.Linked_icon {
    max-width: 15px;
}
h5.top-news-title a {
    font-family: "Lufga SemiBold";
    font-size: 16px;
    line-height: 1.4;
}
/* Loading and empty states */
.card-animation-container .timeline-loading {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    font-style: italic;
}

.card-animation-container .timeline-empty {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.card-animation-container .timeline-empty .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.RoofGaps #products,
.wallGaps #products {
    position: static !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}
.RoofGaps .cooling-capabilities-section > .container,
.wallGaps .cooling-capabilities-section > .container {
    margin-top: 0;
}
/*************************************************** New ****************************************************************/

.Shopping-Cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.Shopping-Cart-header h1 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Shopping-Cart-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.cart-items {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 24px;
    margin-bottom: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.item-image {
    max-width: 100%;
    height: auto;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.item-description {
    color: #5f6b7e;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4a5568;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #e2e8f0;
    color: #2d3748;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
}

.remove-btn {
    background: none;
    border: none;
    color: #e53e3e;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: rgba(229, 62, 62, 0.1);
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
}

.item-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.item-subtotal {
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.summary-row.total {
    border-top: 2px solid #e2e8f0;
    padding-top: 16px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.summary-label {
    color: #4a5568;
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: #2d3748;
}

.Checkout-btn-primary {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.Checkout-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 130, 65, 0.4);
}

.Shopping-btn-secondary {
    width: 100%;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.Shopping-btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-1px);
}

.empty-cart {
    text-align: center;
    padding: 60px 40px;
    color: #718096;
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #4a5568;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 24px;
}

.promo-code {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.promo-input {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.promo-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.promo-input button {
    padding: 10px 16px;
    background: #48bb78;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-input button:hover {
    background: #38a169;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.cart-header h2 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 600;
}
.text-primary {
    color: #156835 !important;
}
.item-count {
    color: #718096;
    font-size: 16px;
}

@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-items,
    .cart-summary {
        padding: 24px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .item-image {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
    }

    .Shopping-Cart-header h1 {
        font-size: 28px;
    }
}

.fade-out {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
}

.savings {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    margin: 16px 0;
    text-align: center;
    font-weight: 600;
}
/*************************************************** New ****************************************************************/

.checkout-form-container {
    margin: 0px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.order-summary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 20px;
}

.checkout-form-container h1,
.checkout-form-container h2 {
    color: #2d3748;
    margin-bottom: 24px;
    font-weight: 600;
}

.checkout-form-container h1 {
    font-size: 28px;
}

.checkout-form-container h2 {
    font-size: 22px;
}

.checkout-form-container .form-section {
    margin-bottom: 32px;
    padding: 0;
}

.checkout-form-container .form-section h3 {
    color: #4a5568;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.checkout-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.checkout-form-container .form-group {
    margin-bottom: 16px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-form-container label {
    display: block;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.checkout-form-container input,
.checkout-form-container select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.checkout-form-container input:focus,
.checkout-form-container select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.checkout-form-container .payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.checkout-form-container .payment-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.checkout-form-container .payment-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.checkout-form-container .payment-option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.checkout-form-container .payment-option input[type="radio"] {
    margin-right: 12px;
    width: auto;
}

.checkout-form-container .payment-logo {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
}

.checkout-form-container .wise-logo {
    background: #9fe870;
    color: #000;
}

.paypal-logo {
    background: #0070ba;
}

.stripe-logo {
    background: #635bff;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 4px;
}

.item-info p {
    color: #718096;
    font-size: 14px;
}

.item-price {
    font-weight: 600;
    color: #2d3748;
}

.order-total {
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.total-row.final {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.complete-btn-primary {
    margin-top: 24px;
}

.complete-btn-primary:active {
    transform: translateY(0);
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    color: #718096;
    font-size: 14px;
}

.security-info::before {
    content: "🔒";
    margin-right: 8px;
}

@media (max-width: 768px) {
    .checkout-form-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkout-form,
    .order-summary {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.card-details {
    display: none;
    margin-top: 16px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    animation: slideDown 0.3s ease;
}

.card-details.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
}
.DasBoard_Left_panel {
    background: var(--offWhite);
    padding: 0;
    width: 80px;
}

.DasBoard_Brand_Logo > a > img {
    scale: 0.7;
}
.Profile_Img > img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    aspect-ratio: 1;
    border: 2px solid var(--primary-green);
}
.dashboard_Menu-Container > .Menu_item img,
.dashboard_Control_Container > .Menu_item img {
    margin-top: 15px;
    margin-bottom: 15px;
    scale: 0.9;
}
.admin-dashboard {
    background: var(--medium-gray);
}
.admin-dashboard Footer {
    background: white;
}
.dashboard_Control_Container {
    margin-top: 20vh;
    margin-bottom: 20vh;
}
.DasBoard_Right_panel {
    background: var(--offWhite);
    padding: 0;
    width: calc(100% - 80px);
    height: 80px;
}
/* dark to light togole switch start */

/* From Uiverse.io by 3bdel3ziz-T */
/* The switch container */
.switch {
    --transition: 300ms;
    --transition500: 500ms;
    --color-dark: #0c0f14;
    --color-gray: #52555a;
    --color-offwhite: #cecece;
    --shadow-color: var(--color-dark);
    position: relative;
    display: flex;
    align-items: center;
    width: 60px;
    height: fit-content;
    background-color: var(--color-dark);
    border-radius: 30px;
    padding: 4px;
    transition: var(--transition500);
    user-select: none;
    cursor: pointer;
    overflow: hidden;
}

/* Svg styles */
.switch .svg {
    transition: var(--transition);
    position: absolute;
    left: 5px;
}
.switch .moon {
    width: 18px;
    fill: var(--color-gray);
    opacity: 1;
}

.switch .sun {
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: calc(100% - 21.5px);
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0.8;
    opacity: 0;
}

.switch .sun .dot {
    positon: relative;
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-dark);
    background: white;
    z-index: 1;
    box-shadow: 11px 0px 0px var(--shadow-color),
        10.3px 0px 0px var(--shadow-color), -11px 0px 0px var(--shadow-color),
        -10.3px 0px 0px var(--shadow-color), 0px -11px 0px var(--shadow-color),
        0px -10.3px 0px var(--shadow-color), 0px 11px 0px var(--shadow-color),
        0px 10.3px 0px var(--shadow-color), 8px 8px 0px var(--shadow-color),
        7.3px 7.3px 0px var(--shadow-color), 8px -8px 0px var(--shadow-color),
        7.3px -7.3px 0px var(--shadow-color), -8px -8px 0px var(--shadow-color),
        -7.3px -7.3px 0px var(--shadow-color), -8px 8px 0px var(--shadow-color),
        -7.3px 7.3px 0px var(--shadow-color);
}

.switch .sun .dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-dark);
}

/*checkbox styles */
.switch .circle {
    appearance: none;
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    left: 0;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    transition: var(--transition500);
}

.switch:has(.circle:checked) {
    background: var(--color-offwhite);
}

.switch .circle:hover {
    margin-left: 3px;
}
.switch .circle:checked:hover {
    margin-left: -3px;
}

.switch .circle:checked {
    left: calc(100% - 22px);
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.switch:has(.circle:checked) > .sun {
    opacity: 1;
}

.switch:has(.circle:checked) > .moon {
    opacity: 0;
}

/* dark to light togole switch end */

.Testimonials-container {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
}
.nav-item a {
    position: relative;
}
.nav-item a::before {
    content: "";
    background: var(--secondary-green);
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
}
.nav-item:hover a::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}
#products .productArea .col-lg-6 {
    height: auto !important;
}
#products .productArea {
    height: 100% !important;
}

/* Ensure .enhanced-sticky-viewport always fits its content and allows scrolling if needed */
.enhanced-sticky-viewport {
    height: auto !important;
    min-height: 100vh;
    max-height: none !important;
    overflow-y: visible !important;
    display: block;
}

#products,
#products .sticky-products-container,
#products .products-content,
#products .product-slides,
#products .productArea {
    overflow: hidden !important;
}

/* Timeline animation trigger class */
.card-animation-container.timeline-triggered ul {
    animation: none; /* Remove the automatic animation */
    scale: 0.7;
    transform: translateY(-20%);
}
#milestones,
#achievements,
#TimeLineInfo {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    height: unset !important;
    min-height: 0 !important;
    display: none;
    overflow: visible;
}
#milestones.active,
#achievements.active,
#TimeLineInfo.active {
    display: block;
}
#milestones > ul,
#achievements > ul,
#TimeLineInfo > ul {
    margin: 0 auto !important;
    padding: 0 !important;
    transform: scale(0.7) translate(0, -20%);
}
#milestones > ul > li,
#achievements > ul > li,
#TimeLineInfo > ul > li {
    padding: 0 !important;
}

.card-animation-container.timeline-triggered ul li {
    opacity: 0;
    transform: translateX(50px);
}

.card-animation-container.timeline-triggered ul li.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Ensure proper spacing when tab is sticky */
.card-animation-container {
    padding-top: 0;
}

.card-animation-container.tab-sticky {
    padding-top: 8rem; /* Add space for sticky tab */
}

@media (min-width: 1401px) {
    .top-news-footer *,
    .top-news-footer {
        font-size: 14px;
        font-family: "Inter";
        font-weight: 300;
        color: #000;
    }
}

@media (max-width: 1400px) {
    .top-news-footer *,
    .top-news-footer {
        font-size: 9px;
        font-family: "Inter";
        font-weight: 300;
        color: #515151;
    }
  
     .tab-navigation.sticky .tab-button {
        font-size: 0.7rem!important;
    }

    .tab-button {
        padding: 1rem 1rem!important;
    }
}

/* Responsive sticky tab navigation */
@media (min-width: 768px) {
    #milestones li.left-side:hover,
    #achievements li.left-side:hover,
    #TimeLineInfo li.left-side:hover {
        transform: translate(-65px, -20px) scale(1.2);
    }

    #milestones li.right-side:hover,
    #achievements li.right-side:hover,
    #TimeLineInfo li.right-side:hover {
        transform: translate(65px, -20px) scale(1.2);
    }
}

@media (max-width: 767px) {
    .tab-navigation.sticky {
        top: 70px; /* Slightly lower on mobile */
        max-width: 95%;
        padding: 0.25rem;
    }

    .tab-navigation.sticky .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem !important;
    }

    .card-animation-container.tab-sticky {
        padding-top: 6rem; /* Less padding on mobile */
    }
}

@media (max-width: 480px) {
    .tab-navigation.sticky {
        top: 60px;
        max-width: 98%;
    }

    .tab-navigation.sticky .tab-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Smooth transition for sticky state changes */
.tab-navigation {
    display: flex;
    justify-content: center;

    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
}
section.innovation-section {
    position: relative !important;
}

.tab-navigation.sticky {
    position: sticky;
    top: 80px;
    left: 40%;
    transform: translateX(-30%);

    flex-direction: column;
    display: inline-flex;
    max-width: 90%;
    z-index: 1000;
    flex-direction: column;
}

.tab-navigation.sticky .tab-button {
    font-size: 1.2rem;
}

.business-section {
    margin-top: 10rem !important;
}
.innovation-section .text-1 {
    font-family: "Lufga Regular";
}
.scrolled .logo-area.float-center {
    top: 2px;
}
.hero-section .book-consultation-btn {
    padding: 11px 20px !important;
}

/* Custom dropdown menu styles for Products navigation */
.custom-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.3s;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.custom-dropdown .dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 0.5rem 0;
}
.custom-dropdown .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.custom-dropdown .dropdown-item:hover {
    background: #e9f7ef;
    color: #1e7e34;
    text-decoration: none;
}

#urbanization {
    min-height: calc(100vh * 3); /* 3 = number of slides */
    position: relative;
    overflow: visible;
}
#urbanization-sticky {
    min-height: 400px;
    height: 100vh;
    display: flex;
    align-items: center;
    /* Do NOT set position: fixed or sticky here! */
}
#urbanization-sticky > .col-lg-6 {
    flex: 1 1 0;
    min-width: 0;
}
#urbanization-slideshow {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}
#urbanization-slideshow .slide {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
    z-index: 1;
}
#urbanization-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

@media (max-width: 991px) {
    .card-animation-container.timeline-triggered ul {
        scale: 1 !important;
        transform: translateY(0%) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 1rem !important;
        /* Remove horizontal scrolling and flex for vertical stacking */
        display: block !important;
        overflow-x: unset !important;
        gap: 0 !important;
    }
    .card-animation-container.timeline-triggered ul li {
        transform: translateX(0) !important;
        font-size: 1rem !important;
        min-width: 0 !important;
        max-width: 100% !important;
        word-break: break-word;
        flex: unset !important;
        padding: 0.5em 0.2em !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }
}
@media (max-width: 600px) {
    .card-animation-container.timeline-triggered ul {
        font-size: 0.95rem !important;
    }
    .card-animation-container.timeline-triggered ul li {
        font-size: 0.95rem !important;
    }
}

/* Notification Bell Dropdown Custom Styles */
.top-navbar .notif-bell-container {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.dropdown.notif-bell {
    position: relative;
    margin-left: 1.5rem;
}

.dropdown.notif-bell .fa-bell {
    color: var(--primary-green);
    transition: color 0.2s;
}

.dropdown.notif-bell .fa-bell:hover {
    color: var(--secondary-green);
}

#notif-badge {
    background: var(--secondary-green) !important;
    color: #fff;
    font-weight: 600;
    font-size: 0.8em;
    min-width: 20px;
    min-height: 20px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(18, 130, 65, 0.15);
    top: 2px !important;
    right: 2px !important;
}

.dropdown-menu.notif-dropdown {
    min-width: 340px;
    max-width: 400px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(18, 130, 65, 0.12);
    border: none;
    padding: 0;
    overflow: hidden;
    right: 0 !important;
    left: auto !important;
}

.dropdown-menu.notif-dropdown .dropdown-header {
    background: var(--bg-gray);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1em;
    border-bottom: 1px solid #e9ecef;
}

#notif-list .notif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f1f1f1;
}
#notif-list .notif-item:last-child {
    border-bottom: none;
}
#notif-list .notif-item.unread {
    background: #e9f7ef;
    font-weight: 600;
}
#notif-list .notif-item.read {
    background: #fff;
    font-weight: 400;
}
#notif-list .notif-item:hover {
    background: var(--light-green);
}
#notif-list .notif-icon {
    color: var(--primary-green);
    font-size: 1.2em;
    min-width: 28px;
    text-align: center;
}
#notif-list .notif-content {
    flex: 1;
    color: var(--dark-text);
    font-size: 1em;
}
#notif-list .notif-time {
    color: var(--gray);
    font-size: 0.85em;
    margin-left: 8px;
}

/* Responsive: stack bell on right for mobile */
@media (max-width: 991px) {
    .top-navbar .notif-bell-container {
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-end;
        width: 100%;
    }
    .dropdown-menu.notif-dropdown {
        min-width: 90vw;
        max-width: 98vw;
        right: 0 !important;
        left: auto !important;
    }
}

/* Ensure bell is always at far right in flex */
.top-navbar .d-flex.align-items-center {
    margin-left: auto !important;
    justify-content: flex-end !important;
}

/* Hide badge if no unread */
#notif-badge[style*="display: none"] {
    visibility: hidden;
}

/* View All link styling */
.dropdown-menu.notif-dropdown .dropdown-item.text-center {
    background: var(--bg-gray);
    color: var(--primary-green);
    font-weight: 500;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 14px 14px;
    transition: background 0.2s;
}
.dropdown-menu.notif-dropdown .dropdown-item.text-center:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Updated Top Navbar and Badge Styles */
.top-navbar .d-flex.align-items-center span {
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
}

.badge {
    padding: 0.3em 0.5em;
    font-weight: 600;
    border-radius: 0.4rem;
    font-size: 0.98rem;
}

/* Email span styling */
span.me-3:has(a[href^="mailto:"]) {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

span.me-3:has(a[href^="mailto:"]) a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
}

span.me-3:has(a[href^="mailto:"]) a:hover {
    color: #218838;
    text-decoration: underline;
}

/* For email spans without links (direct email display) */
span.me-3:not(:has(a)) {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 0.375rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

span.me-3:not(:has(a)):hover {
    background-color: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}

.client-logos-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
    margin-right: 10px !important;
    /* Remove Swiper's default large width and spacing */
}
.client-logos-swiper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.client-logos-swiper img {
    max-width: 150px;
    max-height: auto;
    width: auto;
    height: auto;
}
@media (max-width: 767px) {
    .client-logos-swiper img {
        max-width: 60px;
        max-height: 30px;
    }
}

#subscribe-success-message {
    padding-bottom: 22px;
    padding-top: 10px;
}
.ql-align-center{text-align:center;}
.btn:hover {

    border-color:none;
}
.btn-outline-primary{
color:#20db6e!important;
border-color:#20db6e!important;
}
.btn-outline-primary:hover{
border-color:transparent!important;
}