@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: #262424;
    --white-color: #ffffff;
   --primary-font: 'Arial', 'sans-serif';
    --secondary-font: 'Quicksand', '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);
    
}
body {
    font-family: var(--primary-font);
    color: var(--body);
    line-height: 1.8;
    overflow-x: hidden;
}

.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 */
  }
}

/*---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;
  }


/* navbar */
.top-nav {
  width: 100%;
  background-color: var(--brand);
  color: #fff;
  padding: 8px 0;
}

.container-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contacts-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.contacts-info p {
  margin: 0;
  font-size: 14px;
  color: white;
}

.contacts-info i {
  margin-right: 5px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.social-icons a {
  color: white;
  background: rgba(255,255,255,0.3);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a:hover {
  background: white;
  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;
  }
}
  
  
  /* Banner */
  .banner {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  
  .banner-slide {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 1s ease;
  }
  
  .slide {
    min-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
  }
  
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
  }
  
  .banner-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    font-size: 20px;
  }
 @media  (max-width: 991.98px) 
 {
  .slide {
      height: 100%; /* Smaller height for mobile */
   display: flex;
   margin-top: 0;
   align-items: center;
   justify-content: right;
   position: relative;
  }
   .banner {
    position: relative;
    height: 42vh;
    overflow: hidden;
  }
  
  .banner-slide {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 1s ease;
  }
    .banner-content {
    position: absolute;
    align-items: center;
    justify-content: center;
    
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
  }
  
  .banner-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    display: none !important;   
  }
  
}    
@media (max-width: 480px) {     
   .slide {
      height: 100%; /* Smaller height for mobile */
   display: flex;
   margin-top: 0;
   align-items: center;
   justify-content: right;
   position: relative;
  }
   .banner {
    position: relative;
    height: 35vh;
    overflow: hidden;
  }
  
  .banner-slide {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 1s ease;
  }
    .banner-content {
    position: absolute;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
  }
  
  .banner-content h1 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .banner-content p {
   display: none !important;
  }
  

} 
  /* Contact Section */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background: #f9f9f9;
  }
  
  .contact-form, .contact-info {
    flex: 1 1 45%;
    margin: 10px;
  }
  
  .contact-form h2,
  .contact-info h2 {
    margin-bottom: 20px;
    color: var(--brand);
  }
  
  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
  }
  
  .contact-form form button {
    padding: 15px 30px;
    border-radius: 30px;
    border-style: dashed;
    border-width: 2px;
    background-color:var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .contact-form form button:hover {
    background-color: white;
    border-radius: 30px;
    color: var(--brand);
    border-color: var(--brand);
    border-style: dashed;
    border-width: 2px;
  }
  
  .map-container {
    margin: 20px;
    padding: 15px 30px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }
  }
  
  .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);
    color: var(--brand);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid var(--brand);
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
  }

@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;
  }
}

  /* Products Grid */
/* Products Grid */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 90%;
  margin: 40px auto;
  padding: 0 20px;
}

.tile-stone-adhesives {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.tile-grout-and-fillers{
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}
.advanceflooring-material{
 padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}
.color-plaster{
 padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}
.waterproof{
 padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}
.sealers{
 padding: 10px;
  background-color: #f9f9f9;
  text-align: center;
}
/* Product Card */
.product-card {
  background: #e9f5f9;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 40%;
  height: fit-content;
  

  background: transparent;
}

/* Product Details */
.product-details {
  padding: 20px;
  display: flex;
  width: 60%;
  flex-direction: column;
  justify-content: center;
}

.product-details h5 {
  color: var(--brand);
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.product-details h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--brand);
}

.product-details p {
  font-size: 1rem;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-card img {
    width: 100%;
    height: auto;
  }

  .product-details {
    padding: 15px;
  }
}



.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;
  height: 500px; /* or whatever height suits your design */
  display: flex;
  align-items: center; /* This will vertically center the swiper */
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 1200px; /* Optional */
  margin: auto; /* Center the whole swiper */
  position: relative;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  align-items: center;

  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;
}


/* Custom Prev/Next Buttons */
.custom-button {
  background: linear-gradient(135deg, #005F85, #005F85);
  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;
  }
}
.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;
    margin: 5% auto;     /* kam margin */
    padding: 20px;       /* kam padding */
    text-align: center; 
  }
  .about-section h1 {
    font-size: 20px;     /* chhoti screen ke liye */
    line-height: 1.3;
  }

  .about-section h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  .about-section p,
  .about-section li {
    font-size: 14px;
    line-height: 1.4;
  }

  .about-section .contact-button {
    width: 100%;
    max-width: 200px;
    margin: 15px auto 0;
    display: block;
  }
  .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);
}


 .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;
}
@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: 20px;     /* chhoti screen ke liye */
    line-height: 1.3;
  }

  .about-section h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  .about-section p,
  .about-section li {
    font-size: 14px;
    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:30%;
    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; }

}
