:root {
  --maroon: #89261f;
  --red: #be2e21;
  --purple: #5d1e46;
  --light-bg: #f5f5f5;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--light-bg);
  color: #111;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 10px 5%; /* 36px ki jagah % use kiya for safety */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  height: 80px; /* Fixed height taki content na dabe */
}

.logo img {
  height: 50px;
  width: auto;
}

/* ================= NAV (Desktop Default) ================= */
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Common Link Styles */
.nav a,
.drop-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover Effects */
.nav a::after,
.drop-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav a:hover, .drop-btn:hover { color: var(--red); }
.nav a:hover::after, .drop-btn:hover::after { width: 100%; }

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.drop-menu {
  position: absolute;
  top: 150%; /* Thoda niche */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  
  /* Hidden State */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Open State */
.dropdown.open .drop-menu {
  opacity: 1;
  visibility: visible;
  /* transform: translateX(0%) translateY(0); */
}

.drop-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--maroon);
  border-bottom: 1px solid #f0f0f0;
}
.drop-menu a:last-child { border-bottom: none; }

.drop-menu a:hover {
  background: var(--light-bg);
  color: var(--red);
}
.drop-menu a::after { display: none; } /* Dropdown links par underline hataya */

/* ================= CTA BUTTONS ================= */
.cta-btn-desktop, .cta-btn-mobile {
  background: linear-gradient(135deg, var(--red), var(--maroon));
  color: #ffffff !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(190, 46, 33, 0.3);
  transition: transform 0.3s ease;
}

.cta-btn-desktop:hover, .cta-btn-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(190, 46, 33, 0.4);
}
.cta-btn-desktop::after, .cta-btn-mobile::after { display: none; }

.cta-btn-mobile { display: none; } /* Desktop par hidden */

/* ================= MOBILE TOGGLE (Hamburger) ================= */
.mobile-toggle {
    display: none; /* Desktop par hidden */
    cursor: pointer;
}
.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--maroon);
    margin: 5px 0;
    transition: 0.3s;
}
.close-menu {
    display: none;
}

/* ================= RESPONSIVE DESIGN (Tablets & Mobile) ================= */
@media (max-width: 992px) {
    .nav { gap: 15px; }
    .nav a, .drop-btn { font-size: 14px; }
    .cta-btn-desktop { padding: 8px 18px; font-size: 14px;}
}

@media (max-width: 768px) {
    /* 1. Header Layout */
    .header {
        padding: 0 20px;
        justify-content: space-between;
    }
    
    .cta-btn-desktop { display: none;  } /* Hide Desktop Button */
    .mobile-toggle { display: block; }  /* Show Hamburger */

    /* 2. Side Drawer Menu */
    .nav {
        position: fixed;
        top: 0;
        right: -100%; /* Screen ke bahar */
        width: 75%;   /* Screen ka 75% hissa lega */
        height: 100vh;
        background: white;
        flex-direction: column; /* Links upar niche */
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
    }

    .nav.active {
        right: 0; /* Slide In */
    }

    /* 3. Close Button (X) inside Menu */
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: var(--maroon);
        cursor: pointer;
    }

    /* 4. Mobile Links Styling */
    .nav a, .drop-btn {
        font-size: 13px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .cta-btn-mobile {
        display: inline-block;
        margin-top: 20px;
        width: 100%;
        visibility: hidden;
        text-align: center;
        color: rgb(30, 29, 29) !important;
    }

    /* 5. Mobile Dropdown Fix */
    .dropdown {
        width: 100%;
    }
    .drop-btn {
        display: flex;
        justify-content: space-between;
    }
    .drop-menu {
        position: static; /* Relative to flow, not floating */
        width: 100%;
        transform: none;
        box-shadow: none;
        padding-left: 15px; /* Indent sub-items */
        background: #f9f9f9;
        display: none; /* Hide default */
        opacity: 1;
        visibility: visible;
        min-width: unset;
    }
    .dropdown.open .drop-menu {
        display: block; /* Show on click */
    }
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--purple), var(--maroon));
  color: #ffffff;
  padding-top: 60px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 0 5% 40px 5%;
}

.footer-brand img {
  height: 60px;
  background: white;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.footer h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--red);
  position: absolute;
  left: 0;
  bottom: -5px;
}

.footer a, .footer p {
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}
.footer a:hover { color: #fff; transform: translateX(5px); transition: 0.3s; }

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.2);
  font-size: 13px;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Sab ek ke niche ek */
        text-align: center;
        gap: 40px;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/* hero-css */
/* --- VARIABLES --- */
:root {
  --primary: #89261f;   /* Maroon */
  --accent: #be2e21;    /* Red */
  --dark: #2c3e50;
  --light: #f4f7f6;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
}

/* --- HERO SECTION LAYOUT --- */
.narayana-hero {
  position: relative;
  padding: 140px 20px 80px 20px; /* Top padding for fixed navbar */
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background Decoration */
.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(137, 38, 31, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- TEXT CONTENT --- */
.hero-badge {
  background: rgba(137, 38, 31, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.highlight-text {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 20px;
  min-height: 40px;
}

.typing-text {
  color: var(--primary);
  font-weight: 700;
}

.cursor {
  display: inline-block;
  width: 2px;
  background-color: var(--primary);
  animation: blink 0.7s infinite;
}

.hero-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
}

/* --- BUTTONS --- */
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.btn-main {
  padding: 15px 35px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(137, 38, 31, 0.3);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(137, 38, 31, 0.4);
  color: white;
}

.btn-call-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.icon-pulse {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  animation: pulse 2s infinite;
}

/* --- STATS (Glassmorphism) --- */
.hero-stats-wrapper {
  display: flex;
  gap: 20px;
}

.glass-stat {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  min-width: 120px;
}

.glass-stat:hover {
  transform: translateY(-5px);
  background: white;
}

.glass-stat h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  margin: 0;
}

.glass-stat p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
  font-weight: 600;
}

/* --- IMAGE AREA --- */
.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-blob-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphBlob 8s ease-in-out infinite;
  z-index: -1;
}

.hero-main-img-box {
  position: relative;
  z-index: 1;
  animation: floatImg 4s ease-in-out infinite;
}

.main-img {
  width: 100%;
  max-width: 480px;
  border-radius: 30px;
  /* Premium border effect */
  border: 5px solid white;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Floating Badge */
.float-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: white;
  padding: 12px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  animation: floatBadge 5s ease-in-out infinite alternate;
}

.badge-icon {
  font-size: 24px;
}

.badge-text strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
}

.badge-text small {
  color: var(--primary);
  font-weight: 600;
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(137, 38, 31, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(137, 38, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(137, 38, 31, 0); }
}

@keyframes blink { 50% { opacity: 0; } }

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

@keyframes morphBlob {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  33% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  66% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* --- REVEAL CLASSES (Controlled by JS) --- */
.reveal-text, .reveal-up, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.active-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr; /* Stack Image and Text */
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    order: 2; /* Image upar, text neeche */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image-area {
    order: 1;
  }
  
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-desc { margin: 0 auto 30px auto; }
  
  .hero-actions { justify-content: center; }
  
  .hero-stats-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .float-badge {
    left: 0; bottom: 20px;
  }
}

@media (max-width: 576px) {
  .narayana-hero { padding-top: 100px; padding-bottom: 50px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-main, .btn-call-hero { width: 100%; justify-content: center; }
  .main-img { max-width: 100%; }
}














/* ABOUT SECTION */
/* --- VARIABLES --- */
:root {
  --maroon: #89261f;
  --red: #be2e21;
  --green: #325833;
  --yellow: #ffc107;
  --white: #ffffff;
  --light-bg: #f9fcff;
}

/* --- SECTION BASE --- */
.narayana-about {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--light-bg), var(--white));
  overflow: hidden; /* Horizontal scroll rokne ke liye */
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Left side thoda bada */
  gap: 80px;
  align-items: center;
}

/* --- HEADING STYLES --- */
.about-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 30px;
}

.small-label {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Line Animation Wrapper */
.line-wrapper {
  display: block;
  overflow: hidden;
}

.line {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-heading.show .line {
  transform: translateY(0);
}

/* Highlight Text */
.highlight {
  background: linear-gradient(135deg, var(--maroon), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* --- CONTENT BOX --- */
.about-box {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  border-left: 5px solid var(--red);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.about-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-box h4 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Column List */
  gap: 10px;
}

.service-list li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li i {
  color: var(--red);
  font-size: 14px;
}

/* --- ACTIONS (Buttons) --- */
.about-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn-gradient {
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--maroon), var(--red));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(190,46,33,0.3);
  transition: transform 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(190,46,33,0.5);
}

.trust-text {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* --- IMAGE SECTION --- */
.about-image {
  position: relative;
  padding: 20px;
}

.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;

}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.icon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Experience Floating Card */
.experience-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 25px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 2;
  border: 1px solid #eee;
}

.experience-card h3 {
  font-size: 36px;
  color: var(--green);
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.experience-card span {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* --- ANIMATIONS CLASSES --- */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.show {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* =========================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================= */

/* Tablet (Max Width 1024px) */
@media (max-width: 1024px) {
  .about-container {
    gap: 40px;
  }
  .about-heading {
    font-size: 36px;
  }
  .experience-card {
    left: -10px;
    bottom: -20px;
  }
}

/* Mobile (Max Width 768px) */
@media (max-width: 768px) {
  .narayana-about {
    padding: 60px 20px;
  }

  .about-container {
    grid-template-columns: 1fr; /* Stack layout */
    text-align: center;
    gap: 50px;
  }

  /* Left Content Adjustments */
  .about-heading {
    font-size: 32px; /* Smaller font */
  }

  .line-wrapper {
    display: inline-block; /* Words break properly */
  }

  .about-box {
    text-align: left; /* Text readable rakne ke liye left align better hai box me */
    padding: 20px;
  }
  
  .service-list {
    grid-template-columns: 1fr; /* Single column list */
  }

  .about-actions {
    justify-content: center;
    flex-direction: column; /* Button upar, text neeche */
  }

  /* Image Section Adjustments */
  .about-image {
    padding: 0;
    margin-top: 20px;
  }

  .image-frame {
    box-shadow: 10px 10px 0px rgba(137, 38, 31, 0.1);
  }

  .experience-card {
    position: relative; /* Floating hatakar normal flow me laye */
    bottom: auto;
    left: auto;
    margin: -40px auto 0 auto; /* Image ke upar thoda chadha rahega */
    width: 80%;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
}





/* Services-css */

/* BASE */
.narayana-services {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f7f4f4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
}

.narayana-services.services-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

/* BUBBLES */
.services-bg .bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}
.b1 { width:120px;height:120px;background:#be2e21;top:12%;left:8%; }
.b2 { width:80px;height:80px;background:#325833;top:65%;left:15%; }
.b3 { width:150px;height:150px;background:#89261f;top:20%;right:10%; }
.b4 { width:90px;height:90px;background:#5d1e46;bottom:15%;right:20%; }

/* CONTAINER */
.services-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* HEADING */
.services-heading {
  text-align: center;
  margin-bottom: 60px;
}
.services-tag {
  font-size: 13px;
  letter-spacing: 3px;
  color: #325833;
  font-weight: 700;
}
.services-heading h2 {
  font-size: 40px;
  color: #89261f;
}
.services-heading h2 span {
  background: linear-gradient(135deg, #89261f, #be2e21);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

/* TABS */
.services-tabs {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.services-tabs .tab {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 10px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}
.services-tabs .tab.active,
.services-tabs .tab:hover {
  background: linear-gradient(135deg, #89261f, #be2e21);
  color: #fff;
}

/* CARD */
.service-card {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}
.service-card.active {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.6s ease;
}

.service-text h3 {
  font-size: 28px;
  color: #89261f;
}
.service-text p {
  color: #444;
  margin: 14px 0;
}
.service-text ul {
  list-style: none;
  padding: 0;
}
.service-text ul li {
  margin-bottom: 8px;
}

/* READ MORE */
.btn-readmore {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #89261f, #be2e21);
  box-shadow: 0 12px 30px rgba(190,46,33,0.35);
  transition: .35s;
}
.btn-readmore:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(190,46,33,0.5);
}

/* IMAGE */
.service-image img {
  width: 100%;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid { grid-template-columns:1fr; }
  .service-card.active { grid-template-columns:1fr; text-align:center; }
}









/* why choose css  */

/* ===== BASE ===== */
.why-premium{
  padding:120px 20px;
  background:
    linear-gradient(180deg,
      rgba(137,38,31,0.08),
      rgba(93,30,70,0.12)
    ),
    #f7f9fb;
  overflow:hidden;
}

.why-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

/* ===== LEFT TEXT ===== */
.why-tag{
  font-size:13px;
  letter-spacing:3px;
  color:#325833;
  font-weight:700;
}

.why-text h2{
  font-size:46px;
  line-height:1.15;
  color:#89261f;
  margin:18px 0;
}

.why-text h2 span{
  background:linear-gradient(135deg,#89261f,#be2e21);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.why-text p{
  font-size:16px;
  color:#444;
  max-width:520px;
  margin-bottom:22px;
}

.why-list{
  list-style:none;
  padding:0;
  margin-bottom:28px;
}

.why-list li{
  margin-bottom:10px;
  color:#333;
}

/* ===== CTA ===== */
.why-cta{
  display:flex;
  gap:16px;
}

.btn-main{
  padding:14px 32px;
  background:linear-gradient(135deg,#89261f,#be2e21);
  color:#fff;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(190,46,33,.35);
  transition:.35s;
}

.btn-main:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(190,46,33,.5);
}

.btn-alt{
  padding:14px 30px;
  border:2px solid #89261f;
  color:#89261f;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.btn-alt:hover{
  background:#89261f;
  color:#fff;
}

/* ===== RIGHT VISUAL ===== */
.why-visual{
  position:relative;
  height:460px;
}

.visual-image{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.visual-image img{
  width:85%;
  filter:drop-shadow(0 40px 70px rgba(0,0,0,.25));
  animation:floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{
  0%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
  100%{transform:translateY(0)}
}

/* ===== FLOAT STATS ===== */
.stat-card{
  position:absolute;
  background:#fff;
  padding:16px 22px;
  border-radius:16px;
  box-shadow:0 25px 50px rgba(0,0,0,.18);
  text-align:center;
  animation:softFloat 7s ease-in-out infinite;
}

.stat-card h4{
  font-size:24px;
  color:#325833;
}

.stat-card span{
  font-size:13px;
  color:#555;
}

.s1{top:20px;left:0}
.s2{top:45%;right:-10px;animation-delay:1.5s}
.s3{bottom:20px;left:20%;animation-delay:3s}

@keyframes softFloat{
  0%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
  100%{transform:translateY(0)}
}

/* ===== TEXT ENTRY ANIMATION ===== */
.why-text{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.why-text.active{
  opacity:1;
  transform:translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .why-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }
  .why-cta{
    justify-content:center;
    display: grid;
  }
  .why-visual{
    height:380px;
  }
}










/* CTA css */

.physio-cta{
  padding:110px 20px;
  background:
    radial-gradient(circle at top left,
      rgba(137,38,31,.10),
      transparent 60%),
    radial-gradient(circle at bottom right,
      rgba(50,88,51,.10),
      transparent 55%),
    #f8f9fb;
}

.physio-cta-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

/* TEXT */
.cta-badge{
  font-size:12px;
  letter-spacing:2.5px;
  color:#325833;
  font-weight:700;
}

.physio-cta-text h2{
  font-size:48px;
  line-height:1.15;
  color:#89261f;
  margin:16px 0;
}

.physio-cta-text h2 span{
  background:linear-gradient(135deg,#89261f,#be2e21);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.physio-cta-text p{
  font-size:16.5px;
  color:#444;
  max-width:540px;
  margin-bottom:18px;
}

.cta-trust{
  font-size:14px;
  color:#325833;
  margin-bottom:28px;
  font-weight:600;
}

/* BUTTONS */
.physio-cta-actions{
  display:flex;
  gap:18px;
}

.btn-call-now{
  padding:16px 53px;
  background:linear-gradient(135deg,#325833,#1f3d2a);
  color:#fff;
  border-radius:50px;
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 18px 40px rgba(50,88,51,.45);
  animation:callPulse 2.4s infinite;
}

@keyframes callPulse{
  0%{box-shadow:0 0 0 0 rgba(50,88,51,.5)}
  70%{box-shadow:0 0 0 22px rgba(50,88,51,0)}
  100%{box-shadow:0 0 0 0 rgba(50,88,51,0)}
}

.btn-book{
  padding:16px 34px;
  background:linear-gradient(135deg,#89261f,#be2e21);
  color:#fff;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.btn-book:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 35px rgba(190,46,33,.45);
}

/* IMAGE */
.physio-cta-image{
  display:flex;
  justify-content:center;
}

.image-frame{
  position:relative;
  padding:10px;
  border-radius:26px;

  animation:imageFloat 6s ease-in-out infinite;
}

.image-frame img{
  width:100%;
  max-width:420px;
  border-radius:20px;
  background:#fff;
}

@keyframes imageFloat{
  0%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
  100%{transform:translateY(0)}
}

/* ENTRY ANIMATION */
.physio-cta-text{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}
.physio-cta-text.show{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){
  .physio-cta-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }
  .physio-cta-actions{
    justify-content:center;
    flex-wrap:wrap;
  }
}

















/* Gallary-css */

/* ===== BASE ===== */
.narayana-gallery{
  padding:120px 20px;
  background:
    radial-gradient(circle at top left, rgba(137,38,31,.10), transparent 55%),
    radial-gradient(circle at bottom right, rgba(50,88,51,.10), transparent 60%),
    #f7f9fb;
}

/* ===== TITLE ===== */
.gallery-head{
  text-align:center;
  margin-bottom:80px;
}

.gallery-title.single{
  font-size:52px;
  font-weight:800;
  color:#89261f;
}

.gallery-title.single span{
  display:inline-block;
  margin:0 8px;
  opacity:0;
  transform:translateY(50px) scale(.9);
}

.gallery-title.single .highlight{
  background:linear-gradient(135deg,#89261f,#be2e21);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ACTIVE TITLE */
.animate-text.active .gallery-title.single span{
  opacity:1;
  transform:translateY(0) scale(1);
  transition:
    transform .8s cubic-bezier(.25,.8,.25,1),
    opacity .8s ease;
}

/* ===== GRID ===== */
.gallery-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:260px;
  gap:26px;
}

/* ===== CARD ===== */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  box-shadow:0 35px 70px rgba(0,0,0,.15);
  cursor:pointer;
  opacity:0;
  transform:translateY(40px) scale(.95);
  transition:all .9s ease;
}

.gallery-card.show{
  opacity:1;
  transform:translateY(0) scale(1);
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s ease;
}

.gallery-info{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:26px;
  color:#fff;
  font-size:16px;
  font-weight:600;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.65));
  opacity:0;
  transform:translateY(20px);
  transition:.7s ease;
}

.gallery-card:hover img{
  transform:scale(1.15);
}

.gallery-card:hover .gallery-info{
  opacity:1;
  transform:translateY(0);
}

/* SIZES */
.gallery-card.big{grid-column:span 2;grid-row:span 2}
.gallery-card.wide{grid-column:span 2}

/* RESPONSIVE */
@media(max-width:1000px){
  .gallery-wrap{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:230px;
  }
  .gallery-card.big,
  .gallery-card.wide{
    grid-column:span 1;
    grid-row:span 1;
  }
}

@media(max-width:600px){
  .gallery-title.single{font-size:40px}
  .gallery-wrap{grid-template-columns:1fr}
}











/* Success-css  */


/* ===== BASE ===== */
.narayana-success{
  padding:120px 20px;
  background:
    linear-gradient(180deg,
      rgba(137,38,31,0.08),
      rgba(50,88,51,0.10)
    ),
    #f7f9fb;
}

/* HEADER */
.success-header{
  max-width:760px;
  margin:0 auto 80px;
  text-align:center;
}

.success-tag{
  font-size:12px;
  letter-spacing:3px;
  color:#325833;
  font-weight:700;
}

.success-title{
  font-size:48px;
  line-height:1.15;
  color:#89261f;
  margin:18px 0 22px;
}

.success-title span{
  display:inline-block;
  margin:0 6px;
  opacity:0;
  transform:translateY(40px);
}

.success-title .highlight{
  background:linear-gradient(135deg,#89261f,#be2e21);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.success-desc{
  font-size:17px;
  color:#444;
  opacity:0;
  transform:translateY(30px);
}

/* ACTIVE TEXT */
.animate-success-text.active .success-title span,
.animate-success-text.active .success-desc{
  opacity:1;
  transform:translateY(0);
  transition:.8s ease;
}

/* GRID */
.success-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.success-card{
  background:#fff;
  border-radius:26px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
  overflow:hidden;
  transform:translateY(40px);
  opacity:0;
  transition:.9s ease;
}

.success-card.show{
  transform:translateY(0);
  opacity:1;
}

/* IMAGE */
.story-img{
  overflow:hidden;
}

.story-img img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:transform 1.2s ease;
}

.success-card:hover img{
  transform:scale(1.12);
}

/* CONTENT */
.story-content{
  padding:24px;
}

.story-content h4{
  font-size:20px;
  color:#89261f;
  margin-bottom:10px;
}

.story-content p{
  font-size:14.5px;
  color:#555;
  line-height:1.6;
  margin-bottom:12px;
}

.story-result{
  font-size:14px;
  font-weight:600;
  color:#325833;
}

/* RESPONSIVE */
@media(max-width:900px){
  .success-grid{
    grid-template-columns:1fr;
  }
  .success-title{
    font-size:38px;
  }
}





/* review-css */

/* ===============================
   NARAYANA TESTIMONIALS – FINAL
   =============================== */

.narayana-testimonials{
  padding:100px 20px;
  background:linear-gradient(
    135deg,
    #f6f8f6 65%,
    #e3ebe6 80%,
    #325833 100%
  );
  font-family:"Segoe UI", sans-serif;
  overflow:hidden;
}

/* ================= CONTAINER ================= */
.nt-container{
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */
.nt-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  margin-bottom:70px;
}

/* small tag animation */
.nt-tag{
  font-size:12px;
  letter-spacing:2px;
  color:#be2e21;
  font-weight:600;
  opacity:0;
  animation:fadeUp .9s ease forwards;
}

/* main heading animation */
.nt-header h2{
  font-size:38px;
  margin:10px 0;
  color:#89261f;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:.15s;
}

/* paragraph animation */
.nt-header p{
  max-width:520px;
  color:#555;
  line-height:1.6;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:.3s;
}

/* ================= GOOGLE BADGE ================= */
.nt-google{
  display:flex;
  align-items:center;
  gap:12px;
  background:#ffffff;
  padding:14px 18px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:.45s;
}

.nt-google img{
  width:32px;
}

.nt-google strong{
  font-size:14px;
  color:#222;
}

.nt-google span{
  display:block;
  font-size:12px;
  color:#777;
}

/* ================= SLIDER ================= */
.nt-viewport{
  max-width:1100px;
  margin:0 auto;
  overflow:hidden;
  padding:10px 0;
}

.nt-track{
  display:flex;
  gap:28px;
  align-items:stretch;
  transition:transform .6s ease;
}

/* ================= CARD ================= */
.nt-card{
  width:340px;
  flex-shrink:0;
  background:#ffffff;
  border-radius:18px;
  padding:28px 26px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  min-height:220px;

  /* entry animation */
  opacity:0;
  transform:translateY(40px);
  animation:cardEnter .9s ease forwards;
}

/* stagger cards */
.nt-card:nth-child(1){animation-delay:.2s;}
.nt-card:nth-child(2){animation-delay:.35s;}
.nt-card:nth-child(3){animation-delay:.5s;}

/* hover lift */
.nt-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 75px rgba(0,0,0,.18);
}

/* stars animation */
.stars{
  color:#fbbc04;
  font-size:14px;
  margin-bottom:12px;
  opacity:0;
  animation:fadeUp .6s ease forwards;
  animation-delay:.6s;
}

/* review text animation */
.nt-card p{
  font-size:14.5px;
  line-height:1.6;
  color:#333;
  opacity:0;
  animation:fadeUp .7s ease forwards;
  animation-delay:.7s;
}

/* ================= USER ================= */
.nt-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  opacity:0;
  animation:fadeUp .7s ease forwards;
  animation-delay:.85s;
}

.avatar{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#325833;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
}

.nt-user strong{
  display:block;
  font-size:14px;
  color:#222;
}

.nt-user span{
  font-size:12px;
  color:#777;
}

/* ================= READ MORE GOOGLE ================= */
.nt-link{
  display:inline-block;
  margin:55px auto 0;
  padding:14px 30px;
  border:2px solid #89261f;
  border-radius:32px;
  color:#89261f;
  font-weight:600;
  text-decoration:none;
  opacity:0;
  animation:fadeUp .9s ease forwards;
  animation-delay:1s;
  transition:all .35s ease;
}

.nt-link:hover{
  background:#89261f;
  color:#ffffff;
  box-shadow:0 14px 35px rgba(137,38,31,.4);
  transform:translateY(-3px);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes cardEnter{
  from{
    opacity:0;
    transform:translateY(40px) scale(.95);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1100px){
  .nt-viewport{
    max-width:720px;
  }
}

@media(max-width:768px){
  .nt-header{
    flex-direction:column;
    gap:25px;
  }

  .nt-header h2{
    font-size:30px;
  }

  .nt-viewport{
    max-width:360px;
  }
}




















/* ===============================
   CONTACT FORM – RESPONSIVE FIX
   =============================== */

.narayana-contact-ref{
  padding:80px 16px;
}

/* CARD */
.nc-card{
  display:grid;
  grid-template-columns:1fr 1.4fr;
}

/* ---------- TABLET ---------- */
@media(max-width:992px){
  .nc-card{
    grid-template-columns:1fr;
  }

  .nc-left{
    padding:40px;
    text-align:center;
  }

  .nc-left h2{
    font-size:32px;
  }

  .nc-info{
    margin-top:20px;
  }

  .nc-right{
    padding:40px;
  }
}

/* ---------- MOBILE ---------- */
@media(max-width:600px){
  .nc-left{
    padding:30px 22px;
  }

  .nc-left h2{
    font-size:26px;
  }

  .nc-left p{
    font-size:14px;
  }

  .nc-right{
    padding:30px 22px;
  }

  .nc-grid{
    grid-template-columns:1fr;
  }

  input, select, textarea{
    font-size:14px;
    padding:13px 14px;
  }

  .nc-btn{
    font-size:14px;
    padding:15px;
  }
}

/* EXTRA SAFETY */
input,select,textarea,button{
  width:100%;
  box-sizing:border-box;
}

/* ===============================
   MAP SECTION
   =============================== */

.narayana-map-section{
  padding:90px 20px 110px;
  background:linear-gradient(
    135deg,
    #f6f8f6 60%,
    #e1e8e3 100%
  );
}

.map-container{
  max-width:1200px;
  margin:auto;
}

.map-header{
  text-align:center;
  margin-bottom:40px;
}

.map-header span{
  font-size:12px;
  letter-spacing:2px;
  color:#be2e21;
  font-weight:600;
}

.map-header h2{
  font-size:34px;
  margin:10px 0;
  color:#325833;
}

.map-header p{
  max-width:600px;
  margin:auto;
  color:#555;
  line-height:1.6;
}

.map-box{
  max-width:1000px;
  margin:40px auto 0;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
  border-top:6px solid #89261f;
}

.map-box iframe{
  width:100%;
  height:420px;
  border:0;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media(max-width:900px){
  .nc-card{
    grid-template-columns:1fr;
  }
  .nc-left,
  .nc-right{
    padding:40px;
  }
}

@media(max-width:768px){
  .map-box iframe{
    height:320px;
  }
}




















/* contact-page-css */


/* ========== GLOBAL ANIMATION ========== */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all .9s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* ========== HERO ========== */
.contact-hero{
  padding:130px 20px 100px;
  text-align:center;
  color:#fff;
  background:linear-gradient(
    120deg,
    #89261f,
    #be2e21,
    #325833
  );
  background-size:200% 200%;
  animation:gradientMove 8s ease infinite;
}
.contact-hero h1{
  font-size:42px;
}
.contact-hero p{
  max-width:650px;
  margin:14px auto 0;
  opacity:.95;
}

/* ========== INFO STRIP ========== */
.contact-info-strip{
  padding:60px 20px;
  background:#fff;
}
.info-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.info-box{
  background:#f6f8f6;
  padding:26px;
  border-radius:18px;
  text-align:center;
  border: 1px solid #89261f;
  transition:.4s;
}
.info-box:hover{
  transform:translateY(-8px);
}
.info-box strong{
  display:block;
  margin-top:10px;
  color:#325833;
}

/* ========== FORM SECTION ========== */
.narayana-contact-ref{
  padding:110px 20px;
  background:linear-gradient(135deg,#f6f8f6,#e1e8e3);
}
.nc-card{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.4fr;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 40px 120px rgba(0,0,0,.25);
}
.nc-left{
  padding:40px;
  color:#fff;
  background:linear-gradient(
    135deg,
    #89261f,
    #be2e21,
    #325833
  );
  background-size:200% 200%;
  animation:gradientMove 10s ease infinite;
}
.nc-left h2{
  font-size:36px;
}
.nc-left p{
  margin:16px 0;
}
.nc-info li{
  margin-bottom:12px;
  list-style: none;
}

/* FORM */
.nc-right{
  padding:45px;
  background:#fff;
  display: grid;
}
.nc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.field{
  display:flex;
  flex-direction:column;
}
.field.full{
  grid-column:1 / -1;
}
input, select, textarea{
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #ddd;
}
textarea{min-height:110px;}

.nc-btn{
  margin-top:30px;
  width:100%;
  padding:16px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#89261f,#be2e21);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(137,38,31,.45);
  transition:.3s;
}
.nc-btn:hover{
  transform:translateY(-4px);
}

/* ========== MAP ========== */
.narayana-map-section{
  padding:90px 20px;
  background:#f6f8f6;
}
.map-box{
  max-width:1000px;
  margin:auto;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}
.map-box iframe{
  width:100%;
  height:420px;
  border:0;
}

/* ========== ANIMATIONS ========== */
@keyframes gradientMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* ========== RESPONSIVE ========== */
@media(max-width:900px){
  .info-grid{grid-template-columns:1fr 1fr;}
  .nc-card{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .info-grid{grid-template-columns:1fr;}
  .contact-hero h1{font-size:32px;}
}















/* ===============================
   NARAYANA CTA SECTION
   =============================== */

/* ===============================
   IMAGE CTA SECTION
   =============================== */

.narayana-cta-img{
  padding:120px 20px;
  background:linear-gradient(
    120deg,
    #89261f,
    #be2e21,
    #325833
  );
  background-size:200% 200%;
  animation:ctaGradient 8s ease infinite;
  overflow:hidden;
  color:#fff;
}

.cta-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:40px;
  align-items:center;
}

/* LEFT */
.cta-content{
  padding-right:30px;
}

.cta-tag{
  font-size:12px;
  letter-spacing:2px;
  opacity:.9;
}

.cta-content h2{
  font-size:42px;
  margin:14px 0;
  line-height:1.2;
}

.cta-content p{
  max-width:520px;
  line-height:1.7;
  opacity:.95;
  margin-bottom:30px;
}

/* BUTTONS */
.cta-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.cta-btn{
  padding:16px 34px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  font-size:15px;
  transition:.35s ease;
}

/* primary */
.cta-btn.primary{
  background:#ffffff;
  color:#89261f;
  box-shadow:0 18px 45px rgba(0,0,0,.3);
}
.cta-btn.primary:hover{
  transform:translateY(-4px);
}

/* secondary */
.cta-btn.secondary{
  border:2px solid #ffffff;
  color:#ffffff;
}
.cta-btn.secondary:hover{
  background:#ffffff;
  color:#89261f;
}

/* RIGHT IMAGE */
.cta-image{
  position:relative;
}

.cta-image img{
  width:100%;
  border-radius:26px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  animation:imageFloat 4s ease-in-out infinite;
}

/* animations */
@keyframes imageFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

@keyframes ctaGradient{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* RESPONSIVE */
@media(max-width:900px){
  .cta-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }
  .cta-content{
    padding-right:0;
  }
  .cta-actions{
    justify-content:center;
  }
  .cta-content h2{
    font-size:32px;
  }
}









/* review-page-css */
.narayana-reviews{
  background:radial-gradient(circle at top,#ffffff 60%,#f4efef 100%);
  padding:90px 20px;
  font-family:'Poppins',sans-serif;
}

/* HERO */
.reviews-hero{
  max-width:900px;
  margin:auto;
  text-align:center;
}
.reviews-hero h1{
  font-size:44px;
  font-weight:700;
  color:#89261f;
}
.reviews-hero p{
  margin-top:12px;
  color:#444;
}

.rating-badge{
  display:inline-block;
  margin-top:22px;
  padding:12px 22px;
  background:linear-gradient(135deg,#89261f,#be2e21);
  color:#fff;
  border-radius:40px;
  font-size:14px;
  box-shadow:0 10px 30px rgba(137,38,31,.35);
}

/* GRID */
.reviews-container{
  max-width:1200px;
  margin:80px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

/* CARD */
.review-card{
  background:linear-gradient(180deg,#ffffff,#faf7f7);
  border-radius:20px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,.10);
  position:relative;
  transition:.5s ease;
}
.review-card::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#89261f,#be2e21);
}
.review-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* HEAD */
.review-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.review-head h4{
  font-size:18px;
  color:#5d1e46;
}

/* JOURNEY */
.journey p{
  font-size:14px;
  margin:10px 0;
  line-height:1.6;
}
.problem{ color:#89261f; }
.treatment{ color:#5d1e46; }

.recovery{
  color:#325833;
  font-weight:600;
  background:#eef5f0;
  padding:8px 12px;
  border-radius:10px;
}

/* VERIFIED */
.verified{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:13px;
  color:#666;
}
.g-icon{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#4285F4;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:12px;
}

/* CTA */
.reviews-cta{
  margin-top:110px;
  text-align:center;
  padding:80px 20px;
  background:linear-gradient(135deg,#325833,#89261f);
  color:#fff;
  border-radius:30px;
}
.reviews-cta h2{
  font-size:34px;
}
.reviews-cta p{
  margin:14px 0 34px;
}

.btn{
  padding:14px 34px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.whatsapp{ background:#25D366; }
.call{ background:#be2e21; margin-left:14px; }

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(60px) scale(.96);
}
.reveal.show{
  opacity:1;
  transform:none;
  transition:1.2s cubic-bezier(.19,1,.22,1);
}

/* RESPONSIVE */
@media(max-width:768px){
  .reviews-hero h1{font-size:32px;}
  .reviews-cta h2{font-size:26px;}
  .cta-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .call{margin-left:0;}
}














/* about-page-css */



.narayana-about{
  background:radial-gradient(circle at top,#ffffff 60%,#f4efef 100%);
  padding:30px 20px;
  font-family:'Poppins',sans-serif;
}

/* HERO */
.about-hero{
  max-width:900px;
  margin:auto;
  text-align:center;
}
.about-hero h1{
  font-size:44px;
  font-weight:700;
  color:#89261f;
}
.about-hero p{
  margin-top:14px;
  color:#444;
}

/* MAIN GRID */
.about-container{
  max-width:1200px;
  margin:90px auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
}

/* CONTENT */
.about-content h2{
  font-size:32px;
  color:#5d1e46;
  margin:14px 0 18px;
}
.about-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:1px;
  color:#be2e21;
  font-weight:600;
}
.about-content p{
  color:#444;
  line-height:1.7;
  margin-bottom:14px;
}

.about-points{
  margin-top:20px;
}
.about-points li{
  margin-bottom:10px;
  font-size:14px;
  color:#333;
}

/* CARDS */
.about-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.about-card{
  background:linear-gradient(180deg,#fff,#faf7f7);
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  transition:.4s ease;
}
.about-card:hover{
  transform:translateY(-10px);
  box-shadow:0 28px 60px rgba(0,0,0,.15);
}
.about-card h3{
  font-size:34px;
  color:#89261f;
}
.about-card p{
  font-size:14px;
  margin-top:6px;
}

/* MISSION */
.about-mission{
  max-width:900px;
  margin:120px auto 0;
  text-align:center;
  padding:70px 30px;
  background:linear-gradient(135deg,#325833,#89261f);
  color:#fff;
  border-radius:30px;
}
.about-mission h2{
  font-size:34px;
  margin-bottom:16px;
}
.about-mission p{
  font-size:15px;
  line-height:1.7;
}

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(60px) scale(.96);
}
.reveal.show{
  opacity:1;
  transform:none;
  transition:1.2s cubic-bezier(.19,1,.22,1);
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-container{
    grid-template-columns:1fr;
  }
}
@media(max-width:600px){
  .about-hero h1{font-size:32px;}
  .about-content h2{font-size:26px;}
  .about-mission h2{font-size:26px;}
}














.about-hero-strip{
  width:100%;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:60px 20px;

  background:linear-gradient(
    90deg,
    #b02a1e 0%,
    #8f2c22 40%,
    #5f6b2f 100%
  );
}

/* CONTENT */
.about-hero-content{
  max-width:900px;
  color:#fff;
}

.about-hero-content h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:12px;
}

.about-hero-content p{
  font-size:16px;
  opacity:.95;
  line-height:1.6;
}

/* ANIMATION (same as other pages) */
.reveal{
  opacity:0;
  transform:translateY(40px);
}
.reveal.show{
  opacity:1;
  transform:none;
  transition:1s ease;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-hero-strip{
    min-height:260px;
  }
  .about-hero-content h1{
    font-size:30px;
    margin-top: 40px;
  }
  .about-hero-content p{
    font-size:14px;
  }
  
}




/* counter-css*/


.narayana-counter-section{
  padding:90px 20px;
  background:linear-gradient(
    135deg,
    #fdf7f7 0%,
    #f4ecec 100%
  );
}

.counter-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* BOX */
.counter-box{
  background:#fff;
  border-radius:20px;
  padding:40px 20px;
  text-align:center;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  position:relative;
  transition:.4s ease;
}

/* TOP ACCENT */
.counter-box::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#89261f,#be2e21);
}

.counter-box:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* NUMBER */
.counter-box h2{
  font-size:42px;
  color:#89261f;
  font-weight:700;
  margin-bottom:10px;
}

/* TEXT */
.counter-box p{
  font-size:15px;
  color:#555;
  font-weight:500;
}

/* ANIMATION (same system) */
.reveal{
  opacity:0;
  transform:translateY(50px);
}
.reveal.show{
  opacity:1;
  transform:none;
  transition:1s ease;
}

/* RESPONSIVE */
@media(max-width:992px){
  .counter-container{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .counter-container{
    grid-template-columns:1fr;
  }
  .counter-box h2{
    font-size:34px;
  }
}











/* services-start */


:root {
  --maroon: #89261f;
  --red: #be2e21;
  --purple: #5d1e46;
  --light-bg: #f7f9fb;
}

.ortho-service-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: auto;
}

.ortho-header {
  text-align: center;
  margin-bottom: 70px;
}

.ortho-header .tag {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--maroon), var(--red));
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.ortho-header h2 {
  font-size: 42px;
  color: var(--maroon);
  margin-bottom: 15px;
}

.ortho-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

.ortho-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.ortho-text h3 {
  font-size: 32px;
  color: var(--purple);
  margin-bottom: 20px;
}

.ortho-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ortho-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.ortho-points li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.ortho-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--maroon), var(--red));
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-outline {
  padding: 14px 30px;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  text-decoration: none;
  border-radius: 30px;
  transition: 0.4s;
}

.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
}

.ortho-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Animations */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 900px) {
  .ortho-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ortho-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}





/* sports-injuri */



.sports-service-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.sports-header {
  text-align: center;
  margin-bottom: 70px;
}

.sports-header .tag {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--purple), var(--red));
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.sports-header h2 {
  font-size: 42px;
  color: var(--maroon);
  margin-bottom: 15px;
}

.sports-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

.sports-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.sports-text h3 {
  font-size: 32px;
  color: var(--purple);
  margin-bottom: 20px;
}

.sports-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.sports-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.sports-points li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.sports-buttons {
  display: flex;
  gap: 20px;
}

.sports-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Reuse Buttons */
.btn-primary {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--maroon), var(--red));
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-outline {
  padding: 14px 30px;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  text-decoration: none;
  border-radius: 30px;
  transition: 0.4s;
}

.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
}

/* Animation */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 900px) {
  .sports-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sports-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}







/* floating button */

.fab-wrapper {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.fab-btn i {
  font-size: 20px;
}

/* HOVER MAGIC */
.fab-btn:hover {
  transform: translateX(-8px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* CALL */
.call {
  background: linear-gradient(135deg, #89261f, #be2e21);
}

/* WHATSAPP with PULSE */
.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: pulse 2s infinite;
}

/* LOCATION */
.location {
  background: linear-gradient(135deg, #325833, #5d1e46);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Optimization */
@media(max-width: 600px) {
  .fab-btn span {
    display: none;
  }
  .fab-btn {
    padding: 16px;
    border-radius: 50%;
    justify-content: center;
  }
}







/* video gallry  */


.video-gallery {
  background: #f7f9fb;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #051284;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* SOCIAL BUTTONS */
.social-video-btns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-4px);
}

/* Platform Colors */
.youtube {
  background: linear-gradient(135deg, #ff0000, #c70000);
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.facebook {
  background: linear-gradient(135deg, #1877f2, #0f4cc4);
}

/* Responsive */
@media(max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 200px;
  }
}
