@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    list-style: none;
    font-family: var(--primary-font) ;
    text-decoration: none;
}


:root {
   
      --header-h: 20vh;
  --header-h-scrolled: 12vh; 

    --third-color: #FFC107;
    --text-color: #1F2937;
    --black-color: #000000;
    --white-color: #ffffff; 
    --primary-font: 'Arial', 'Arial';
    --secondary-font: 'Arial', 'sans-serif';
    --brand: #005F85;
    --secondary-color: #005F85;
    --body: #F9FAFB;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
}
.floating-email-btn {
  position: fixed;
  bottom: 160px; /* Place above call button */
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 15px;
  background-color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s;
  z-index: 1000;
  color: var(--white-color);
  font-size: 30px; /* Size of the Boxicon */
  text-decoration: none;
}
.floating-email-btn:hover {
  transform: scale(1.1);
  background-color: var(--white-color);
  color: var(--brand);
}

.phone-call-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: var(--brand);
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
  line-height: 1;
  padding: 0;
}
.phone-call-button i {
  display: block;
  line-height: 1;
}
.phone-call-button:hover {
  background-color: var(--white-color);
  color: var(--brand);
  transform: scale(1.1);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}
.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}

/* ✅ Responsive Fix for Mobile Screens */
@media (max-width: 768px) {
  .floating-email-btn,
  .phone-call-button,
  .whatsapp-button {
    right: 10px; /* extra margin from right edge */
  }
}

@media (max-width: 480px) {
  .floating-email-btn,
  .phone-call-button,
  .whatsapp-button {
    right: 8px; /* smaller devices ko aur safe margin */
    transform: scale(0.9); /* thoda chhota taake cut na ho */
  }
}


/* navbar */
.top-nav {
    background-color: var(--brand);
    color: #fff;
    padding: 5px 20px;
}

.top-nav .row {
    display: flex;
    justify-content: space-between; /* left side & right side separate */
    align-items: center;            /* vertical center */
}

.top-nav .left-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav .left-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #fff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
  text-decoration: none !important;
  line-height: 1;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--brand);
}

/* Main Nav */
#site-header{
  position: fixed; top:0; left:0; right:0; z-index:999;
  height: var(--header-h);
  background: transparent;
  margin-top: 45px;
  transition: height .28s ease, background .25s ease, box-shadow .25s ease;
}

/* smaller + colored when scrolled or menu open */
#site-header.scrolled, 

#site-header.menu-open{
  height: var(--header-h-scrolled);
  background: var(--brand);
  margin-top: 0px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}




/* main container row */
.container-nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 230px;
  height: auto;
 margin-top: -65px;
 transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

/* Shrink logo when header is scrolled */
#site-header.scrolled .logo img {
  width: 160px;
  margin-top: -58px;
}

/* Navbar inherits flex row automatically */
#navbar {
  flex-grow: 1; /* allows nav to fill space */
}

#navbar .nav-links {
  display: flex;
  align-items: center;
  margin-top: 1%;
  justify-content: flex-end;
}
#navbar {
  width: 100%;
  background: transparent !important;
  transition: all 0.4s ease;
  height: 100px;
  position: fixed;
  top: 35px; /* VERY IMPORTANT: after top-nav height */
  left: 0;
  z-index: 999;
}





/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 10px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--white-color);
  font-family: 'Arial', 'sans-serif' ;
  padding: 8px 15px;
  transition: all 0.3s;
  border-radius: 5px;
}

.nav-links a:hover {
  background: var(--brand);
  color: white;
  border-radius: 20px;
  border-bottom: rgba(255, 250, 250, 0.872);
  border-style: double;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(74, 140, 165, 0.7);
  top: 100%;
  left: 0;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Search Icon */



/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 30px;
  color: white;
}

/* Navbar when scrolled */

#navbar.scrolled .nav-links a {
  color: var(--brand);
}

#navbar.scrolled .search-icon i,
#navbar.scrolled .menu-icon i {
  color: var(--brand);
}



#navbar.scrolled .nav-links a:hover {
  background: var(--brand); /* Background on hover */
  color: white; /* Text becomes white on hover */
  border-radius: 20px;
  border-bottom: var(--white-color);
  border-style: double;
}
.services-item { position: relative; }

/* show button on desktop, hide on mobile */
.services-btn{
  display: none;
  background: transparent;
  border: 0;
  color: var(--white-color);
 font-family:'Arial', 'sans-serif';
font-weight: 800;

  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}
.services-btn .chev{ width:14px;height:14px; transition:transform .18s ease; }
.services-btn[aria-expanded="true"] .chev{ transform: rotate(180deg); }

/* fallback link for mobile */
.services-link-mobile{ display: inline-block; }

/* Mega menu shell */
.mega-menu{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 14px);
  width: min(1100px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2,8,23,.15);
  padding: 24px;
  display: none;
  z-index: 1000;
}
.service:hover{
  background: var(--brand) !important;
  transform: translateY(-1px);
}

.service:hover .icon{
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
}

.service:hover .svc-title,
.service:hover .svc-desc{
  color: #fff !important;
}

/* Optional: make icons feel crisper on dark hover */
.service .icon svg{ transition: color .18s ease, fill .18s ease, stroke .18s ease; }
.service:hover .icon svg{ stroke: #ffffff !important; fill: none; }

.mega-menu.open{ display: block; animation: svcFade .12s ease; }
@keyframes svcFade { from{opacity:0; transform:translate(-50%, -4px);} to{opacity:1; transform:translate(-50%, 0);} }

.mega-inner{ width:100%; }
.mega-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px 48px;
}

.service{
  display:flex; gap:14px; padding:12px; border-radius:12px;
  transition: background .15s ease, transform .15s ease;
  color: #0f172a;
}
.service:hover{ background:#f8fafc; transform: translateY(-1px); }
.service:focus{ outline: none; }
.service:focus-visible{ outline: 3px solid rgba(97,54,240,.25); outline-offset: 2px; }

.icon{
  width:42px;height:42px;border-radius:12px;
  background: rgba(97,54,240,.08); color: var(--brand);
  display:grid;place-items:center;flex:0 0 42px;
}

.svc-title{  font-family: Arial, sans-serif;
  font-weight: normal;   /* was 800 */
  font-size: 16px;
  color: #0f172a;         }
.svc-desc{ font-family: Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #444;  margin-top: 2px; }

.mega-footer{
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid #eef2f7; font-size:14px; color:#64748b;
}
.mega-footer a{ color: var(--brand); font-family: Arial, sans-serif;
  font-weight: normal; }
.mega-footer a :hover{ background-color: var(--brand); font-family: Arial, sans-serif;
  font-weight: normal; }
/* Navbar scrolled variant: keep button/link readable */
#navbar.scrolled .services-btn{ color: var(--brand);}
#navbar.scrolled .services-btn:hover{ color: var(--white); }

/* Hover style to match your links */
.services-btn:hover{
  background: var(--brand);
  
  color: white;
  border-radius: 20px;
  border-bottom: rgba(255, 250, 250, 0.872);
  border-style: double;
}
/* ---------- RESPONSIVE ---------- */
@media (min-width: 992px) {
  .menu-icon {
    display: none;
  }
  #navbar .nav-links {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    flex-direction: row;
    gap: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .services-btn {
    display: inline-flex;
  }
  .services-link-mobile {
    display: none;
  }
}

/* ---------- MOBILE & TABLET (up to 991px) ---------- */
@media (max-width: 991.98px) {
  .top-nav {
    display: none !important;
  }
  .mega-menu {
    display: none !important;
  }
  .services-btn {
    display: none !important;
  }
  .services-link-mobile {
    display: inline-block;
  }

  /* Header Row */
  .container-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* logo left, burger right */
    padding: 8px 15px;
    margin-right: 2%;
      margin-left: 2%;
    background-color: transparent;
  }
.menu-icon {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand);
    border: 2px solid var(--brand);
    border-radius: 6px;
    background: #fff;
    padding: 5px;
  
    margin-bottom: 5vh;
    margin-right: 6vh !important;
    margin-left: 80%;
  }
  #site-header.scrolled .menu-icon,
  #site-header.menu-open .menu-icon {
    color: #fff;
    border-color: #fff;
    background: var(--brand);
  }
  /* Logo */
  .logo {
    order: 2;
    display: flex;
   
   
    align-items: center;
  }
  .logo img {
    width: 160px;
    height: auto;
     margin-top: -16vh; /* remove extra margin */
    transition: width 0.3s ease, height 0.3s ease;
  }
  #site-header.scrolled .logo img {
    width: 120px;
    margin-top: -9vh; /* shrink when scrolled */
  }

  /* Menu Icon */
  

  /* Side Menu (Off-canvas) */
  #navbar .nav-links {
    position: fixed;
    top: 10vh !important;              /* full screen cover */
    right: 0;
    height: 80vh !important;       /* full viewport height */
    width: 85vw;
    max-width: 460px;
    background: var(--brand);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .18);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000;
  }
  #navbar .nav-links.active {
    transform: translateX(0); /* slide in */
  }

  #navbar .nav-links a {
    color: #fff;
    display: block;
    margin-top: 20px !important;
    margin-bottom: 20% !important;
    padding: 12px 10px;
    border-radius: 10px;
  }
  #navbar .nav-links a:hover {
    background: rgba(255, 255, 255, .12);
    text-decoration: none;
    border: 0;
  }
}
/* ✅ Extra Small Screens Fix */
@media (max-width: 480px) {
  .container-nav {
    padding: 6px 10px;
  }
  .logo img {
    width: 110px;  /* smaller logo on tiny screens */
  }
  .menu-icon {
    font-size: 22px;
    padding: 5px 6px;
  }
}
  
.btn-brand {
  background-color: var(--brand);
  color: white;
  font-family: var(--primary-font);
  font-weight: 400;

  border-radius: 20px;
}

.btn-brand:hover{
  color: var(--brand);
  background-color: var(--white-color);
 font-family: var(--primary-font);
  font-weight: 400;
  border-style: dashed;
}
/*Slide Show*/

.hero-slider .owl-prev,
.hero-slider .owl-next{
  background-color: rgba(255, 255, 255, 0.3) !important;
  width: 60px !important;
  height: 60px !important;
  display: block;
  display: grid;
  place-items: center;
  color: var(--white-color) !important;
  border-radius: 100px;
  line-height: 0;
  border-radius: 100px !important;
  position: absolute;
  top: 50%;
  font-family: var(--primary-font);
  font-weight: 600 !important;
  font-size: 12px !important;
  transition: all 0.4s ease;
  margin-top: -30px !important;
}

.owl-prev {
  left: 0;
}
.owl-next {
  right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
  background-color: var(--brand) !important; 
  color: white;
}

.owl-dot.active span{
  background-color: var(--brand) !important;
  color:white
}


/* slide */
.slide {
   min-height: 100vh;
   display: flex;
   margin-top: 0;
   align-items: center;
   justify-content: right;
   position: relative;
}



.slide1 {
  background:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/slider-image-1.png);
  background-size: cover ;
  background-position: center;
  background-repeat: no-repeat;
}

.slide2 {
  background:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),  url(../images/slider-image-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide3 {
background:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),  url(../images/slider-image-3.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


.slide4 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/slider-image-4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }
    
.slide .display-3 {
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: #fff;
}
.slide h1{
  font-size: 2.2rem;
  font-family: var(--primary-font);
  color: var(--white-color);
}




@media  (max-width: 991.98px) 
 {
  .slide {
      height: 50vh; /* Smaller height for mobile */
   display: flex;
   margin-top: 0;
   align-items: center;
   justify-content: right;
   position: relative;
  }
  .slide .display-3 {
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: #fff;
}
.slide h1{
  font-size: 1.2rem;
  font-family: var(--primary-font);
  color: var(--white-color);
}
}
@media  (max-width: 480px) {
.slide{
 height: 40vh; /* Smaller height for mobile */
   display: flex;
   width: 100%;
   margin-top: 0;
   align-items: center;
   justify-content: right;
   position: relative;
   
}
 .slide .display-3 {
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: #fff;
}
.slide h1{
  font-size: 1rem;
  font-family: var(--primary-font);
  color: var(--white-color);
}
}

.video-style {
  border-radius: 20px;
  overflow: hidden; /* Ensures video corners follow border-radius */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.video-style video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/*---Home Services--*/
h1, h2, h3, h4, h5 {
    font-family: var(--primary-font);
    font-weight: bold;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: 20px;
    font-family: var(--primary-font);
    margin-top: auto;
  }
  
  h2 {
    font-size: 2rem;
    color: var(--white-color);
    font-family: var(--primary-font);
    margin-top: 30px;
    margin-bottom: 18px;
  }
  
  h3 {
    font-size: 2.2rem;
    color: white;
    font-family:var(--primary-font);
    margin-bottom: 20px;
    font-family: var(--primary-font);
    margin-top: auto;
  }
  
  h4 {
    margin-top: 15px;
    font-size: 1.8rem;
    color: var(--brand);
    margin-bottom: 14px;
  }
  
  h5 {
    font-size: 1.25rem;
    color: #1E1E1E;
    margin-bottom: 12px;
  }
  h6{
    font-size: small;
    color: var(--dark);
    margin: auto;
    font-family: var(--primary-font);

  }
  
  /* Paragraphs */
  p {
    font-family: var(--secondary-font);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 15px;
  }

  .home-section {
    background-color: var(--body);
    padding: 80px 20px;
  }
  
  .content-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
  }
  
  .text-block {
    flex: 1;
  }
  
  .image-block {
    flex: 1;
  }
  
  .image-block img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s;
  }
  
  .read-more:hover {
    background: #444;
  }
  
  /* Animation */
  @keyframes zoomIn {
    from {
      transform: scale(0.9) rotateX(20deg);
      opacity: 0;
    }
    to {
      transform: scale(1) rotateX(0deg);
      opacity: 1;
    }
  }

 

  .contact-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: var(--brand);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
}
.contact-button:hover {
    background-color: var(--white-color);
    color:var(--brand);
    border-style: dashed;
}

section {
    padding: 20px;
}
.product-section {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.product-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
}
.product-section h3{
  font-size: 36px;
  color: var(--brand);
  font-family: var(--secondary-font);
  margin-bottom: 10px;

}
.cards-section h3{
  font-size: 36px;
  color: var(--brand);
  font-family: var(--secondary-font);
  margin-bottom: 10px;
}
.cards-section {
  padding: 50px 20px;
  background: var(--white-color);
  margin: 4%;
  border-radius: 30px;
  text-align: center;
}
.cards-section-portfolio {
  padding: 50px 20px;
  background: transparent;
  margin: 4%;
  border-radius: 30px;
  text-align: center;
}

.cards-section h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.card-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;

}
.card-portfolio {
  background: transparent;
  padding: 30px;
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}

.card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 25px 45px rgba(255,255,255,0.1);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  opacity: 0.75;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
}
 .card-index .container{
  background-color: var(--brand);
  color: var(--white-color);
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
 
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 24px;
  color: var(--brand);
  margin: 15px 0 10px;
}

.card p {
  font-size: 16px;
  color: #555;
  padding: 0 10px 20px;
}

.view-btn {
  background-color: var(--brand);
  color: #fff;
  border: none;
  align-self: baseline center;
  padding: 10px 25px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
  font-family: var(--primary-font);
  border-radius: 30px;
  font-size: 16px;
}
/*Feature Section*/
.features-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  flex-wrap: wrap;
  background-color: #f9f9f9;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card .icon {
  font-size: 50px;
  color: var(--brand);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--brand);
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.view-all-product {
  margin-top: 5%;
  justify-content: center;
  align-items: center;
}
#reviews {

  background: linear-gradient(to bottom, #abadab, #0093cb), url(../images/footerbackground.png), var(--brand);;
  background-size: cover;
  border-radius: 30px;
  margin: 5%;
  background-position: center;
  background-repeat: no-repeat;
}

.review {
  text-align: center;
  z-index: 2;
  position: relative;
  margin: 50px;
  max-width: 500px;
  margin: auto;
}

.review .bxs-quote-alt-left {
  font-size: 120px;
  position: absolute;
  opacity: 0.1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.review img {
  width: 80px !important;
  height: 80px;
  border-radius: 100px;
  margin: auto;
}

.review h5 {
  margin-top: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.review h3 {
  margin-top: 26px;
  margin-bottom: 26px;
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  line-height: 1.7;
}

.review small {
  color: var(--body);
}

.review .stars {
  color: var(--white-color);
}

.teams-section {
  padding: 80px 20px;
  background: #f7f7f7;
  margin: 5%;
  border-radius: 30px;
  text-align: center;
}

.teams-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.teams-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-card {
  width: 350px;
  height: auto;
  position: relative;
  overflow: hidden;
  justify-content: center;

  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-img {
  position: relative;
}

.team-img img {
  width: 100%;
  display: block;
  margin: 2px;
  padding: 12px;
  border-radius: 16px;
  transition: transform 0.4s ease;
  z-index: 1; /* <-- optional, ensures image stays behind overlay */
}

.team-img:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.85);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2; /* <-- add this line */
}

.team-img:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin: 0 0 5px;
  font-size: 22px;
  color: #f1c40f;
}

.overlay p {
  font-size: 14px;
  margin: 4px 0;
}

.social-icons {
  margin-top: 12px;
}

.social-icons a {
  margin: 0 6px;
  display: inline-block;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}


.container {
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  gap: 40px;
  max-width: 1200px;
 
  margin: auto;
}
.container-1 {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  gap: 40px;
  max-width: 1200px;
 
  margin: auto;
}

.container .text {
  flex: 1;
  min-width: 300px;
 
}

.container .text2 {
  flex: 1;
  min-width: 100px;
}

.container .image {
  flex: 1;
  min-width: 300px;
}

.container img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.container img:hover {
  transform: scale(1.03);
}




  .site-footer {
    background:url(../images/footerbackground.png);
    color: #fff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 20px 30px;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    width: 260px;
    margin-bottom: 15px;
  }
  
  .footer-column h3,
  .footer-column h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--white-color);
  }
  .footer-column p{
    color: var(--white-color);
    text-decoration: none;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    color: var(--white-color);
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
  }
  
  .social-icons a:hover img:hover {
    transform: scale(1.1);
    background-color: white;
    color: var(--brand);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #bcbcbc;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
  }
/*Hire Section*/ 

.hire-section {
  text-align: left;
  background-color: var(--body);
  margin: 10%;
  padding: 80px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(36, 36, 36, 0.575);
}

.hire-btn {
  padding: 14px 30px;
  background-color: var(--brand);
  color: var(--third-color);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hire-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}


.category-slider {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.518) ;
  text-align: center;
}

.category-slider h1 {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: var(--primary-font);
  color: var(--brand);
}

.category-slider h3 {
  font-size: 20px;
  font-family: var(--secondary-font);
  margin-bottom: 10px;
  color: var(--brand);
}

.swiper-container-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.swiper {
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  align-items: center;
  margin-top: 30%;
  justify-content: center;
}

.cardx {
  width: 300px;
  height: 400px;
  margin: 10px;
 
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.cardx:hover {
  transform: translateY(-5px);
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-name {
   background: linear-gradient(135deg, #005F85, #004d6c); /* brand gradient */
      /* white text */
    font-size: 14px;
    padding: 10px;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-name h3 {
    font-size: 14px;
    color: #fff;         /* white text confirm */
    margin-top:10px ;
  }

/* Custom Prev/Next Buttons */
.custom-button {
  background: linear-gradient(135deg, #008cff84, #0c56a69a);
  width: 60px !important;
  height: 60px !important;
  display: block;
  display: grid;
  place-items: center;
  color: var(--white-color) !important;
  border-radius: 100px;
  line-height: 0;
  
  border-radius: 100px !important;
  position: absolute;
  top: 50%;
  font-weight: 600 !important;
  font-size: 12px !important;
  transition: all 0.4s ease;
  margin-top: -30px !important;
}
.custom-button:hover {
  background-color: var(--brand) !important; 
  color: white;
}
.swiper-button-prev.custom-button {
  color: var(--white-color);
  left: -60px;
 
}

.swiper-button-next.custom-button {
  color: var(--white-color);
  right: -40px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide {
    flex-direction: column;
  }
  
  .cardx {
    width: 80%;
    margin-bottom: 20px;
  }

  .custom-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/*About US*/
.banner {
  background: url('../images/banner.png') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.banner-content h1 {
  font-size: 48px;
  color: var(--white-color);
  font-family: var(--primary-font);

}

.banner-content p {
  font-size: 20px;
  color: var(--white-color);
  font-family: var(--secondary-font);
  margin-top: 10px;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  margin:10%;
  padding: 50px;
  background: #f9f9f9;
}
.what-we-do-section{
  display: flex;
  flex-wrap: wrap;
  margin:10%;
  padding: 50px;
  background: #f9f9f9;

}

.about-content, .about-image {
  flex: 1 1 45%;
  margin: 10px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}


/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
  .counter-section {
    flex-direction: column;
  }
  .team-container {
    flex-direction: column;
  }
}


.container {
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  gap: 30px;
  max-width: 1200px;
 
  margin: auto;
}
.container-1 {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  gap: 40px;
  max-width: 1200px;
 
  margin: auto;
}

.container .text {
  flex: 1;
  min-width: 300px;
 
}

.container .text2 {
  flex: 1;
  min-width: 100px;
}

.container .image {
  flex: 1;
  min-width: 300px;
}

.container img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.container img:hover {
  transform: scale(1.03);
}


.vision-mission {
  background :linear-gradient(to bottom, #ffffff, #c5c5c6);
  padding: 50px 20px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 12%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.vision-mission h6{
  color: var(--text-color);
  font-size: 20px;
  font-family: var(--secondary-font);
}
.vision-mission > div {
  margin-bottom: 40px;
}
 
.core-values {
  background:  linear-gradient(to bottom, #ffffff, #c5c5c6);
  margin: 10%;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.cards-section {
  padding: 50px 20px;
  text-align: center;
}

.cards-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--brand);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: calc(33.333% - 20px);
  padding-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h2 {
  margin: 15px 0 0;
  font-size: 1.4rem;
  color: var(--brand);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {

  /* --- About Section --- */
  .about-section {
    margin: 5% auto;     /* kam margin */
    padding: 20px;       /* kam padding */
    text-align: center;  /* center align */
  }

  .about-section h1 {
    font-size: 14px;     /* chhoti screen ke liye */
    line-height: 1.3;
  }

  .about-section h4 {
    font-size: 12px;
    margin-top: 10px;
  }

  .about-section p,
  .about-section li {
    font-size: 10px;
    line-height: 1.4;
  }

  .about-section .contact-button {
    width: 100%;
    max-width: 200px;
    margin: 15px auto 0;
    display: block;
  }

  /* --- Category Cards --- */
  .card-review {
    width: 220px;        /* chhota size */
    height: 300px;
    margin: 10px auto;   /* center */
  }

  .image-container-r img {
    height: 200px;       /* kam height image ki */
    object-fit: cover;
  }

  .card-review .category-name {
    background: linear-gradient(135deg, #005F85, #004d6c); /* brand gradient */
    font-size: 14px;
    padding: 10px;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-review .category-name h3 {
    font-size: 10px;
    color: #fff;         /* white text confirm */
    margin:10px ;
  }

  /* --- General Text Scaling --- */
  h1 { font-size: 22px; }
  h3 { font-size: 16px; }
  p  { font-size: 14px; }

}

/* Responsive */
@media (max-width: 768px) {
  .card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
  }
}


.top-nav .social-icons { margin-left: auto; }
@media (max-width: 992px) {
  .top-nav .contacts-info { width: 100%; justify-content: center; }
  .top-nav .social-icons { width: 100%; justify-content: center; margin-left: 0; margin-top: 6px; }
}

#navbar { will-change: transform; }
#navbar .nav-links .dropdown:focus-within .dropdown-menu,
#navbar .nav-links .dropdown:hover .dropdown-menu { display: block; }
@media (max-width: 768px) {
  .search-box { left: 10px; right: 10px; }
  .search-box input { width: 100%; }
}

/* ====== HERO SLIDER TEXT SIZING ====== */
.hero-slider .display-3 { 
  font-size: clamp(1.6rem, 5vw, 3.2rem); 
  line-height: 1.2; 
}
.slide h6 { font-size: clamp(0.85rem, 2.2vw, 1rem); }
.btn.btn-brand { padding: 10px 22px; font-size: clamp(0.9rem, 1.8vw, 1rem); }

@media (max-width: 768px) { .slide { min-height: 70vh; } }
@media (max-width: 480px) { .slide { min-height: 56vh; } }

/* ====== “HOME” SPLIT SECTION ====== */
.content-container { gap: 28px; }
@media (max-width: 992px) {
  .content-container { flex-direction: column; }
  .text-block, .image-block { width: 100%; }
}
.video-style video { width: 100%; height: auto; }

/* ====== PRODUCT CARDS GRID (3→2→1) ====== */
.cards-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 28px;
}
.cards-section .card { width: auto; } /* override earlier fixed width */
@media (max-width: 992px) {
  .cards-section .card-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 520px) {
  .cards-section .card-grid { grid-template-columns: 1fr; }
}

/* ====== FEATURE CARDS ====== */
.features-section { gap: 20px; }
.feature-card { width: min(260px, 46vw); }
@media (max-width: 600px) { .feature-card { width: 100%; } }

/* ====== “WHY CHOOSE” / GENERIC .container LAYOUT ====== */
.container { gap: 28px; }
@media (max-width: 992px) {
  .container { flex-direction: column; }
  .container .text, .container .image { min-width: 100%; }
}

/* ====== REVIEWS CAROUSEL PADDING / CONSTRAIN ====== */
#reviews .owl-carousel { padding: 12px 0; }
.review { max-width: 720px; margin: 26px auto; }

/* ====== HIRE SECTION ====== */
.hire-section { margin: 8% 5%; padding: 56px 20px; }
@media (max-width: 600px) { .hire-section { margin: 8% 3%; } }

/* ====== FOOTER STACK ====== */
@media (max-width: 991.98px) {
  .footer-container { gap: 10px; }
  .footer-column { min-width: 50%; }
  .footer-logo { width: 180px; height: auto; }
  .site-footer {
    background:url(../images/footerbackground.png);
    color: #fff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 20px 30px;
    font-size: 10px;
    line-height: 1.0;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
  }
}

/* ====== FIXED ACTION BUTTONS SAFE AREAS (no overlap) ====== */
@media (max-width: 480px) {
  .floating-email-btn { bottom: 144px; right: 14px; width: 46px; height: 46px; font-size: 24px; }
  .phone-call-button   { bottom: 86px;  right: 14px; width: 50px; height: 50px; font-size: 22px; }
  .whatsapp-button     { bottom: 20px;  right: 14px; padding: 12px; }
}

/* ====== ACCESSIBILITY / TAP TARGETS ====== */
@media (hover: none) and (pointer: coarse) {
  .nav-links a, .btn, .btn-brand { padding: 12px 18px; }
}

/* ====== IMAGE PERF HINT (keeps design, speeds layout) ====== */
img { height: auto; }