/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* =========================
   ROOT COLORS
========================= */
:root{
  --primary:#117885;
  --primary-dark:#0D5F69;
  --primary-light:#EAF6F7;

  --text:#111827;
  --text-light:#6B7280;

  --border:#D1E7EA;
  --white:#ffffff;
}

/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.6;
}

/* =========================
   CONTAINER
========================= */
.container{
  width:min(1200px, 90%);
  margin:auto;
}


/* =========================================================
   FINAL NAVBAR FIX
   DO NOT DELETE
========================================================= */

:root{
  --header-height:80px;
}


/* =========================
   HEADER
========================= */

.header{
  position:fixed !important;

  top:0 !important;
  left:0 !important;

  width:100% !important;
  height:80px !important;

  z-index:9999 !important;

  background:#ffffff !important;

  border-bottom:1px solid #e7eef0 !important;

  box-shadow:0 2px 12px rgba(0,0,0,0.05) !important;
}


/* =========================
   NAVBAR CONTAINER
========================= */

.header .navbar{
  width:min(1200px,90%) !important;

  height:80px !important;

  margin:0 auto !important;
  padding:0 !important;

  display:flex !important;

  flex-direction:row !important;

  align-items:center !important;

  justify-content:space-between !important;

  gap:20px !important;
}


/* =========================
   LOGO
========================= */

.header .logo{
  display:flex !important;

  flex-direction:row !important;

  align-items:center !important;

  flex:0 0 auto !important;

  width:auto !important;

  height:80px !important;

  gap:12px !important;

  margin:0 !important;

  padding:0 !important;

  text-decoration:none !important;
}


.header .logo img{
  width:56px !important;

  height:56px !important;

  max-width:56px !important;
  max-height:56px !important;

  min-width:56px !important;
  min-height:56px !important;

  display:block !important;

  object-fit:contain !important;

  margin:0 !important;
}
.logo-text h1 {
  color: #0D5F69 !important;
}

.logo-text span {
  color: var(--primary) !important;
}

.header .logo-text{
  display:block !important;

  width:auto !important;

  flex:0 0 auto !important;
}


.header .logo-text h1{
  margin:0 !important;

  font-size:18px !important;

  line-height:1.2 !important;

  white-space:nowrap !important;
}


.header .logo-text span{
  display:block !important;

  margin-top:4px !important;

  font-size:11px !important;

  line-height:1.2 !important;

  white-space:nowrap !important;
}


/* =========================
   DESKTOP NAVIGATION
========================= */

.header .nav-links{
  display:flex !important;

  flex-direction:row !important;

  flex-wrap:nowrap !important;

  align-items:center !important;

  justify-content:center !important;

  gap:32px !important;

  width:auto !important;

  height:80px !important;

  position:static !important;

  margin:0 !important;

  padding:0 !important;

  background:transparent !important;

  border:0 !important;

  box-shadow:none !important;

  overflow:visible !important;

  flex:0 1 auto !important;
}


.header .nav-links a{
  position:relative !important;

  display:flex !important;

  flex-direction:row !important;

  align-items:center !important;

  justify-content:center !important;

  flex:0 0 auto !important;

  width:auto !important;

  height:80px !important;

  min-height:0 !important;

  padding:0 !important;

  margin:0 !important;

  color:var(--text) !important;

  font-size:15px !important;

  font-weight:500 !important;

  line-height:1 !important;

  white-space:nowrap !important;

  text-decoration:none !important;
}


.header .nav-links a:hover{
  color:var(--primary) !important;
}


.header .nav-links a.active{
  color:var(--primary) !important;
}


/* =========================
   NAV UNDERLINE
========================= */

.header .nav-links a::after{
  content:"" !important;

  position:absolute !important;

  left:50% !important;

  bottom:17px !important;

  width:0 !important;

  height:2px !important;

  border:0 !important;

  border-radius:999px !important;

  background:var(--primary) !important;

  transform:translateX(-50%) !important;

  transition:width .25s ease !important;
}


.header .nav-links a:hover::after,
.header .nav-links a.active::after{
  width:100% !important;
}


/* =========================
   GET QUOTE
========================= */

.header .quote-btn{
  display:inline-flex !important;

  align-items:center !important;

  justify-content:center !important;

  flex:0 0 auto !important;

  width:auto !important;

  min-width:110px !important;

  height:48px !important;

  min-height:48px !important;

  padding:0 22px !important;

  margin:0 !important;

  border-radius:12px !important;

  background:var(--primary) !important;

  color:#ffffff !important;

  font-size:14px !important;

  font-weight:700 !important;

  line-height:1 !important;

  text-decoration:none !important;

  white-space:nowrap !important;
}


.header .quote-btn:hover{
  background:var(--primary-dark) !important;

  transform:translateY(-2px) !important;
}


/* =========================
   MOBILE BUTTON
========================= */

.header .menu-toggle{
  display:none !important;

  width:44px !important;

  height:44px !important;

  min-width:44px !important;

  padding:0 !important;

  border:0 !important;

  background:transparent !important;

  color:var(--primary) !important;

  font-size:27px !important;

  cursor:pointer !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:800px){

  .header{
    height:80px !important;
  }


  .header .navbar{
    width:100% !important;

    height:80px !important;

    padding:0 18px !important;
  }


  .header .logo{
    height:80px !important;

    gap:8px !important;
  }


  .header .logo img{
    width:48px !important;

    height:48px !important;

    min-width:48px !important;
    min-height:48px !important;

    max-width:48px !important;
    max-height:48px !important;
  }


  .header .logo-text h1{
    font-size:15px !important;
  }


  .header .logo-text span{
    font-size:9px !important;
  }


  .header .nav-links{
    position:absolute !important;

    top:80px !important;

    left:0 !important;
    right:0 !important;

    width:100% !important;

    height:auto !important;

    display:none !important;

    flex-direction:column !important;

    align-items:stretch !important;

    gap:0 !important;

    padding:10px 18px 18px !important;

    background:#ffffff !important;

    border-bottom:1px solid #dcecef !important;

    box-shadow:0 15px 30px rgba(0,0,0,.08) !important;
  }


  .header .nav-links.active{
    display:flex !important;
  }


  .header .nav-links a{
    width:100% !important;

    height:48px !important;

    min-height:48px !important;

    justify-content:flex-start !important;

    padding:0 10px !important;

    font-size:15px !important;
  }


  .header .nav-links a::after{
    left:10px !important;

    bottom:3px !important;

    transform:none !important;

    width:0 !important;
  }


  .header .nav-links a:hover::after,
  .header .nav-links a.active::after{
    width:calc(100% - 20px) !important;
  }


  .header .quote-btn{
    display:none !important;
  }


  .header .menu-toggle{
    display:flex !important;

    align-items:center !important;

    justify-content:center !important;
  }

}


/* =========================================================
   PAGE OFFSET
========================================================= */

.hero{
  margin-top:80px !important;
}


#home,
#about,
#products,
#services,
#contact{
  scroll-margin-top:80px !important;
}


/* =========================================================
   PRODUCT CATEGORY BAR
========================================================= */

.product-category-nav{
  top:80px !important;

  z-index:900 !important;
}   

/* =========================
   HERO CAROUSEL
========================= */
.hero{
  position:relative;
  height:90vh;
  min-height:650px;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:opacity 0.8s ease;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
}

 .overlay{
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.35); /* dark transparent overlay */
} 

.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
  text-align:center;
  margin:auto;
}

.hero-content h2{
  font-size:64px;
  line-height:1.05;
  margin:18px 0;
  color:#ffffff;
}

.hero-content p{
  font-size:18px;
  color:rgba(255,255,255,0.9);
  margin-bottom:30px;
}

.hero-slide{
  justify-content:center;
}

.hero-tag{
  display:inline-block;
  background:var(--primary-light);
  color:var(--primary);
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
  background:var(--primary);
  color:#ffffff;
  border:none;
}

.btn-primary:hover,
.btn-outline:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
}
/* Slider Controls */
.hero-prev,
.hero-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.85);
  color:var(--primary);
  font-size:24px;
  cursor:pointer;
  z-index:5;
  transition:0.3s ease;
}

.hero-prev:hover,
.hero-next:hover{
  background:var(--primary);
  color:#fff;
}

.hero-prev{ left:24px; }
.hero-next{ right:24px; }

/* Dots */
.hero-dots{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,0.6);
  cursor:pointer;
  transition:0.3s ease;
}

.dot.active{
  background:var(--primary);
  transform:scale(1.2);
}

/* Responsive */
@media (max-width:768px){

  .hero{

    height:72vh;

    min-height:560px;

  }

  .hero-slide{

    justify-content:center;

    align-items:center;

    padding:0 18px;

    /* ADD THESE */
    background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center center !important;
  }

  .hero-content{

    text-align:center;

    margin:auto;

    max-width:100%;

  }

  .hero-tag{

    font-size:12px;

    padding:6px 14px;

    margin-bottom:14px;

  }

  .hero-content h2{

    font-size:42px;

    line-height:1.08;

    margin:12px 0 14px;

    word-break:break-word;

  }

  .hero-content p{

    font-size:15px;

    line-height:1.6;

    margin-bottom:24px;

    padding:0 6px;

  }

  .hero-buttons{

    justify-content:center;

    gap:12px;

  }

  .btn-primary,

  .btn-outline{

    min-width:150px;

    padding:12px 18px;

    font-size:15px;

  }

  .hero-prev,

  .hero-next{

    display:none;

  }

  .hero-dots{

    bottom:20px;

  }

}

/* =========================
   SECTION COMMON
========================= */
.section{
  padding:90px 0;
}

.section-tag{
  display:inline-block;
  background:var(--primary-light);
  color:var(--primary);
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

/* =========================================================
   ABOUT SECTION - FINAL LAYOUT
========================================================= */

.about{
  background:#ffffff;
  padding:110px 0;
  overflow:hidden;
}

.about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
  align-items:center;
  gap:58px;
}

.about-image{
  width:100%;
  max-width:620px;
  justify-self:start;
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:#eef7f8;
  box-shadow:0 24px 60px rgba(10,30,40,.10);
}

.about-image::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(17,120,133,.12);
  border-radius:inherit;
  pointer-events:none;
}

.about-image img{
  display:block;
  width:100%;
  aspect-ratio:1 / 1;
  height:auto;
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
  transform:scale(1.001);
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.about-image:hover img{
  transform:scale(1.025);
}

.about-content{
  width:100%;
  max-width:680px;
}

.about-content .section-tag{
  display:inline-flex;
  margin-bottom:20px;
}

.about-content h2{
  max-width:680px;
  margin:0 0 22px;
  font-size:clamp(38px,4vw,56px);
  line-height:1.12;
  letter-spacing:-1.8px;
  color:var(--text);
}

.about-content > p{
  max-width:680px;
  margin:0 0 30px;
  color:var(--text-light);
  font-size:17px;
  line-height:1.75;
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin:0 0 30px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:96px;
  padding:18px 20px;
  background:#ffffff;
  border:1px solid #d8eaed;
  border-radius:18px;
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.feature-item:hover{
  transform:translateY(-4px);
  border-color:var(--primary);
  box-shadow:0 14px 32px rgba(17,120,133,.10);
}

.feature-icon{
  width:50px;
  height:50px;
  min-width:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--primary-light);
  color:var(--primary);
  font-size:20px;
  font-weight:800;
  transition:transform .3s ease;
}

.feature-item:hover .feature-icon{
  transform:scale(1.08) rotate(4deg);
}

.feature-item h3{
  margin:0 0 5px;
  color:var(--text);
  font-size:18px;
  line-height:1.35;
}

.feature-item p{
  margin:0;
  color:var(--text-light);
  font-size:15px;
  line-height:1.55;
}

.about-content .btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border-radius:12px;
}

/* Smooth About entrance */
.about-image{
  opacity:0;
  transform:translateX(-45px) scale(.97);
  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.2,.7,.2,1);
}

.about-content{
  opacity:0;
  transform:translateX(45px);
  transition:
    opacity .8s ease .08s,
    transform .9s cubic-bezier(.2,.7,.2,1) .08s;
}

.about.is-visible .about-image,
.about.reveal-visible .about-image{
  opacity:1;
  transform:translateX(0) scale(1);
}

.about.is-visible .about-content,
.about.reveal-visible .about-content{
  opacity:1;
  transform:translateX(0);
}

/* Tablet */
@media (max-width:992px){
  .about{
    padding:90px 0;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:45px;
  }

  .about-image{
    max-width:700px;
    margin:0 auto;
  }

  .about-content{
    max-width:760px;
    margin:0 auto;
  }

  .about-content h2{
    font-size:42px;
  }
}

/* Mobile */
@media (max-width:600px){
  .about{
    padding:75px 0;
  }

  .about-grid{
    gap:34px;
  }

  .about-image{
    border-radius:22px;
  }

  .about-content h2{
    font-size:34px;
    line-height:1.15;
    letter-spacing:-1px;
  }

  .about-content > p{
    font-size:16px;
    line-height:1.7;
  }

  .about-features{
    gap:12px;
  }

  .feature-item{
    min-height:auto;
    padding:16px;
    gap:14px;
  }

  .feature-icon{
    width:44px;
    height:44px;
    min-width:44px;
    font-size:17px;
  }

  .feature-item h3{
    font-size:17px;
  }

  .feature-item p{
    font-size:14px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion:reduce){
  .about-image,
  .about-content{
    opacity:1;
    transform:none;
    transition:none;
  }

  .about-image img,
  .feature-item,
  .feature-icon{
    transition:none;
  }
}

/* =========================================================
   OUR CLIENTS
========================================================= */

.clients-section{
  position:relative;

  width:100%;

  padding:90px 0 100px;

  background:#ffffff;

  overflow:hidden;
}


/* =========================================================
   HEADING
========================================================= */

.clients-heading{
  width:min(850px,90%);

  margin:0 auto 55px;

  text-align:center;
}

.clients-heading .section-tag{
  display:inline-flex;

  padding:9px 18px;

  margin-bottom:18px;

  border-radius:30px;

  background:#eaf7f8;

  color:#117885;

  font-size:14px;

  font-weight:700;
}

.clients-heading h2{
  margin:0 0 18px;

  color:#101828;

  font-size:clamp(36px,4vw,52px);

  line-height:1.1;

  font-weight:750;

  letter-spacing:-1.5px;
}

.clients-heading p{
  max-width:720px;

  margin:0 auto;

  color:#667085;

  font-size:16px;

  line-height:1.7;
}


/* =========================================================
   MARQUEE VIEWPORT
========================================================= */

.clients-marquee{
  position:relative;

  width:100%;

  overflow:hidden;

  padding:10px 0 20px;
}


/* =========================================================
   TRACK
========================================================= */

.clients-track{
  display:flex;

  width:max-content;

  align-items:stretch;

  gap:24px;

  flex-wrap:nowrap;

  transform:translate3d(0,0,0);

  will-change:transform;

  animation:
    clients-marquee-scroll
    42s
    linear
    infinite;
}


/* =========================================================
   CLIENT CARD
========================================================= */

.client-card{

  flex:0 0 300px;

  width:300px;

  min-width:300px;

  height:245px;

  display:flex;

  flex-direction:column;

  justify-content:space-between;

  background:#ffffff;

  border:1px solid #d9e9ec;

  border-radius:18px;

  overflow:hidden;

  box-shadow:
    0 8px 25px rgba(15,40,50,.06);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.client-card-image{

  width:100%;

  height:190px;

  display:flex;

  align-items:center;

  justify-content:center;

  padding:25px;

  background:#ffffff;

  overflow:hidden;
}


/* =========================================================
   LOGO
========================================================= */

.client-card-image img{

  display:block;

  width:100%;

  height:100%;

  max-width:250px;

  max-height:150px;

  object-fit:contain;

  object-position:center;

  /* FULL ORIGINAL COLORS */
  filter:none;

  opacity:1;

  transition:
    transform .35s ease;
}


/* =========================================================
   CLIENT NAME
========================================================= */

.client-card h3{

  margin:0;

  padding:0 20px 18px;

  color:#101828;

  font-size:16px;

  font-weight:700;

  line-height:1.3;

  text-align:left;
}


/* =========================================================
   HOVER
========================================================= */

.client-card:hover{

  transform:translateY(-7px);

  border-color:#117885;

  box-shadow:
    0 18px 40px rgba(17,120,133,.14);
}

.client-card:hover img{

  transform:scale(1.07);

}


/* =========================================================
   PAUSE ON HOVER
========================================================= */

.clients-marquee:hover .clients-track{

  animation-play-state:paused;

}


/* =========================================================
   INFINITE LOOP
========================================================= */

@keyframes clients-marquee-scroll{

  from{

    transform:translate3d(0,0,0);

  }

  to{

    transform:translate3d(-50%,0,0);

  }

}


/* =========================================================
   SIDE FADE
========================================================= */

.clients-marquee::before,
.clients-marquee::after{

  content:"";

  position:absolute;

  top:0;

  width:100px;

  height:100%;

  z-index:10;

  pointer-events:none;
}

.clients-marquee::before{

  left:0;

  background:
    linear-gradient(
      to right,
      #ffffff,
      rgba(255,255,255,0)
    );
}

.clients-marquee::after{

  right:0;

  background:
    linear-gradient(
      to left,
      #ffffff,
      rgba(255,255,255,0)
    );
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

  .clients-section{

    padding:75px 0 85px;

  }

  .clients-heading{

    margin-bottom:42px;

  }

  .clients-track{

    gap:20px;

    animation-duration:36s;

  }

  .client-card{

    flex-basis:260px;

    width:260px;

    min-width:260px;

    height:220px;

  }

  .client-card-image{

    height:170px;

    padding:20px;

  }

  .client-card-image img{

    max-width:220px;

    max-height:135px;

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

  .clients-section{

    padding:65px 0 70px;

  }

  .clients-heading{

    width:calc(100% - 35px);

    margin-bottom:35px;

  }

  .clients-heading h2{

    font-size:32px;

    letter-spacing:-.8px;

  }

  .clients-heading p{

    font-size:15px;

  }

  .clients-track{

    gap:16px;

    animation-duration:30s;

  }

  .client-card{

    flex-basis:245px;

    width:245px;

    min-width:245px;

    height:205px;

    border-radius:16px;

  }

  .client-card-image{

    height:155px;

    padding:18px;

  }

  .client-card-image img{

    max-width:210px;

    max-height:120px;

  }

  .client-card h3{

    padding:0 16px 15px;

    font-size:14px;

  }

  .clients-marquee::before,
  .clients-marquee::after{

    width:45px;

  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .clients-track{

    animation:none;

    transform:none;

  }

}

/* =========================================================
   PRODUCTS PAGE
   Tamizha E Care Solutions
========================================================= */

.products-page{
  padding-top:80px;
  background:#ffffff;
  color:var(--text);
}

/* =========================================================
   PRODUCTS HERO
========================================================= */

.products-hero{
  position:relative;
  padding:110px 20px 90px;
  text-align:center;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(17,120,133,0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(17,120,133,0.06),
      transparent 35%
    ),
    #f8fbfc;
}

.products-hero .container{
  max-width:900px;
}

.products-hero h1{
  max-width:850px;
  margin:14px auto 18px;
  font-size:52px;
  line-height:1.12;
  letter-spacing:-1.5px;
  color:var(--text);
}

.products-hero p{
  max-width:700px;
  margin:0 auto;
  color:var(--text-light);
  font-size:18px;
  line-height:1.7;
}


/* =========================================================
   CATEGORY NAVIGATION
========================================================= */

.product-category-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.94);
  border-top:1px solid #edf2f3;
  border-bottom:1px solid #dcecef;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.product-category-nav-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:68px;
  overflow-x:auto;
  scrollbar-width:none;
}

.product-category-nav-inner::-webkit-scrollbar{
  display:none;
}

.product-category-link{
  position:relative;
  flex:0 0 auto;
  padding:10px 18px;
  border:1px solid #c9e3e6;
  border-radius:999px;
  color:var(--primary);
  background:#ffffff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.product-category-link:hover{
  color:#ffffff;
  background:var(--primary);
  border-color:var(--primary);
}


/* =========================================================
   PRODUCT CATEGORY SECTION
========================================================= */

.product-category{
  padding:100px 0;
  scroll-margin-top:80px;
  background:#ffffff;
}

.product-category-alt{
  background:#f8fbfc;
}

.product-category-heading{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
}

.product-category-heading h2{
  margin:12px 0 14px;
  font-size:40px;
  line-height:1.2;
  letter-spacing:-0.7px;
  color:var(--text);
}

.product-category-heading p{
  margin:0 auto;
  max-width:680px;
  color:var(--text-light);
  font-size:16px;
  line-height:1.75;
}


.category-visual-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
  margin-bottom:70px;
}

.category-banner{
  position:relative;
  display:block;
  overflow:hidden;
  min-height:330px;
  border-radius:24px;
  text-decoration:none;
  background:#e9f2f4;
  isolation:isolate;
}

.category-banner-large{
  min-height:390px;
}

.category-banner-small{
  min-height:390px;
}

.category-banner img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
  will-change:transform;
}

.category-banner::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;

  background:
    linear-gradient(
      90deg,
      rgba(5,18,22,0.72) 0%,
      rgba(5,18,22,0.40) 45%,
      rgba(5,18,22,0.08) 100%
    );
}

.category-banner-small::after{
  background:
    linear-gradient(
      180deg,
      rgba(5,18,22,0.08) 20%,
      rgba(5,18,22,0.72) 100%
    );
}

.category-banner:hover img{
  transform:scale(1.04);
}

.category-banner-content{
  position:absolute;
  z-index:2;
  left:34px;
  right:34px;
  bottom:32px;
  color:#ffffff;
}

.category-banner-small .category-banner-content{
  left:28px;
  right:28px;
  bottom:28px;
}

.category-banner-content span{
  display:inline-block;
  margin-bottom:12px;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(255,255,255,0.94);
  color:var(--primary);
  font-size:12px;
  font-weight:700;
}

.category-banner-content h3{
  max-width:620px;
  margin:0 0 10px;
  font-size:32px;
  line-height:1.12;
  letter-spacing:-0.5px;
  color:#ffffff;
}

.category-banner-small .category-banner-content h3{
  font-size:25px;
}

.category-banner-content p{
  max-width:580px;
  margin:0;
  color:rgba(255,255,255,0.9);
  font-size:14px;
  line-height:1.6;
}


/* =========================================================
   PRODUCT SECTION HEADING
========================================================= */

.product-section-heading{
  margin-bottom:30px;
  scroll-margin-top:110px;
}

.product-section-heading h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.25;
  color:var(--text);
}

.product-section-heading p{
  margin:0;
  color:var(--text-light);
  font-size:15px;
  line-height:1.6;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-item{
  min-width:0;
  overflow:hidden;
  background:#ffffff;
  border:1px solid #d9e9eb;
  border-radius:20px;

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.product-item:hover{
  transform:translateY(-5px);
  border-color:var(--primary);
  box-shadow:0 16px 35px rgba(17,120,133,0.10);
}


/* Product image */

.product-image{
  position:relative;
  aspect-ratio:6 / 5;
  overflow:hidden;
  background:#f4f8f9;
}

.product-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  padding:18px;

  transition:transform .4s ease;
}

.product-item:hover .product-image img{
  transform:scale(1.04);
}


/* Product information */

.product-info{
  padding:20px;
  border-top:1px solid #edf3f4;
}

.product-info h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.3;
  color:var(--text);
}

.product-info p{
  margin:0;
  color:var(--text-light);
  font-size:13px;
  line-height:1.65;
}


/* =========================================================
   PRODUCTS CTA
========================================================= */

.products-cta{
  padding:90px 20px;
  text-align:center;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(255,255,255,0.08),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );
}

.products-cta .container{
  max-width:800px;
}

.products-cta .section-tag{
  background:rgba(255,255,255,0.14);
  color:#ffffff;
}

.products-cta h2{
  margin:14px 0 14px;
  font-size:40px;
  line-height:1.2;
  color:#ffffff;
}

.products-cta p{
  max-width:650px;
  margin:0 auto 28px;
  color:rgba(255,255,255,0.9);
  font-size:17px;
  line-height:1.7;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width:1100px){

  .products-hero h1{
    font-size:46px;
  }

  .product-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .category-visual-grid{
    grid-template-columns:1.6fr 1fr;
  }

  .category-banner-large,
  .category-banner-small{
    min-height:350px;
  }

}


/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width:850px){

  .products-hero{
    padding:85px 20px 70px;
  }

  .products-hero h1{
    font-size:40px;
  }

  .product-category{
    padding:80px 0;
  }

  .category-visual-grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }

  .category-banner-large,
  .category-banner-small{
    min-height:320px;
  }

  .category-banner-content{
    left:24px;
    right:24px;
    bottom:24px;
  }

  .category-banner-content h3{
    font-size:26px;
  }

  .category-banner-small .category-banner-content h3{
    font-size:21px;
  }

  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width:600px){

  .products-hero{
    padding:70px 18px 60px;
  }

  .products-hero h1{
    font-size:32px;
    line-height:1.15;
    letter-spacing:-0.5px;
  }

  .products-hero p{
    font-size:15px;
    line-height:1.65;
  }

  .product-category-nav-inner{
    justify-content:flex-start;
    padding:8px 14px;
    min-height:60px;
  }

  .product-category-link{
    padding:9px 14px;
    font-size:13px;
  }

  .product-category{
    padding:65px 0;
  }

  .product-category-heading{
    margin-bottom:32px;
    padding:0 10px;
  }

  .product-category-heading h2{
    font-size:30px;
  }

  .product-category-heading p{
    font-size:15px;
  }


  /* Mobile category visual */

  .category-visual-grid{
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:50px;
  }

  .category-banner-large{
    min-height:300px;
  }

  .category-banner-small{
    min-height:250px;
  }

  .category-banner-content{
    left:22px;
    right:22px;
    bottom:22px;
  }

  .category-banner-content h3{
    font-size:26px;
  }

  .category-banner-small .category-banner-content h3{
    font-size:23px;
  }

  .category-banner-content p{
    font-size:13px;
  }


  /* Product grid */

  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }

  .product-info{
    padding:15px;
  }

  .product-info h3{
    font-size:16px;
  }

  .product-info p{
    font-size:12px;
  }

  .product-image img{
    padding:12px;
  }

  .product-section-heading{
    margin-bottom:22px;
  }

  .product-section-heading h3{
    font-size:23px;
  }

  .product-section-heading p{
    font-size:14px;
  }


  /* CTA */

  .products-cta{
    padding:70px 20px;
  }

  .products-cta h2{
    font-size:30px;
  }

  .products-cta p{
    font-size:15px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:400px){

  .products-hero h1{
    font-size:29px;
  }

  .category-banner-large{
    min-height:280px;
  }

  .category-banner-small{
    min-height:230px;
  }

  .category-banner-content h3{
    font-size:23px;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-image{
    aspect-ratio:16 / 11;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.product-category-link:focus-visible,
.category-banner:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

  .category-banner img,
  .product-item,
  .product-image img,
  .product-category-link{
    transition:none !important;
  }

  .category-banner:hover img,
  .product-item:hover,
  .product-item:hover .product-image img{
    transform:none;
  }
}
/* =========================================================
   SERVICES PAGE
   Tamizha E Care Solutions
========================================================= */

.services-page{
  padding-top:80px;
  background:#ffffff;
  color:var(--text);
}


/* =========================================================
   SERVICES HERO
========================================================= */

.services-hero{
  padding:105px 20px 85px;
  text-align:center;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(17,120,133,0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(17,120,133,0.06),
      transparent 35%
    ),
    #f8fbfc;
}

.services-hero .container{
  max-width:850px;
}

.services-hero h1{
  margin:14px auto 18px;
  max-width:800px;
  font-size:52px;
  line-height:1.12;
  letter-spacing:-1.4px;
  color:var(--text);
}

.services-hero p{
  max-width:700px;
  margin:0 auto;
  color:var(--text-light);
  font-size:17px;
  line-height:1.75;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.services-list{
  background:#ffffff;
}

.services-list .container{
  max-width:1220px;
}


/* =========================================================
   SERVICE ROW
========================================================= */

.service-row{
  position:relative;
  display:grid;
  grid-template-columns:90px 1fr;
  min-height:205px;
  border-bottom:1px solid #e4ebed;
}


/* =========================================================
   NUMBER
========================================================= */

.service-number{
  position:relative;
  padding:42px 0 0 30px;
  color:var(--primary);
  font-family:monospace;
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
}

.service-number::before{
  content:"—";
  margin-right:10px;
  color:var(--primary);
}

.service-number span{
  opacity:.9;
}


/* =========================================================
   MAIN SERVICE CONTENT
========================================================= */

.service-main{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 230px 60px;
  align-items:center;
  gap:30px;
  min-height:205px;
  padding:35px 25px 35px 0;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content{
  min-width:0;
}

.service-content h2{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.2;
  font-weight:500;
  letter-spacing:-.7px;
  color:var(--text);

  transition:
    color .3s ease,
    transform .3s ease;
}

.service-content p{
  max-width:650px;
  margin:0 0 18px;
  color:var(--text-light);
  font-size:15px;
  line-height:1.7;
}


/* =========================================================
   SERVICE TAGS
========================================================= */

.service-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.service-tags span{
  display:inline-flex;
  align-items:center;
  min-height:27px;
  padding:5px 11px;
  border:1px solid #d8e3e5;
  border-radius:999px;
  background:#ffffff;
  color:#68777b;
  font-size:10px;
  font-weight:600;
  letter-spacing:.7px;
  text-transform:uppercase;

  transition:
    color .3s ease,
    border-color .3s ease,
    background .3s ease;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image{
  position:relative;
  width:230px;
  height:145px;
  overflow:hidden;
  border-radius:18px;
  opacity:.25;

  transform:translateX(15px) scale(.96);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.2,.7,.2,1);
}

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


/* =========================================================
   ARROW
========================================================= */

.service-arrow{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  background:#111111;
  color:#ffffff;

  text-decoration:none;
  font-size:22px;

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.service-arrow span{
  display:block;
  line-height:1;
}

.service-arrow:hover{
  background:var(--primary);
  transform:translateX(3px);
  box-shadow:0 8px 20px rgba(17,120,133,.2);
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.service-row:hover{
  background:
    radial-gradient(
      circle at 62% 50%,
      rgba(17,120,133,.055),
      transparent 35%
    );
}

.service-row:hover .service-content h2{
  color:var(--primary);
  transform:translateX(4px);
}

.service-row:hover .service-image{
  opacity:1;
  transform:translateX(0) scale(1);
}

.service-row:hover .service-tags span{
  border-color:#b9dce0;
  color:var(--primary);
  background:#f5fbfc;
}

.service-row:hover .service-arrow{
  background:var(--primary);
}


/* =========================================================
   LEFT TEAL INDICATOR
========================================================= */

.service-row::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:transparent;

  transition:background .3s ease;
}

.service-row:hover::before{
  background:var(--primary);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px){

  .services-hero h1{
    font-size:46px;
  }

  .service-row{
    grid-template-columns:75px 1fr;
  }

  .service-main{
    grid-template-columns:minmax(0,1fr) 190px 55px;
    gap:22px;
  }

  .service-image{
    width:190px;
    height:125px;
  }

  .service-content h2{
    font-size:30px;
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width:850px){

  .services-hero{
    padding:85px 20px 70px;
  }

  .services-hero h1{
    font-size:40px;
  }

  .service-row{
    grid-template-columns:65px 1fr;
  }

  .service-main{
    grid-template-columns:minmax(0,1fr) 150px 50px;
    gap:18px;
    padding-right:15px;
  }

  .service-image{
    width:150px;
    height:105px;
  }

  .service-content h2{
    font-size:27px;
  }

  .service-content p{
    font-size:14px;
  }

  .service-arrow{
    width:44px;
    height:44px;
  }

  .services-cta h2{
    font-size:36px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:650px){

  .services-hero{
    padding:70px 18px 60px;
  }

  .services-hero h1{
    font-size:32px;
    letter-spacing:-.5px;
  }

  .services-hero p{
    font-size:15px;
  }


  /* Mobile service row */

  .service-row{
    display:block;
    min-height:0;
    padding:0;
  }

  .service-row::before{
    width:3px;
  }


  /* Number */

  .service-number{
    padding:25px 20px 0;
    font-size:11px;
  }


  /* Main */

  .service-main{
    display:grid;
    grid-template-columns:1fr auto;
    gap:18px;
    min-height:0;
    padding:12px 20px 30px;
  }


  /* Content */

  .service-content{
    grid-column:1;
  }

  .service-content h2{
    font-size:25px;
    line-height:1.2;
  }

  .service-content p{
    font-size:14px;
    line-height:1.65;
    margin-bottom:15px;
  }


  /* Image */

  .service-image{
    grid-column:1 / -1;
    grid-row:2;

    width:100%;
    height:190px;

    opacity:1;
    transform:none;

    border-radius:16px;
  }


  /* Arrow */

  .service-arrow{
    grid-column:2;
    grid-row:1;

    width:44px;
    height:44px;
    align-self:start;
  }


  /* Tags */

  .service-tags{
    gap:6px;
  }

  .service-tags span{
    font-size:9px;
    padding:5px 9px;
  }


  /* Disable desktop hover image animation */

  .service-row:hover .service-image{
    opacity:1;
    transform:none;
  }

  .service-row:hover .service-content h2{
    transform:none;
  }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:400px){

  .services-hero h1{
    font-size:29px;
  }

  .service-content h2{
    font-size:23px;
  }

  .service-content p{
    font-size:13px;
  }

  .service-image{
    height:165px;
  }

  .service-arrow{
    width:40px;
    height:40px;
    font-size:19px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.service-arrow:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

  .service-row *,
  .service-image,
  .service-arrow,
  .service-content h2,
  .service-tags span{
    transition:none !important;
  }

  .service-row:hover .service-content h2{
    transform:none;
  }

  .service-row:hover .service-image{
    transform:none;
  }
}

/* =========================================================
   CONTACT PAGE
   Tamizha E Care Solutions
========================================================= */

.contact-page{
  padding-top:80px;
  background:#ffffff;
  color:var(--text);
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero{
  padding:105px 20px 85px;
  text-align:center;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(17,120,133,0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(17,120,133,0.06),
      transparent 35%
    ),
    #f8fbfc;
}

.contact-hero .container{
  max-width:850px;
}

.contact-hero h1{
  margin:14px auto 18px;
  max-width:800px;

  font-size:52px;
  line-height:1.12;
  letter-spacing:-1.4px;

  color:var(--text);
}

.contact-hero p{
  max-width:700px;
  margin:0 auto;

  color:var(--text-light);
  font-size:17px;
  line-height:1.75;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section{
  padding:100px 0;
  background:#ffffff;
}

.contact-layout{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info{
  padding-top:10px;
}

.contact-info h2{
  margin:15px 0 14px;

  font-size:40px;
  line-height:1.2;
  letter-spacing:-.7px;

  color:var(--text);
}

.contact-intro{
  max-width:500px;
  margin:0 0 35px;

  color:var(--text-light);
  font-size:16px;
  line-height:1.75;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail{
  display:flex;
  align-items:flex-start;
  gap:17px;

  margin-bottom:25px;
}

.contact-detail-icon{
  width:48px;
  height:48px;
  flex-shrink:0;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid #cce3e6;
  border-radius:14px;

  background:#f3fafb;
  color:var(--primary);

  font-size:21px;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.contact-detail:hover .contact-detail-icon{
  background:var(--primary);
  border-color:var(--primary);
  color:#ffffff;
  transform:translateY(-2px);
}

.contact-detail h3{
  margin:0 0 5px;

  font-size:16px;
  font-weight:700;

  color:var(--text);
}

.contact-detail p,
.contact-detail address,
.contact-detail a{
  margin:0;

  color:var(--text-light);
  font-size:14px;
  line-height:1.6;

  text-decoration:none;
  font-style:normal;
}

.contact-detail a:hover{
  color:var(--primary);
}


/* =========================================================
   WHATSAPP CONTACT CARD
========================================================= */

.whatsapp-contact{
  display:flex;
  align-items:center;
  gap:14px;

  max-width:500px;
  margin-top:35px;
  padding:17px 19px;

  border:1px solid #cce3e6;
  border-radius:17px;

  background:#f7fcfc;

  color:var(--text);
  text-decoration:none;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.whatsapp-contact:hover{
  transform:translateY(-3px);
  border-color:var(--primary);
  box-shadow:0 12px 28px rgba(17,120,133,.10);
}

.whatsapp-icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:var(--primary);
  color:#ffffff;

  font-size:18px;
}

.whatsapp-contact strong{
  display:block;
  margin-bottom:2px;

  font-size:14px;
}

.whatsapp-contact small{
  display:block;

  color:var(--text-light);
  font-size:12px;
}

.whatsapp-arrow{
  margin-left:auto;

  color:var(--primary);
  font-size:20px;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper{
  padding:40px;

  border:1px solid #dcebed;
  border-radius:28px;

  background:#ffffff;

  box-shadow:
    0 18px 50px rgba(17,120,133,.07);
}

.contact-form-header{
  margin-bottom:30px;
}

.contact-form-header h2{
  margin:14px 0 9px;

  font-size:30px;
  line-height:1.25;

  color:var(--text);
}

.contact-form-header p{
  margin:0;

  color:var(--text-light);
  font-size:14px;
  line-height:1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group-full{
  grid-column:1 / -1;
}

.form-group label{
  margin-bottom:8px;

  color:var(--text);
  font-size:13px;
  font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  box-sizing:border-box;

  border:1px solid #d5e4e6;
  border-radius:12px;

  background:#fbfdfd;
  color:var(--text);

  font-family:inherit;
  font-size:14px;

  outline:none;

  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.form-group input,
.form-group select{
  height:48px;
  padding:0 14px;
}

.form-group textarea{
  min-height:145px;
  padding:14px;
  resize:vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#9aa8ab;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover{
  border-color:#b9d7da;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--primary);
  background:#ffffff;

  box-shadow:
    0 0 0 3px rgba(17,120,133,.10);
}


/* =========================================================
   FORM SUBMIT
========================================================= */

.form-submit{
  grid-column:1 / -1;
  margin-top:5px;
}

.contact-submit{
  width:100%;
  min-height:50px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  border:0;
  border-radius:13px;

  background:var(--primary);
  color:#ffffff;

  font-family:inherit;
  font-size:15px;
  font-weight:700;

  cursor:pointer;

  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.contact-submit:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);

  box-shadow:
    0 10px 24px rgba(17,120,133,.18);
}

.contact-submit span{
  font-size:19px;
}

.form-note{
  margin:12px 0 0;

  text-align:center;

  color:#8a989b;
  font-size:11px;
  line-height:1.5;
}

@media (max-width:600px){

  .contact-hero{
    padding:70px 18px 60px;
  }

  .contact-hero h1{
    font-size:32px;
    letter-spacing:-.5px;
  }

  .contact-hero p{
    font-size:15px;
  }

  .contact-section{
    padding:65px 0;
  }

  /* FIX CONTACT LAYOUT */
  .contact-layout{
    grid-template-columns:1fr;
    gap:45px;
  }

  .contact-info{
    padding:0 5px;
  }

  .contact-info h2{
    font-size:30px;
  }

  .contact-intro{
    font-size:15px;
  }

  .contact-detail{
    gap:13px;
    margin-bottom:21px;
  }

  .contact-detail-icon{
    width:44px;
    height:44px;
    border-radius:12px;
  }

  .contact-detail h3{
    font-size:15px;
  }

  .contact-detail p,
  .contact-detail address,
  .contact-detail a{
    font-size:13px;
  }

  .whatsapp-contact{
    margin-top:28px;
  }

  .contact-form-wrapper{
    padding:24px 20px;
    border-radius:22px;
  }

  .contact-form-header h2{
    font-size:26px;
  }

  .contact-form{
    grid-template-columns:1fr;
    gap:17px;
  }

  .form-group-full{
    grid-column:auto;
  }

  .form-submit{
    grid-column:auto;
  }

  .contact-location{
    padding-bottom:65px;
  }

  .location-card{
    border-radius:22px;
  }

  .location-content{
    padding:32px 24px;
  }

  .location-content h2{
    font-size:29px;
  }

  .location-map,
  .map-placeholder{
    min-height:260px;
  }
}

/* =========================================================
   LOCATION
========================================================= */

.contact-location{
  padding:0 0 100px;
  background:#ffffff;
}

.location-card{
  display:grid;
  grid-template-columns:.8fr 1.2fr;

  overflow:hidden;

  border:1px solid #dcebed;
  border-radius:28px;

  background:#f8fbfc;
}

.location-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;

  padding:50px;
}

.location-content h2{
  margin:14px 0 12px;

  font-size:34px;
  line-height:1.2;
}

.location-content p{
  max-width:430px;
  margin:0 0 25px;

  color:var(--text-light);
  font-size:15px;
  line-height:1.7;
}


/* =========================================================
   LOCATION / GOOGLE MAP
========================================================= */

.location-card {
  display: grid;
  grid-template-columns: 40% 60%;
  width: 100%;
  min-height: 460px;

  overflow: hidden;
  border: 1px solid rgba(17, 120, 133, 0.18);
  border-radius: 28px;

  background: #eef6f7;

  box-shadow:
    0 15px 45px rgba(17, 120, 133, 0.08);
}


/* =========================================================
   LEFT LOCATION CONTENT
========================================================= */

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px;
  background: #eef6f7;
}

.location-content .section-tag {
  width: fit-content;
  margin-bottom: 25px;
}

.location-content h2 {
  margin: 0 0 15px;

  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;

  color: var(--text);
}

.location-content p {
  max-width: 390px;
  margin: 0 0 28px;

  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.location-map {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 460px;

  overflow: hidden;

  background: #e9f1f2;
}


/* Google iframe */

.location-map iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 460px;

  border: 0;
}


/* =========================================================
   GET DIRECTIONS BUTTON
========================================================= */

.location-content .btn-primary {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 28px;

  border-radius: 12px;

  background: var(--primary);
  color: #ffffff;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.location-content .btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(17, 120, 133, 0.20);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .location-card {
    grid-template-columns: 1fr 1fr;
  }

  .location-content {
    padding: 40px;
  }

  .location-content h2 {
    font-size: 30px;
  }

  .location-map,
  .location-map iframe {
    min-height: 420px;
  }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 750px) {

  .location-card {
    grid-template-columns: 1fr;
    min-height: auto;

    border-radius: 24px;
  }

  .location-content {
    padding: 45px 35px;
  }

  .location-content h2 {
    font-size: 32px;
  }

  .location-content p {
    max-width: 100%;
  }

  .location-map {
    height: 380px;
    min-height: 380px;
  }

  .location-map iframe {
    height: 380px;
    min-height: 380px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .location-card {
    border-radius: 20px;
  }

  .location-content {
    padding: 35px 24px;
  }

  .location-content h2 {
    font-size: 29px;
  }

  .location-content p {
    font-size: 15px;
  }

  .location-map {
    height: 320px;
    min-height: 320px;
  }

  .location-map iframe {
    height: 320px;
    min-height: 320px;
  }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

  .location-content {
    padding: 30px 20px;
  }

  .location-content h2 {
    font-size: 27px;
  }

  .location-map {
    height: 280px;
    min-height: 280px;
  }

  .location-map iframe {
    height: 280px;
    min-height: 280px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
  background:#0b2024;
  color:#ffffff;
  padding:75px 0 0;
}

/* Main footer */
.footer-main{
  display:grid;
  grid-template-columns:1.5fr 1fr 1.15fr 1.15fr 1.2fr;
  gap:45px;
  padding-bottom:60px;
}

/* Company */
.footer-company{
  max-width:330px;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  margin-bottom:22px;
}

.footer-logo img{
  width:180px;
  height:auto;
  display:block;
  object-fit:contain;
}

.footer-company > p{
  margin:0 0 25px;
  color:#aebfc2;
  font-size:14px;
  line-height:1.8;
}

/* Footer CTA */
.footer-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:11px 16px;

  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;

  background:rgba(255,255,255,.06);
  color:#ffffff;

  font-size:13px;
  font-weight:600;
  text-decoration:none;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.footer-cta:hover{
  background:var(--primary);
  border-color:var(--primary);
  transform:translateY(-2px);
}

.footer-cta span{
  font-size:17px;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h3{
  margin:5px 0 20px;

  color:#ffffff;
  font-size:15px;
  font-weight:700;
}

.footer-column ul{
  list-style:none;
  padding:0;
  margin:0;

  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-column li{
  margin:0;
}

.footer-column a{
  color:#aebfc2;
  font-size:13px;
  line-height:1.5;
  text-decoration:none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-column ul a:hover{
  color:#ffffff;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact address{
  display:flex;
  flex-direction:column;
  gap:12px;

  margin:0;
  font-style:normal;
}

.footer-contact address a,
.footer-contact address span{
  color:#aebfc2;
  font-size:13px;
  line-height:1.5;
  text-decoration:none;
}

.footer-contact address a:hover{
  color:#ffffff;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social{
  display:flex;
  align-items:center;
  gap:8px;

  margin-top:22px;
}

.footer-social a{
  width:34px;
  height:34px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.16);
  border-radius:9px;

  background:rgba(255,255,255,.04);
  color:#b7c7ca;

  font-size:10px;
  font-weight:700;

  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.footer-social a:hover{
  background:var(--primary);
  border-color:var(--primary);
  color:#ffffff;
  transform:translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{
  min-height:70px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  border-top:1px solid rgba(255,255,255,.10);
}

.footer-bottom p{
  margin:0;

  color:#82969a;
  font-size:12px;
  line-height:1.5;
}

.footer-legal{
  display:flex;
  align-items:center;
  gap:20px;
}

.footer-legal a{
  color:#82969a;
  font-size:12px;
  text-decoration:none;

  transition:color .2s ease;
}

.footer-legal a:hover{
  color:#ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px){

  .footer-main{
    grid-template-columns:1.5fr 1fr 1fr;
    gap:40px;
  }

  .footer-company{
    max-width:400px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px){

  .site-footer{
    padding-top:55px;
  }

  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:40px 25px;
    padding-bottom:45px;
  }

  .footer-company{
    grid-column:1 / -1;
    max-width:100%;
  }

  .footer-logo img{
    width:165px;
  }

  .footer-column h3{
    margin-bottom:16px;
  }

  .footer-column ul{
    gap:10px;
  }

  .footer-contact{
    grid-column:1 / -1;
  }

  .footer-bottom{
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:20px 0;
    text-align:center;
  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:420px){

  .footer-main{
    grid-template-columns:1fr;
    gap:32px;
  }

  .footer-company,
  .footer-contact{
    grid-column:auto;
  }

  .footer-legal{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 18px;
  }

}

/* =========================================================
   GLOBAL SMOOTH SCROLL & ANIMATIONS
========================================================= */

/* Smooth navigation scrolling */
html{
  scroll-behavior:smooth;
  scroll-padding-top:80px;
}

/* Prevent accidental horizontal scrolling */
html,
body{
  max-width:100%;
  overflow-x:hidden;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}


/* From left */
.reveal-left{
  opacity:0;
  transform:translateX(-35px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal-left.is-visible{
  opacity:1;
  transform:translateX(0);
}


/* From right */
.reveal-right{
  opacity:0;
  transform:translateX(35px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal-right.is-visible{
  opacity:1;
  transform:translateX(0);
}


/* =========================================================
   STAGGERED ANIMATION
========================================================= */

.reveal-delay-1{
  transition-delay:.08s;
}

.reveal-delay-2{
  transition-delay:.16s;
}

.reveal-delay-3{
  transition-delay:.24s;
}

.reveal-delay-4{
  transition-delay:.32s;
}


/* =========================================================
   PRODUCT IMAGE ANIMATION
========================================================= */

.product-image{
  overflow:hidden;
}

.product-image img{
  transform:scale(.97);
  transition:
    transform .6s cubic-bezier(.2,.7,.2,1);
}

.product-item:hover .product-image img{
  transform:scale(1.05);
}


/* =========================================================
   CATEGORY IMAGE ANIMATION
========================================================= */

.category-banner{
  overflow:hidden;
}

.category-banner img{
  transition:
    transform .8s cubic-bezier(.2,.7,.2,1);
}

.category-banner:hover img{
  transform:scale(1.055);
}


/* =========================================================
   HERO IMAGE / CAROUSEL
========================================================= */

.hero img{
  transition:
    transform 1s cubic-bezier(.2,.7,.2,1);
}

.hero-slide:hover img{
  transform:scale(1.025);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image{
  overflow:hidden;
}

.service-image img{
  transition:
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.service-row:hover .service-image img{
  transform:scale(1.04);
}


/* =========================================================
   BUTTON MICRO ANIMATION
========================================================= */

.btn-primary,
.btn-secondary,
.service-arrow,
.footer-cta,
.contact-submit{
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.footer-cta:hover,
.contact-submit:hover{
  transform:translateY(-2px);
}


/* =========================================================
   SECTION TAG
========================================================= */

.section-tag{
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease;
}


/* =========================================================
   IMAGE PERFORMANCE
========================================================= */

img{
  max-width:100%;
}

img[loading="lazy"]{
  content-visibility:auto;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right{
    opacity:1;
    transform:none;
  }

}

/* =========================================================
   FINAL LAYOUT SAFETY
   Fixed header = 80px
========================================================= */

:root{
  --header-height:80px;
}

@media (min-width:801px){
  .header .nav-links{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .header .menu-toggle{
    display:none !important;
  }
}

@media (max-width:800px){
  .header .nav-links{
    display:none !important;
  }

  .header .nav-links.active{
    display:flex !important;
  }

  .header .menu-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
}

/* =========================================================
   TAMIZHA E CARE — PREMIUM MOTION SYSTEM
   Added without changing the existing layout
========================================================= */

/* ---------- Global performance ---------- */
.header,
.hero-slide,
.category-banner,
.product-item,
.service-row,
.feature-item,
.contact-card,
.contact-form,
.footer,
.footer-cta{
  backface-visibility:hidden;
}

/* ---------- Navbar motion ---------- */
.header{
  transition:
    box-shadow .35s ease,
    background-color .35s ease,
    border-color .35s ease;
}

.header.is-scrolled{
  box-shadow:0 10px 30px rgba(17,120,133,.10) !important;
  border-bottom-color:rgba(17,120,133,.16) !important;
}

.header .logo{
  transition:transform .3s ease;
}

.header .logo:hover{
  transform:translateY(-1px);
}

.header .logo img{
  transition:transform .45s cubic-bezier(.2,.7,.2,1);
}

.header .logo:hover img{
  transform:rotate(-2deg) scale(1.04);
}

.header .nav-links a{
  transition:
    color .25s ease,
    transform .25s ease;
}

.header .nav-links a:hover{
  transform:translateY(-1px);
}

.header .quote-btn{
  box-shadow:0 6px 18px rgba(17,120,133,.10);
  transition:
    transform .25s ease,
    background-color .25s ease,
    box-shadow .25s ease;
}

.header .quote-btn:hover{
  box-shadow:0 10px 25px rgba(17,120,133,.20);
}

/* ---------- Hero entrance ---------- */
.hero-content .hero-tag,
.hero-content h2,
.hero-content p,
.hero-content .hero-buttons{
  opacity:0;
  transform:translateY(22px);
}

.hero-slide.active .hero-tag{
  animation:heroItemIn .7s .10s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-slide.active h2{
  animation:heroItemIn .8s .20s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-slide.active p{
  animation:heroItemIn .8s .32s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-slide.active .hero-buttons{
  animation:heroItemIn .8s .44s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes heroItemIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.hero-slide{
  transition:
    opacity .9s ease,
    visibility .9s ease;
}

.hero-slide.active{
  animation:heroSlideFocus 1.1s ease both;
}

@keyframes heroSlideFocus{
  from{
    background-size:104%;
  }
  to{
    background-size:100%;
  }
}

.hero-prev,
.hero-next{
  transition:
    transform .3s ease,
    background-color .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

.hero-prev:hover{
  transform:translate(-3px,-50%);
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.hero-next:hover{
  transform:translate(3px,-50%);
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ---------- Generic reveal ---------- */
.motion-reveal{
  opacity:0;
  transform:translateY(34px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}

.motion-reveal.is-motion-visible{
  opacity:1;
  transform:translateY(0);
}

.motion-left{
  opacity:0;
  transform:translateX(-42px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}

.motion-left.is-motion-visible{
  opacity:1;
  transform:translateX(0);
}

.motion-right{
  opacity:0;
  transform:translateX(42px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}

.motion-right.is-motion-visible{
  opacity:1;
  transform:translateX(0);
}

.motion-scale{
  opacity:0;
  transform:scale(.94);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}

.motion-scale.is-motion-visible{
  opacity:1;
  transform:scale(1);
}

/* ---------- Stagger ---------- */
.motion-delay-1{transition-delay:.06s;}
.motion-delay-2{transition-delay:.12s;}
.motion-delay-3{transition-delay:.18s;}
.motion-delay-4{transition-delay:.24s;}
.motion-delay-5{transition-delay:.30s;}
.motion-delay-6{transition-delay:.36s;}
.motion-delay-7{transition-delay:.42s;}
.motion-delay-8{transition-delay:.48s;}

/* ---------- About ---------- */
.about-image{
  transition:
    transform .7s cubic-bezier(.2,.7,.2,1),
    box-shadow .4s ease;
}

.about-image:hover{
  transform:translateY(-5px);
  box-shadow:0 25px 55px rgba(17,120,133,.13);
}

.feature-item{
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    background-color .3s ease;
}

.feature-icon{
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    background-color .3s ease;
}

.feature-item:hover .feature-icon{
  transform:scale(1.08) rotate(-3deg);
  background:var(--primary);
  color:#fff;
}

/* ---------- Product cards ---------- */
.product-item{
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    border-color .3s ease,
    box-shadow .35s ease;
}

.product-item:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 42px rgba(17,120,133,.13);
}

.product-image img{
  transition:
    transform .65s cubic-bezier(.2,.7,.2,1);
}

.product-item:hover .product-image img{
  transform:scale(1.07);
}

.product-info h3{
  transition:color .25s ease;
}

.product-item:hover .product-info h3{
  color:var(--primary);
}

.product-category-link{
  transition:
    transform .25s ease,
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.product-category-link:hover{
  transform:translateY(-2px);
  box-shadow:0 7px 18px rgba(17,120,133,.12);
}

/* ---------- Category banners ---------- */
.category-banner{
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    box-shadow .45s ease;
}

.category-banner:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 45px rgba(17,120,133,.14);
}

.category-banner img{
  transition:
    transform .9s cubic-bezier(.2,.7,.2,1);
}

.category-banner:hover img{
  transform:scale(1.07);
}

.category-banner-content{
  transition:transform .4s cubic-bezier(.2,.7,.2,1);
}

.category-banner:hover .category-banner-content{
  transform:translateY(-4px);
}

/* ---------- Services ---------- */
.service-row{
  transition:
    background-color .35s ease,
    transform .35s ease;
}

.service-row:hover{
  transform:translateX(5px);
}

.service-content h2{
  transition:
    color .3s ease,
    transform .3s ease;
}

.service-image{
  transition:
    opacity .45s ease,
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .4s ease;
}

.service-row:hover .service-image{
  box-shadow:0 15px 35px rgba(17,120,133,.15);
}

.service-image img{
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}

.service-row:hover .service-image img{
  transform:scale(1.07);
}

.service-arrow{
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    background-color .3s ease,
    box-shadow .3s ease;
}

.service-row:hover .service-arrow{
  transform:translateX(5px) scale(1.05);
}

/* ---------- Contact ---------- */
.contact-card,
.contact-form{
  transition:
    transform .4s cubic-bezier(.2,.7,.2,1),
    box-shadow .4s ease,
    border-color .3s ease;
}

.contact-card:hover,
.contact-form:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 45px rgba(17,120,133,.10);
  border-color:rgba(17,120,133,.25);
}

/* ---------- Footer ---------- */
.footer-cta{
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.footer-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(17,120,133,.18);
}

/* ---------- Button press ---------- */
.btn-primary:active,
.btn-secondary:active,
.quote-btn:active,
.footer-cta:active,
.contact-submit:active,
.service-arrow:active{
  transform:scale(.97);
}

/* ---------- Focus accessibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:3px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){

  .motion-reveal,
  .motion-left,
  .motion-right,
  .motion-scale,
  .hero-content .hero-tag,
  .hero-content h2,
  .hero-content p,
  .hero-content .hero-buttons{
    opacity:1 !important;
    transform:none !important;
    animation:none !important;
    transition:none !important;
  }

  .hero-slide.active{
    animation:none !important;
  }

  .header .logo:hover,
  .header .nav-links a:hover,
  .category-banner:hover,
  .product-item:hover,
  .service-row:hover,
  .about-image:hover{
    transform:none !important;
  }
}

/* ---------- Mobile tuning ---------- */
@media (max-width:800px){

  .motion-left,
  .motion-right{
    transform:translateY(25px);
  }

  .motion-left.is-motion-visible,
  .motion-right.is-motion-visible{
    transform:translateY(0);
  }

  .service-row:hover{
    transform:none;
  }

  .category-banner:hover,
  .product-item:hover{
    transform:translateY(-3px);
  }

}


