/* Thermonic Website - Home Page CSS Styles
   This stylesheet contains styles specific to the home page
*/

/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    color: #fff;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 53, 87, 0.8) 30%, rgba(29, 53, 87, 0.6) 70%, rgba(29, 53, 87, 0.4) 100%);
}

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

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #f1faee;
    margin-bottom: 30px;
}

.hero-content .btn {
    margin-top: 10px;
}

/* About Brief Section */
.about-brief-section {
    padding: 100px 0;
}

.about-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-content {
    padding: 30px 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.counter-box {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.counter-box h2 {
    color: #3c5f8e;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box p {
    color: #1d3557;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 60px;
    width: auto;
}

.feature-icon i {
    font-size: 48px;
    color: #3c5f8e;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

/* Products Section */
.products-section {
    padding: 100px 0;
}

.product-category-box {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-category-image {
    height: 200px;
    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-category-box:hover .product-category-image img {
    transform: scale(1.1);
}

.product-category-content {
    padding: 20px;
}

.product-category-content h3 {
    margin-bottom: 10px;
    color: #1d3557;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
}

.industry-box {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-image {
    height: 220px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.industry-box:hover .industry-image img {
    transform: scale(1.1);
}

.industry-content {
    padding: 20px;
}

.industry-content h3 {
    margin-bottom: 10px;
    color: #1d3557;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(230, 57, 70, 0.8), rgba(29, 53, 87, 0.8)); */
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: #f1faee;
    margin-bottom: 30px;
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
}

.certification-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.certification-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-image {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-image img {
    max-height: 100%;
    max-width: 100%;
}

.certification-box h4 {
    margin-bottom: 0;
    color: #1d3557;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
}

.client-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-box img {
    max-height: 80px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-box:hover img {
    filter: grayscale(0%);
}

/* Media Queries */
@media (max-width: 425px) {
    .navbar-nav .nav-link{
        color: black!important;
    }
}
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .counter-box h2 {
        font-size: 2.5rem;
    }
    
    .about-brief-section,
    .features-section,
    .products-section,
    .industries-section,
    .cta-section,
    .certifications-section,
    .clients-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .counter-box h2 {
        font-size: 2rem;
    }
    
    .about-brief-section,
    .features-section,
    .products-section,
    .industries-section,
    .cta-section,
    .certifications-section,
    .clients-section {
        padding: 60px 0;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .counter-box h2 {
        font-size: 1.8rem;
    }
    
    .about-brief-section,
    .features-section,
    .products-section,
    .industries-section,
    .cta-section,
    .certifications-section,
    .clients-section {
        padding: 50px 0;
    }
}


/* New Design */
.section {
  position: relative;
  height: 650px; /* fixed height for uniform layout */
  overflow: hidden;
}

.section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 67, 128, 0.4); /* Light blue consistent overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 66px;
  text-align: left;
}

.overlay h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
}

.overlay p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 90%;
}

.overlay a {
  padding: 10px 25px;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.overlay a:hover {
    background-color: transparent;
    border-color: white;
}

.home_page_sec1 .col-md-4{
    padding-left: 0px!important;
    padding-right: 0px!important;
}

#thermonic_main_header{
    background-color: transparent !important;
    position: absolute!important;
    width: 100%!important;
    top: 0!important;
    z-index: 10!important;
    margin-top: 44px!important;
}
#thermonic_main_header .shadow-sm {
    box-shadow: none!important;
}
#thermonic_main_header .bg-white {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.shadow-sm {
    box-shadow: none;
}
.main-header {
    box-shadow: none;
}
.features-section img{
    width: 110px;
    height: 110px;
}



/*========= Loader ===============*/
.diamondCon ul, .diamondCon li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diamondCon {
    width: 100vw;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    /* margin: auto; */
    background: #FFFFFF;
    z-index: 1200;
}

.diamond {
    display: block;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.diamond li {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0;
  z-index: 100;
  transition: 400ms ease;
}

.diamond li:nth-child(1) {
  border-width: 20px 20px 0 20px;
  border-color: #7AD997 transparent transparent transparent;
  left: 0;
  right: 0;
  margin: auto;
  animation: traingle1 200ms 2.2s ease, opacity 2s 2.4s ease infinite;
  animation-fill-mode: forwards;
}

.diamond li:nth-child(2) {
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #64C592;
  left: 59px;
  animation: traingle2 200ms 1.8s ease, opacity 2s 2.4s ease infinite;
  animation-fill-mode: forwards;
}

.diamond li:nth-child(3) {
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #54B28D;
  right: 59px;
  animation: traingle3 200ms 2s ease, opacity 2s 2.4s ease infinite;
  animation-fill-mode: forwards;
}

.diamond li:nth-child(4) {
  border-width: 0 20px 20px 20px;
  border-width: 20px 20px 0 20px;
  border-color: #7AD997 transparent transparent transparent;
  animation: traingle4 200ms 1.6s ease, opacity 2s 2.6s ease infinite;
  animation-fill-mode: forwards;
}

.diamond li:nth-child(5) {
  border-width: 0 20px 20px 20px;
  border-width: 20px 20px 0 20px;
  border-color: #B4FEA5 transparent transparent transparent;
  animation: traingle5 200ms 1.4s ease, opacity 2s 2.6s ease infinite;
  animation-fill-mode: forwards;
}

.diamond li:nth-child(6) {
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #90EF9D;
  left: 0;
  right: 0;
  margin: auto;
  animation: traingle6 200ms 1.2s ease, opacity 2s 2.6s ease infinite;
  animation-fill-mode: forwards;
}

.diamond li:nth-child(7) {
  border-width: 20px 20px 0 20px;
  border-color: #C9FEAC transparent transparent transparent;
  left: 0;
  right: 0;
  margin: auto;
  animation: traingle7 200ms 1s ease, opacity 2s 2.8s ease infinite;
  animation-fill-mode: forwards;
}

.textCon {
  width: 200px;
  height: 50px;
  position: absolute;
  top: 0;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  font-family: Dancing Script;
  color: #fff;
  opacity: 0;
  animation: text 500ms 2.4s ease;
  animation-fill-mode: forwards;
}

@keyframes traingle1 {
  0% {
    top: -50px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes traingle2 {
  0% {
    top: -50px;
    opacity: 0;
  }
  100% {
    top: 1px;
    opacity: 1;
  }
}

@keyframes traingle3 {
  0% {
    top: -50px;
    opacity: 0;
  }
  100% {
    top: 1px;
    opacity: 1;
  }
}

@keyframes traingle4 {
  0% {
    right: 59px;
    top: -33px;
    opacity: 0;
  }
  100% {
    right: 59px;
    top: 22px;
    opacity: 1;
  }
}

@keyframes traingle5 {
  0% {
    left: 59px;
    top: -33px;
    opacity: 0;
  }
  100% {
    left: 59px;
    top: 22px;
    opacity: 1;
  }
}

@keyframes traingle6 {
  0% {
    top: -33px;
    opacity: 0;
  }
  100% {
    top: 23px;
    opacity: 1;
  }
}

@keyframes traingle7 {
  0% {
    top: -10px;
    opacity: 0;
  }
  100% {
    top: 44px;
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 70px;
    opacity: 1;
  }
}

 /* ===== CSS Variables ===== */
 :root {
     --gold: #C6A972;
     --platinum: #E5E4E2;
     --dark: #0F0F0F;
     --light-dark: #1A1A1A;
     --white: #FFFFFF;
     --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 /* ===== Carousel Section Styles ===== */
 .s_carousel {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
     margin: 0;
     padding: 0;
     font-family: 'Montserrat', sans-serif;
     color: var(--white);
 }

 /* Vanta.js container - only for this section */
 #vanta-container {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: var(--dark);
 }

 .main-container {
     position: relative;
     height: 100%;
     width: 100%;
     display: flex;
     flex-direction: column;
     z-index: 1;
 }

 .carousel-container {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 5%;
     position: relative;
 }

 .carousel-home {
     width: 100%;
     max-width: 1400px;
     height: 70vh;
     position: relative;
     overflow: hidden;
 }

 .carousel-track {
     display: flex;
     height: 100%;
     transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .carousel-slide {
     min-width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 5%;
 }

 .slide-content {
     width: 45%;
     opacity: 0;
     transform: translateX(-30px);
     transition: var(--transition);
     transition-delay: 0.3s;
 }

 .carousel-slide.active .slide-content {
     opacity: 1;
     transform: translateX(0);
 }

 .slide-content h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.8rem;
     font-weight: 500;
     margin-bottom: 1.5rem;
     line-height: 1.2;
     color: var(--platinum);
 }

 .slide-content h2 span {
     color: var(--gold);
 }

 .slide-content p {
     font-size: 1rem;
     line-height: 1.7;
     margin-bottom: 2.5rem;
     color: rgba(255, 255, 255, 0.7);
     max-width: 90%;
 }

 .btn-home {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 0.9rem 2rem;
     background: transparent;
     color: var(--gold);
     border: 1px solid var(--gold);
     border-radius: 0;
     font-size: 0.85rem;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     text-decoration: none;
     transition: var(--transition);
 }

 .btn-home i {
     transition: var(--transition);
 }

 .btn-home:hover {
     background: var(--gold);
     color: var(--dark);
 }

 .btn-home:hover i {
     transform: translateX(3px);
 }

 .slide-image {
     width: 45%;
     height: 80%;
     position: relative;
     overflow: hidden;
     opacity: 0;
     transform: translateX(30px);
     transition: var(--transition);
     transition-delay: 0.5s;
 }

 .carousel-slide.active .slide-image {
     opacity: 1;
     transform: translateX(0);
 }

 .slide-image img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
 }

 .carousel-nav {
     position: absolute;
     bottom: 10%;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 1rem;
     z-index: 5;
 }

 .nav-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     cursor: pointer;
     transition: var(--transition);
 }

 .nav-dot.active {
     background: var(--gold);
     transform: scale(1.3);
 }

 .carousel-arrows {
     position: absolute;
     top: 50%;
     width: calc(100% + 100px);
     left: -50px;
     display: flex;
     justify-content: space-between;
     z-index: 5;
     pointer-events: none;
 }

 .arrow-hm {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: rgba(15, 15, 15, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: var(--transition);
     pointer-events: all;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(5px);
 }

 .arrow-hm:hover {
     background: var(--gold);
 }

 .arrow-hm:hover i {
     color: var(--dark);
 }

 .arrow-hm i {
     font-size: 1rem;
     color: var(--platinum);
     transition: var(--transition);
 }

 .social-links {
     position: absolute;
     right: 3%;
     bottom: 10%;
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
     z-index: 5;
 }

 .social-links a {
     color: var(--platinum);
     font-size: 1rem;
     transition: var(--transition);
 }

 .social-links a:hover {
     color: var(--gold);
     transform: translateY(-3px);
 }

 .slide-number {
     position: absolute;
     left: 5%;
     bottom: 10%;
     font-size: 0.9rem;
     letter-spacing: 1px;
     color: rgba(255, 255, 255, 0.5);
     z-index: 5;
 }

 .slide-number span {
     color: var(--gold);
     font-size: 1.1rem;
 }

 /* ===== Responsive Styles ===== */
 @media (max-width: 1024px) {
     .carousel-slide {
         flex-direction: column;
         justify-content: center;
         gap: 2rem;
         padding-top: 2rem;
     }

     .slide-content,
     .slide-image {
         width: 80%;
         text-align: center;
     }

     .slide-content p {
         margin-left: auto;
         margin-right: auto;
     }

     .slide-image {
         height: 50%;
     }
 }

/* ===== Enhanced Mobile Responsiveness ===== */
@media (max-width: 1024px) {
    .carousel-slide {
        padding-top: 3rem;
        gap: 3rem;
    }

    .slide-content,
    .slide-image {
        width: 85%;
    }

    .slide-image {
        height: 45%;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .s_carousel {
        height: 100vh;
        height: 100dvh; /* New dynamic viewport unit */
        min-height: -webkit-fill-available;
    }

    .carousel-home {
        height: calc(100vh - 80px);
        padding: 0;
    }

    .carousel-slide {
        flex-direction: column-reverse;
        justify-content: space-evenly;
        padding: 20px 0 60px;
        gap: 1.5rem;
    }

    .slide-content {
        width: 90%;
        margin: 0 auto;
        padding: 0;
        transform: none !important; /* Override animation offsets */
    }

    .slide-image {
        width: 100%;
        height: auto;
        max-height: 40vh;
        min-height: 250px;
        margin: 0;
        padding: 0 10%;
        transform: none !important;
    }

    .slide-image img {
        object-fit: contain;
        object-position: center;
    }

    .slide-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .btn-home {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
    }

    .carousel-nav {
        bottom: 80px;
        gap: 0.8rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-arrows {
        top: auto;
        bottom: 20px;
        left: 0;
        width: 100%;
        padding: 0 5%;
        justify-content: space-between;
    }

    .arrow-hm {
        position: relative;
        width: 45px;
        height: 45px;
        margin: 0;
    }

    .social-links {
        display: none;
    }

    .slide-number {
        display: none;
    }
}

/* iPhone SE and similar small devices */
@media (max-width: 375px) {
    .slide-content h2 {
        font-size: 1.7rem;
    }

    .slide-image {
        min-height: 220px;
    }

    .btn-home {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .carousel-slide {
        padding-top: 5rem;
    }

    .slide-image {
        height: 50%;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .carousel-slide {
        flex-direction: row;
        align-items: center;
        padding: 0 5%;
    }

    .slide-content {
        width: 45%;
        padding-right: 5%;
    }

    .slide-image {
        width: 45%;
        height: 70vh;
        padding: 0;
    }

    .carousel-nav {
        bottom: 20px;
    }

    .carousel-arrows {
        top: 50%;
        bottom: auto;
    }
}

/* Smooth Loading Transition */
.carousel-slide {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Perfect Image Scaling */
.slide-image img {
    transform: scale(0.95);
    transition: transform 0.5s ease;
}

.carousel-slide.active .slide-image img {
    transform: scale(1);
}

/* ===== Carousel Arrows Visibility ===== */
.carousel-arrows {
    display: none; /* Hide by default */
}

/* Show only on touch devices (mobile/tablet) */
@media (max-width: 1024px) {
    .carousel-arrows {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        justify-content: space-between;
        z-index: 5;
        pointer-events: none;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .arrow-hm {
        pointer-events: all;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(15, 15, 15, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }

    .arrow-hm i {
        font-size: 1rem;
        color: var(--platinum);
    }

    /* Mobile specific adjustments */
    @media (max-width: 767px) {
        .carousel-arrows {
            padding: 0 15px;
        }

        .arrow-hm {
            width: 40px;
            height: 40px;
            background: rgba(15, 15, 15, 0.8);
        }
    }
}
/* ===== Full Image Slide Styles ===== */
.carousel-slide.full-image {
    padding: 0;
    position: relative;
}

.carousel-slide.full-image .full-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide.full-image .full-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-slide.full-image .image-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.carousel-slide.full-image .image-overlay-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-slide.full-image .image-overlay-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ===== Video Slide Styles ===== */
.carousel-slide.video-slide {
    padding: 0;
    position: relative;
}

.carousel-slide.video-slide .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-slide.video-slide .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.carousel-slide.video-slide .video-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 600px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.carousel-slide.video-slide .video-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.carousel-slide.video-slide .video-content h2 span {
    color: var(--gold);
}

.carousel-slide.video-slide .video-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive adjustments for new slide types ===== */
@media (max-width: 1024px) {
    .carousel-slide.full-image .image-overlay-content h2 {
        font-size: 3rem;
    }

    .carousel-slide.video-slide .video-content {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        max-width: 80%;
    }

    .carousel-slide.video-slide .video-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-slide.full-image .image-overlay-content h2 {
        font-size: 2rem;
    }

    .carousel-slide.full-image .image-overlay-content p {
        font-size: 1rem;
    }

    .carousel-slide.video-slide .video-content {
        bottom: 20%;
        max-width: 90%;
    }

    .carousel-slide.video-slide .video-content h2 {
        font-size: 2rem;
    }

    .carousel-slide.video-slide .video-content p {
        font-size: 0.95rem;
    }
}

/* ===== Adjust z-index for content to appear above gradient ===== */
.carousel-slide.full-image .image-overlay-content {
    z-index: 3;
}

.carousel-slide.video-slide .video-overlay {
    z-index: 2;
}

.carousel-slide.video-slide .video-content {
    z-index: 3;
}

/* ===== Make Carousel Fullscreen-like ===== */
.carousel-home {
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.carousel-container {
    padding: 0;
    height: 100vh;
}

/* ===== Make Full Image Slide Truly Fullscreen ===== */
.carousel-slide.full-image {
    width: 100vw;
    height: 100vh;
}

.carousel-slide.full-image .full-image-container {
    width: 100vw;
    height: 100vh;
}

.carousel-slide.full-image .full-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== Make Video Slide Truly Fullscreen ===== */
.carousel-slide.video-slide {
    width: 100vw;
    height: 100vh;
}

.carousel-slide.video-slide .video-container {
    width: 100vw;
    height: 100vh;
}

.carousel-slide.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== Adjust Navigation for Fullscreen ===== */

.products-header-section {
    position: relative;
    color: #fff;
}
.products-header-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}
.products-header-section .container {
    position: relative;
    z-index: 2;
}

.card {
    position: relative;
    overflow: hidden;
}

.card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .overlay {
    opacity: 1;
}

.breadcrumb-glass {
    display: inline-flex;
    font-size: 21px;
}

.breadcrumb-glass span {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 21px; /* arrow ko thoda bada kiya */
    color: white; /* halka grey for better look */
}

.breadcrumb-glass a {
    text-decoration: none;
    color: white; /* red like screenshot */
}

.breadcrumb-glass span:last-child {
    color: white; /* last text ka color black */
}

.breadcrumb-glass i.fa-home {
    margin-right: 5px;
    font-size: 21px; /* size adjust */
}





.video-carousel.static-test .video-item {
    flex: 1 1 200px;
    max-width: 220px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}


/* Blog */

.blog-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 60px; /* Add space on both sides for buttons */
    box-sizing: border-box;
}

.blog-carousel-window {
    overflow: hidden;
    width: 100%;
}

.blog-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.blog-card {
    flex: 0 0 calc((100% - 40px)/3);
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img.img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-content p{
    color: #777777;
}

.blog-carousel-section{
    margin-bottom: 30px!important;
}

/* Carousel arrows outside the image */
.blog-prev-btn,
.blog-next-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    color: #333;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.blog-prev-btn:hover,
.blog-next-btn:hover {
    background: #007BFF;
    color: #fff;
    border-color: #007BFF;
}

.blog-prev-btn {
    left: 16px; /* Move more outside */
}

.blog-next-btn {
    right: 16px; /* Move more outside */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-card { flex: 0 0 calc((100% - 20px)/2); }
    .blog-prev-btn { left: -10px; }
    .blog-next-btn { right: -10px; }
}

@media (max-width: 576px) {
    .blog-card { flex: 0 0 100%; }
    .blog-prev-btn,
    .blog-next-btn {
        top: 35%;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}



