*{
padding: 0;
margin: 0;
box-sizing: border-box;
transition: all 0.3s ease;
}
:root{
--primary-color: #2f98b3;
--primary-light-color: #a2ecff;
--secondary-color: #31347b;
--tertiary-color: #00ffd5;
--bg-color: #fff;
--text-color: #000;
}
body{
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /*flex-direction: column;*/
    min-height: 100vh;
    background-color: var(--bg-color);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Montserrat", sans-serif;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--primary-color);
  padding: 6px 0;
  font-size: 14px;
  padding-right: 10%;
}
.top-bar .container {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  color: white;
}

.top-bar a{
  color: white;
  text-decoration: none;
}

/* ===== Desktop Header ===== */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.main-header {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #eee;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logo{
    width: 75px;
    aspect-ratio: 1/1;    
}

.logo img{
    width: 100%;
    height: 100%;   
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}
.desktop-nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav ul li a:hover {
  color: var(--primary-color);
}

.mobile-slide-menu{
    display: none;
}


/* Dropdown wrapper */
.desktop-nav .drop {
  position: relative;
}

/* Dropdown list */
.desktop-nav .dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  /* width: 180px; */
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 999;
}

.desktop-nav .dropdown-menu li {
  padding: 0;
}

.desktop-nav .dropdown-menu li a {
  padding: 10px 15px;
  display: block;
  white-space: nowrap;
  color: #333;
  font-size: 15px;
}

.desktop-nav .dropdown-menu li a:hover {
  background: #f5f5f5;
  color: var(--secondary-color);
}

/*** ACTIVE DROPDOWN ***/
.desktop-nav .dropdown-menu.active {
  display: block;
}


/* Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* Search Box */
.search-box {
  background: #fff;
  padding: 20px 25px;
  width: 450px;
  max-width: 90%;
  display: flex;
  gap: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-box input {
  flex: 1;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.search-box input:focus {
  outline: none;
  border-color: #0084ff;
}

.close-search {
  background: #ff4d4d;
  border: none;
  color: white;
  padding: 0 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}


/* Hide Desktop Nav in Mobile */
@media(max-width: 768px){
  .main-header { display: none; }
}

/* ===== Mobile Bottom Fixed Navbar ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
}


.mobile-bottom-nav .nav-btn {
  background: none;
  border: none;
  text-decoration: none;
  font-size: 14px;
  color: var(--secondary-color);
}
.mobile-bottom-nav .nav-btn span {
  font-size: 24px;
  display: block;
}

.menu-btn::before {
  content: '☰';
}

.menu-btn.active::before {
  content: '✖';
}

/* Show Mobile Nav */
@media(max-width: 768px){
  .mobile-bottom-nav { display: grid; }
  .top-bar .container {
    justify-content: center;
  }

  .top-bar .container span:nth-child(odd) {
    display: none;
  }
}

/* ===== Mobile Slide Menu ===== */
.mobile-slide-menu {
  display: block;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  /* height: 60%; */
  background: #fff;
  border-top: 1px solid #ddd;
  transform: translateY(100%);
  transition: .35s ease;
  padding: 20px 30px;
  z-index: 99;
  overflow-y: auto;
}

.mobile-slide-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-slide-menu ul li {
  padding: 15px 0;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.mobile-slide-menu ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px;
  color: #333;
  font-size: 16px
}

.close-menu {
  margin-top: 50px;
  background: var(--primary-color);
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  width: 100%;
}

/* Active Slide Menu State */
.mobile-slide-menu.active {
  transform: translateY(0%);
}


.mobile-slide-menu .dropdown-list {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height .35s ease;
}

.mobile-slide-menu .dropdown-list li a {
  padding: 12px 20px;
  font-size: 15px;
}

.mobile-slide-menu .drop.open .dropdown-list {
  max-height: 300px; /* enough height to expand */
}

.mobile-slide-menu .drop-toggle i {
  float: right;
  transition: transform .3s;
}

.mobile-slide-menu .drop.open .drop-toggle i {
  transform: rotate(180deg);
}



.sticky-cta {
    position: fixed;
    top: 50%;
    right: -55px; /* adjust as needed */
    transform: translateY(-50%) rotate(-90deg);
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 9;
    transition: 0.3s ease;
}

.sticky-cta:hover {
  cursor: pointer;
    background: var(--secondary-color);
    /* right: -50px; */
}
@media (max-width: 600px) {
    .sticky-cta {
        right: -45px;
        padding: 10px 20px;
        font-size: 13px;
    }
}





/* OVERLAY */
.exit-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
     padding: 10px;padding: 10px;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 9998;
}

/* POPUP BOX */
.exit-popup {
    position: fixed;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%) translateY(50%);
   width: calc(100% - 20px);
    max-width: 550px;
    background: #fff;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    opacity: 0;
    transition: 0.5s ease;
    z-index: 9999;
    text-align: left;
    font-family: Arial;
}

/* ACTIVE STATE */
.exit-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.exit-popup.active {
    bottom: 50%;
    transform: translateX(-50%) translateY(50%);
    opacity: 1;
}

/* CLOSE BUTTON */
.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
}

.exit-popup .note{
    font-size: 12px;
    color: #888;
    margin: 10px 0px;
    font-style: italic;
}




/* HEADING */
.exit-popup h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.exit-popup h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.small-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

.small-text span{
  color: #646464;
    display: block;
    margin-bottom: 10px;
}

.small-text a{
    color: var(--primary-color);
    text-decoration: none;
}

.mini-note {
    font-size: 12px;
    margin-top: 15px;
    color: #666;
}

/* PHONE INPUT ROW */
.phone-box {
    display: flex;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    margin-bottom: 15px;
}

.flag {
    background: #f5f5f5;
    padding: 12px 15px;
    font-size: 15px;
    border-right: 1px solid #ddd;
}

.phone-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 15px;
}

.callback-btn {
    background: var(--primary-light-color);
    border: none;
    padding: 12px 20px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.callback-btn:hover {
    background: var(--secondary-color);
    color: white;
}


@media (max-width: 768px){
  /* .exit-popup {
    text-align: center;
  } */
  .phone-box{
    flex-direction: column;
    gap: 10px;
    border: none;
    position: relative;
  }
  .flag{
    position: absolute;
  }
  .phone-input{
    padding-left: 80px;
    border: 1px solid #ddd;
  }
}



.notice_text{
  margin: 20px 10px;
  padding: 10px 20px;
  background-color: #f4ab36;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


#notificationContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
}

.notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #f4ab36;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.success{
  background-color: #0dcb75;
}

.error{
  background-color: #f43636;
}

.notification .message {
  font-size: 14px;
  flex: 1;
}

.notification .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.notification .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  animation: progress 5s linear;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}




/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

/* Background slider images */
.hero-slider {
  width: 100%;
  height: 100%;
   /* height: 100vh; */
  /* position: absolute; */
  /* top: 0; left: 0; */
}

.hero-slider .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}




/* ===== CARD BOX ===== */
.hero-content-box {
  position: relative;
  top: -150px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  background: #fff;
  width: 85%;
  max-width: 1100px;
  padding: 40px 50px;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  box-shadow: 0px 5px 30px rgba(0,0,0,0.15);
}

.hero-content-box h2 {
  color: var(--secondary-color);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content-box p {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #555;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 25px auto;
}

.read-more{
  color: var(--primary-color);
  font-weight: 550;
  font-size: 14px;
  text-decoration: none;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.btn {
  padding: 12px 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0px;
  background: var(--primary-color);
  color: #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}

/* Center Split Fill Effect */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: #303439;
  opacity: 0;
  transition: width 0.5s ease, opacity 0.3s ease;
  /* border-radius: 5px; */
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
  opacity: 1;
}

.btn:hover {
  color: #fff;
}


.yellow-btn {
  background: var(--primary-color);
  color: #fff;
}

.dark-btn {
  background: #222;
  color: #fff;
}

.yellow-btn:hover {
  background: var(--primary-color);
}

.btn::before.dark-btn:hover {
  background: var(--primary-color);
  box-shadow: inset 0 0 0 0 #303439;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .hero-section { height: 50vh; }

  .hero-content-box {
    width: 95%;
    bottom: -40px;
    padding: 25px;
  }

  .hero-content-box h2 {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media(max-width: 1024px){
.hero-section { min-height: 70vh; }
  /* ===== CARD BOX ===== */
  .hero-content-box {
    position: relative;
    top: 0px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    max-width: 1100px;
    box-shadow: none;
  }
}

  @media(max-width: 548px){
    .hero-section { min-height: 35vh; }
  }








/* Section Wrapper */
.products-section {
  padding: 70px 0;
  /* padding-top: rem; */
  background: #fff;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: clamp(24px, 4vw, 32px);
  color: #222;
  font-weight: 700;
  margin-left: 30px;
}

.title-underline {
  height: 3px;
  width: 60px;
  margin-left: 30px;
  background: var(--primary-color);
  margin-top: 8px;
  margin-bottom: 40px;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 0 30px;
}

/* PRODUCT CARD */
.product-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* IMAGE */
.product-img {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

/* ------------ CENTER EXPAND HOVER OVERLAY ------------ */
.product-img .overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* width: 0;
  height: 0; */
   width: 100%;
  height: 100%;
  background: rgba(61, 66, 72, 0.577);
  opacity: 0;
  transition: width .5s ease, opacity .7s ease;
  z-index: 2;
}

.product-card:hover .overlay {
  opacity: 1;
}

/* Zoom effect on image */
.product-card:hover img {
  transform: scale(1.1);
}

/* ------------ VIEW DETAILS BUTTON ------------ */
.view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  padding: 10px 20px;
  /* background: var(--primary-color); */
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0px;
  text-decoration: none;
  opacity: 0;
  transition: .4s ease;
  z-index: 3;
}

.view-btn.btn{
  background: transparent;
}

.product-card:hover .view-btn {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Title */
.product-card h3 {
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

/* View All Button */
.view-all-btn-box {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 35px;
  /* border-radius: 5px; */
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background: var(--secondary-color);
}

/* Responsive */
@media(max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}











/* MAIN SECTION */
.about-section {
  padding: 80px 0;
  background: #fff;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-left {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* LEFT IMAGE */
.about-left img {
  width: 100%;
  height: 100%;
  max-width: 400px;
  /* max-height: 400px; */
  aspect-ratio: 1/1;
  border-radius: 10px;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
}

/* RIGHT SIDE TEXT */
.about-right h2 {
  font-size: 34px;
  font-weight: 800;
  color: #222;
}

.about-right h2 span {
  color: var(--primary-color);
}

.about-right p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 600px;
}

.about-right .read-more {
  color: var(--primary-color);
  font-weight: 600;
  margin-left: 5px;
}

/* ====== STATS ICONS ====== */
.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
}

/* circular icon background */
.stat-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.54);
  margin: 0 auto 15px auto;
  transition: 0.3s ease;
}

.stat-icon img {
  width: 70px;
  opacity: 0.9;
}

.stat-icon:hover {
  /* opacity: 1; */
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.stat-icon:hover img{
  opacity: 1;
}

.stat-box h3 {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
}

.stat-box p {
  font-size: 15px;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-left{
    margin: 0 auto;
  }

  .about-right p {
    margin: auto;
  }

  .about-stats {
    justify-content: center;
    gap: 40px;
  }
}














/* Section */
.featured-section {
  position: relative;
  padding: 80px 0 100px 0;
  overflow: hidden;
  max-height: 100vh;
}

/* Blurred BG */
.featured-bg {
  background: url('assets/images/hero slider/5ee70745ba435f0001b5e969.webp') center/cover no-repeat;
  filter: blur(6px) brightness(0.7);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

/* Container */
.featured-container {
  width: 85%;
  margin: auto;
  text-align: left;
}

/* Title */
.featured-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.featured-underline {
  margin-top: 8px;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 40px;
}








.swiper-slide {
  /* background: #fafafa; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border: 1px solid #ddd; */
  border-radius: 12px;
  min-width: 300px;
  aspect-ratio: 12/9;
  /* padding: 20px; */
  flex-shrink: 0;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
} 

.review-card{
  overflow: hidden;
  border-radius: 0; 
  transition: 0.3s ease;
}

.review-header{
  width: 100%;
  height: 100%;
}

.user-avatar{
  width: 100%;
  height: 100%;
}


.hero-slide{
  width: 100%;
  height: 100%;
}





/* ------------ CENTER EXPAND HOVER OVERLAY ------------ */
.review-header .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translateX(-50%); */
  width: 0;
  /* height: 0; */
   /* width: 100%; */
   text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: rgba(10, 10, 10, 0.826);
  opacity: 0;
  transition: width .5s ease, opacity .7s ease;
  z-index: 2;
}

.card-overlay h4{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 10px;
}

.review-card:hover .card-overlay {
  opacity: 1;
  width: 100%;
}


/* ------------ VIEW DETAILS BUTTON ------------ */
.card-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  padding: 10px 20px;
  /* background: var(--primary-color); */
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0px;
  text-decoration: none;
  opacity: 0;
  transition: .4s ease;
  z-index: 3;
}

.client-name{
  color: var(--primary-color);
  border: none;
  text-decoration: none;
  display: none;
}

.card-view-btn.btn{
  background: transparent;
}

.review-card:hover .card-view-btn {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.review-card:hover .client-name {
  display: block;
}




















/* SECTION */
.latest-news-section {
  padding: 80px 0;
}

/* Title */
.news-title {
  font-size: 34px;
  font-weight: 800;
  margin-left: 30px;
  color: #222;
}

.news-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-left: 30px;
  margin-top: 8px;
  margin-bottom: 40px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 0 30px;
}

/* NEWS CARD */
.news-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.news-img {
  position: relative;
}

/* IMAGE */
.news-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}


/* ------------ CENTER EXPAND HOVER OVERLAY ------------ */
.news-img .flip-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* width: 0;
  height: 0; */
   width: 100%;
  height: 100%;
  background: rgba(61, 66, 72, 0.577);
  opacity: 0;
  transition: width .5s ease, opacity .7s ease;
  z-index: 2;
}

.news-card:hover .flip-overlay {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
}

/* Zoom effect on image */
.news-card:hover img {
  transform: scale(1.1);
}

/* ------------ VIEW DETAILS BUTTON ------------ */
.view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  padding: 10px 20px;
  /* background: var(--primary-color); */
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0px;
  text-decoration: none;
  opacity: 0;
  transition: .4s ease;
  z-index: 3;
}

.view-btn.btn{
  background: transparent;
}

.product-card:hover .view-btn {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* CONTENT */
.news-content {
  padding: 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.news-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
}

/* READ MORE BUTTON */
.read-btn {
  display: inline-block;
  background: var(--primary-color);
  padding: 12px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  /* border-radius: 5px; */
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s ease;
}

.read-btn:hover {
  background: var(--secondary-color);
}

/* VIEW ALL UPDATES BUTTON */
.view-all-btn-box {
  text-align: center;
  margin-top: 40px;
}

.view-all-news-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 35px;
  /* border-radius: 5px; */
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
}

.view-all-news-btn:hover {
  background: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}




















/* MAIN SECTION */
.callback-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
}

/* FIXED BACKGROUND */
.callback-bg {
  background: url('assets/images/hero slider/5ee70745ba435f0001b5e969.webp') center/cover no-repeat;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
  z-index: -1;
  background-attachment: fixed;
}

/* CONTAINER (2 column layout) */
.callback-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.callback-left h2 {
  font-size: 42px;
  font-weight: 800;
}

.cb-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px 0 25px 0;
}

.callback-left h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.callback-left p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 500px;
  color: #f1f1f1;
}

.callback-left a {
  color: var(--primary-color);
  font-weight: 600;
}

/* RIGHT FORM */
.cb-input,
.cb-textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #ffffff70;
  background: transparent;
  border-radius: 4px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 17px;
}

.cb-input::placeholder,
.cb-textarea::placeholder {
  color: #e2e2e2;
}

.cb-textarea {
  height: 140px;
  resize: none;
}

/* BUTTON */
.cb-btn {
  background: var(--primary-color);
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.cb-btn:hover {
  background: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 900px) {


  .callback-left p {
    margin: auto;
  }
}



.client-card{
  max-width: 150px;
}

.client-card .review-header{
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  
}

.client-card .review-header img{
  height: auto;
}











.main-footer {
  background: #1d1d1d;
  color: #757575;
  padding-top: 60px;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

/* Titles */
.footer-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* CUSTOMER LIST */
.customer-list li {
  margin-bottom: 15px;
  font-size: 15px;
  position: relative;
  padding-left: 18px;
  list-style-type: none;
  line-height: 1.5;
}

.customer-list li:hover{
  color: var(--primary-color)
}

.customer-list li i{
  font-weight: 800;
  margin-right: 4px;
  color: var(--primary-color);
}

/* .customer-list li::before {
  content: "›";
  position: absolute;
  left: 0;
} */

/* OPENING HOURS */
.opening-hours li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style-type: none;
}

/* SUBSCRIBE BOX */
.subscribe-text {
  margin-bottom: 15px;
  color: #8f8f8f;
  font-size: 15px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.subscribe-box input {
  width: 100%;
  padding: 12px 15px;
  background: #2b2b2b;
  border: none;
  color: #fff;
  font-size: 15px;
}

.subscribe-box input::placeholder {
  color: #aaa;
}

.subscribe-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.social-icons a {
  color: #ccc;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: var(--primary-color);
}

.footer-bottom p a{
  color: var(--primary-color);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
}










/* HERO SECTION */
.fixed-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 5rem;
}

.fixed-hero-bg {
    background: url('assets/images/hero slider/61fa3f6fe6167d000103bcf1.avif') center/cover no-repeat;
    filter: brightness(0.6);
    position: absolute;
    top: 60px; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background-attachment: fixed;
}

.fixed-hero-content {
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    margin-top: 5rem;
}

.fixed-hero-content a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }
  
  .fixed-hero-content h1 {
    font-size: 32px;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    max-width: 1200px;
  }

  .para{
    font-size: 14px;
  }
  
  .fixed-hero-content p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}

.fixed-hero-content p a {
    color: #fff;
}

.fixed-hero-content span {
    color: var(--primary-color);
}

/* QUOTE AREA */
.quote-section {
    padding: 70px 40px;
}

.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* LEFT FORM */
.quote-left h2 {
    font-size: 30px;
    font-weight: 800;
}

.quote-left h2 span {
    color: var(--primary-color);
}

.quote-left p {
    margin: 10px 0 20px 0;
    color: #777;
}

.quote-left form{
  width: 100%;
}

.quote-input {
    width: 100%;
    padding: 18px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 18px;
    font-size: 15px;
}

.quote-input::placeholder {
    color: #777;
}

.quote-textarea {
    height: 140px;
    width: 100%;
    padding: 18px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 18px;
    font-size: 15px;
}

.quote-btn {
    background: var(--primary-color);
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.quote-btn:hover {
    background: var(--secondary-color);
}

/* RIGHT CONTACT BOX */
.quote-right {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.quote-right h3 {
    font-size: 22px;
    font-weight: 700;
}

.quote-right h3 span {
    color: var(--primary-color);
}

.quote-right p {
    font-size: 14px;
    color: #444;
    margin: 6px 0 16px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 12px;
    margin-bottom: 25px;
}

.contact-item .icon {
    font-size: 22px;
    aspect-ratio: 1/1;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: var(--primary-color);
    border: 1px dashed var(--primary-color);
    /* padding: 10px; */
    border-radius: 50%;
}

/* MAP SECTION */
.quote-map iframe {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .quote-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .quote-section {
    padding: 70px 20px;
  }
}




.team-card{
  max-width: 100px;
}



















.customers-section {
    padding: 80px 0;
    text-align: center;
}

.customers-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
}

.customers-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 50px auto;
}

/* GRID */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
}

.customer-box img {
    max-width: 140px;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    object-fit: contain;
}

.customer-box p {
    font-size: 15px;
    line-height: 1.6;
    width: 85%;
    margin: auto;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .customers-grid {
        grid-template-columns: 1fr;
    }

    .customer-box img {
        width: 110px;
    }
}







/* SECTION */
.projects-section {
    padding: 50px 0 80px 0;
    text-align: center;
}

/* FILTER MENU */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
}

.filter-item {
    cursor: pointer;
    position: relative;
    color: #222;
    padding-bottom: 5px;
}

.filter-item.active {
    color: var(--primary-color);
}

.filter-item.active::after {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* PROJECT GRID */
.projects-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX */
.project-box {
    position: relative;
    overflow: hidden;
}

.project-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.project-box:hover .overlay {
    background: rgba(0,0,0,0.15);
}

/* CONTACT US BUTTON */
.projects-contact-btn {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 10%;
}

.contact-btn {
    background: #111;
    color: #fff;
    padding: 14px 26px;
    font-size: 16px;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-contact-btn {
        justify-content: center;
        padding-right: 0;
    }
}









.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #222;
}

.faq-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 10px auto 40px auto;
}

.faq-container {
  width: 80%;
  margin: auto;
}

.faq-box {
  margin-top: 20px;
}

.faq-item {
  background: #f9f9f9;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #222;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.faq-arrow {
  transition: 0.3s;
  font-size: 18px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
  padding: 0 22px;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
  font-size: 15px;
}

/* Open state styles */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}








.project-details {
    width: 100%;
    margin: 0 auto;
    padding: 120px 6rem;
    margin-left: 3rem;
}

/* TOP SECTION */
.project-top {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 40px;
}

/* LEFT SIDE */
.project-left {
    width: 65%;
}

.project-image{
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: 20px;
}

.project-main-img {
    width: 100%;
    max-width: 500px;
    /* height: 100%; */
    /* aspect-ratio: 12/7; */
    /* object-fit: cover; */
    /* border-radius: 8px; */
    /* background: #f5f5f5; */
}

.project-title {
    /* margin-top: 25px; */
    /* font-size: 38px; */
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: #222;
}

/* RIGHT INFO BOX */
.project-info {
    width: 30%;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.project-info p {
    margin-bottom: 28px;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.4;
}

.project-info span {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

/* BOTTOM CONTENT */
.project-content {
    margin-top: 60px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.content-block p {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768) {
    .project-details {
        padding: 80px 3rem;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .project-details {
        padding: 60px 2rem;
    }

    .project-top {
        flex-direction: column;
    }
    .project-details {
      margin-left: 0;
    }
    .project-left,
    .project-info {
        width: 100%;
    }
}
  













.products-section {
    width: 90%;
    margin: auto;
    padding: 70px 0;
}

.products-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

/* FILTER BUTTONS - SCROLLABLE */
.product-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
}

.product-filters::-webkit-scrollbar {
    height: 6px;
}

.product-filters::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* FILTER BUTTON BASE */
.filter-btn {
    background: none;
    border: none;
    font-size: 16px;
    padding: 8px 12px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #333;
    scroll-snap-align: start;
    white-space: nowrap;
}

.filter-btn.active {
    color: var(--primary-color);
}

.filter-btn.active::after {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 50%;
    /* right: 50%; */
    transform: translate(-50%, -50%);
    bottom: -4px;
    border-radius: 2px;
}

/* GRID LAYOUT */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.product-cat-box {
    background: #fff;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}



.product-cat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-cat-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* PRODUCT BOX FADE ANIMATION */
.product-cat-box {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-cat-box.show {
    opacity: 1;
    transform: scale(1);
}

.product-cat-box p {
    padding: 12px;
    background: #fafafa;
    border-top: 1px solid #eee;
    font-size: 15px;
    color: #444;
}

/* PAGINATION */
.pagination-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.page-number {
    color: #444;
    font-size: 14px;
}

.page-btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 7px 12px;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
}

.page-btn:hover {
    background: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}







.gallery-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    color: #222;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-underline {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f1f1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-item {
        height: 280px;
    }
}
  







.video-gallery {
    padding: 60px 0;
}

.video-gallery .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    margin-bottom: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    padding-bottom: 25px;
    overflow: hidden;
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.video-frame {
    width: 100%;
    height: 220px;
    background: #000;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 15px 20px 5px;
}

.video-desc {
    font-size: 14px;
    color: #777;
    text-align: center;
    padding: 0 20px;
}








