/* =========================
   GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Poppins", sans-serif;
}

body{
  color:#1e2a38;
  background: linear-gradient(135deg, #dff6ff 0%, #ffffff 40%, #eaf4ff 100%);
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0.5%;
  
  /* Professional medical gradient */
  background: linear-gradient(135deg, #0b4db3 0%, #0ea5e9 60%, #0b63c7 100%);

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  

  align-items: center;
 
}

/* LOGO SECTION */
.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* REMOVE ANY VISUAL BORDER FROM LOGO IMAGE */
.logo img{
    width:58px;
    height:58px;
    object-fit:contain;
    background:transparent;
    border:none;
    outline:none;
    filter:drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

/* NAVIGATION */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
}


nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ffffff;
}

/* BRAND NAME */
.rdhe{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#ffffff;
    line-height:1.1;
    letter-spacing:.4px;
}

.company-tagline{
    margin-top:4px;
    color:rgba(255,255,255,.88);
    font-size:11px;
    font-weight:500;
    letter-spacing:1.4px;
    text-transform:uppercase;
    font-style:italic;
}

/* GST TEXT (clean alignment + softer look) */
.gst {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-left: 20px;
}

/* =========================
   HERO SECTION
========================= */
.hero{
    position: relative;
    min-height: 25vh;
    background:
    linear-gradient(rgba(8,18,35,0.45), rgba(8,18,35,0.30)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 8%;
}

.hero-content{
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1{
    color: #ffffff;
    font-size: 3rem;
}

.hero-content p{
    color: rgba(255,255,255,0.92);
    margin-top: 16px;
    font-size: 1.1rem;
}

.hero-content .btn{
    color: white;
    background: linear-gradient(135deg,#00b4ff,#0077ff);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 24px;
    box-shadow: 0 10px 30px rgba(0,119,255,.35);
}

/* =========================
   BUTTON
========================= */
button{
    padding:16px;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#0b5ed7,#118ab2);
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

button:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(11,94,215,.25);
}

.btn {
  margin: 10px auto 15px;
  padding: 8px 14px;
  background: #0077b6;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  width: fit-content;
}

.btn:hover {
  background: #00b4d8;
}

/* =========================
   SECTIONS (FIXED SPACING)
========================= */
.section {
  padding: 55px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;   /* controls spacing inside section */
}

/* =========================
   TITLE
========================= */
.title {
  font-size: 30px;
  margin-bottom: 18px;
  color: #0f4c75;
}

/* =========================
   SLIDER
========================= */
.slider {
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 18s linear infinite;
}

.track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.track img:hover {
  transform: scale(1.05);
}

/* =========================
   CARDS
========================= */
.cards {

  display:grid;

  grid-template-columns:repeat(3, 1fr);

  gap:25px;

  padding:30px;

}
@media(max-width:1000px){

.cards{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.cards{

    grid-template-columns:1fr;

}

}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;

  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 180px;          /* fixed height = uniform look */
  object-fit: contain;    /* keeps full medical equipment visible */
  background: #f8fbff;
  padding: 10px;
}

.card h3 {
  margin: 10px 8px 5px;
  font-size: 15px;
  color: #0d2a3a;
}

.card p {
  font-size: 13px;
  color: #666;
  padding: 0 10px 12px;
}

/* =========================
   TRUST SECTION (FIXED)
========================= */
.trust-section{
    padding:45px 8%;
    background:#fff;
}

.trust-card{
    display:flex;
    align-items:center;
    gap:40px;
    background:#f7fbff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.trust-img{
    width:220px;
    border-radius:10px;
    border:3px solid #0b7dda;
    cursor:pointer;
    transition:0.3s;
}

.trust-img:hover{
    transform:scale(1.03);
    box-shadow:0 12px 25px rgba(0,0,0,0.18);
}
/* popup overlay */
.image-popup{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* large image */
.popup-image{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
    background:white;
    padding:10px;
}

/* close button */
.close-popup{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

/* =========================
   ABOUT SECTION (FIXED)
========================= */
/* =========================
   ABOUT PAGE - RADHE ENTERPRISES
========================= */

.about-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 59, 110, 0.92), rgba(13, 94, 168, 0.88)),
              url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?auto=format&fit=crop&w=1400&q=80') center/cover;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 33, 61, 0.65), rgba(13, 94, 168, 0.45));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
}

.about-hero-content .section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.about-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 700;
}

.about-hero-content h1 span {
  color: #9dd2ff;
}

.about-hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
}

.about-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-main-card {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.about-text {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 14px 40px rgba(8, 59, 110, 0.12);
  border: 1px solid rgba(13, 94, 168, 0.08);
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #083b6e;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #425466;
  margin-bottom: 18px;
}

.about-side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(8, 59, 110, 0.10);
  border: 1px solid rgba(13, 94, 168, 0.08);
}

.vision-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: #083b6e;
  margin-bottom: 12px;
}

.vision-card p {
  color: #506272;
  line-height: 1.8;
  font-size: 0.98rem;
}

.vision-card ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.vision-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #425466;
  line-height: 1.7;
}

.vision-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #0d5ea8;
  font-weight: bold;
}

.why-choose-section {
  margin-top: 55px;
}

.why-choose-section h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: #083b6e;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 35px rgba(8, 59, 110, 0.10);
  border: 1px solid rgba(13, 94, 168, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 59, 110, 0.15);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d5ea8, #1f8fff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 10px 25px rgba(13, 94, 168, 0.2);
}

.why-card h3 {
  color: #083b6e;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.why-card p {
  color: #506272;
  line-height: 1.75;
  font-size: 0.96rem;
}

/* Active nav link */
nav a.active {
  color: #0d5ea8;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-main-card {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 300px;
    padding: 60px 20px;
  }

  .about-hero-content h1 {
    font-size: 2.3rem;
  }

  .about-text {
    padding: 28px 22px;
  }

  .about-text h2,
  .why-choose-section h2 {
    font-size: 2rem;
  }

  .vision-card {
    padding: 24px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .logo{
    gap:10px;
}

.logo img{
    width:45px;
    height:45px;
}

.rdhe{
    font-size:21px;
}

.company-tagline{
    margin-top:4px;
    color:rgba(255,255,255,.88);
    font-size:11px;
    font-weight:500;
    letter-spacing:1.4px;
    text-transform:uppercase;
    font-style:italic;

    overflow:hidden;
    white-space:nowrap;

    animation:fadeSlideIn 1.2s ease forwards;
}

}

/* Professional Fade + Slide */
@keyframes fadeSlideIn{

    from{
        opacity:0;
        transform:translateY(8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Premium Shine Effect */
.company-tagline::after{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:45%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );

    animation:taglineShine 1s ease-in-out infinite;

}

.company-tagline{
font-size: 16px;
position:relative;
display:inline-block;
overflow:hidden;
    font-weight: 900;

}

.company-tagline::after{

content:"";

position:absolute;

top:0;
left:-100%;

width:60%;
height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(14,165,233,.8),
transparent
);

animation:sweep 3.5s infinite;

}

@keyframes sweep{

0%{
left:-100%;
}

100%{
left:120%;
}

}

@media(max-width:768px){

}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 1.9rem;
  }

  .about-hero-content p,
  .about-text p,
  .vision-card p,
  .why-card p {
    font-size: 0.95rem;
  }
}

/* =========================
   CONTACT (FIXED)
========================= */
.contact-hero{
    padding:50px 20px 30px;   /* reduced top & bottom spacing */
    text-align:center;
}

/* REMOVE DEFAULT H1 MARGIN GAP */
.contact-hero h1{
    margin-bottom:8px;
    font-size:34px;
}

/* CONTROL PARAGRAPH GAP */
.contact-hero p{
    margin:0 auto;
    max-width:700px;
    line-height:1.6;
}

.contact-section{
    padding:30px 20px 60px;   /* reduced top gap */
    display:flex;
    justify-content:center;
    align-items:center;
}

/* CARD SPACING */
.contact-card{
    opacity:0;
    transform: translateY(40px) scale(0.98);
    animation: formFadeIn 0.9s ease-out forwards;
}

/* ANIMATION KEYFRAMES */
@keyframes formFadeIn{
    0%{
        opacity:0;
        transform: translateY(40px) scale(0.98);
    }
    100%{
        opacity:1;
        transform: translateY(0) scale(1);
    }
}

/* TITLE INSIDE CARD */
.contact-card h2{
    margin-bottom:8px;
}

.contact-card p{
    margin-bottom:15px;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:20px;
}

.input-group{
    position:relative;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:16px 14px;
    border:2px solid #dfeaf6;
    border-radius:12px;
    font-size:16px;
    outline:none;
    background:white;
}

.input-group label{
    position:absolute;
    top:50%;
    left:14px;
    transform:translateY(-50%);
    color:#888;
    font-size:14px;
    transition:0.3s;
    pointer-events:none;
    background:white;
    padding:0 5px;
}

.input-group textarea + label{
    top:20px;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label{
    top:-8px;
    font-size:12px;
    color:#0b5ed7;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #0b1f2a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

/* =========================
   ANIMATION
========================= */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .track img {
    width: 220px;
    height: 160px;
  }

  .trust-card{
    flex-direction:column;
    text-align:center;
  }

  .trust-img{
    width:180px;
  }
}

.popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:none;
    justify-content:center;
    align-items:center;
}

.popup-box{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    width:300px;
}

.icon-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.icon-card{
    background:white;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.icon-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.icon-circle{
    width:60px;
    height:60px;
    margin:0 auto 15px;
    border-radius:50%;
    background:linear-gradient(135deg,#0b5ed7,#118ab2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:white;
}

.icon-card h3{
    color:#0b5ed7;
    margin-bottom:10px;
}

.icon-card p{
    color:#555;
    line-height:1.6;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.catalog-float{
  position: fixed;
  left: 20px;
  bottom: 120px;

  background: #ff9800;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;

  font-weight: bold;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;

  z-index: 99999;   /* VERY IMPORTANT FIX */
}

.catalog-float:hover {
  background: #e65100;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


.logout-btn {
  background: red;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  position: fixed;
  top: 15px;
  right: 20px;
}


/* LOGIN BUTTON (more premium) */
.login-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: white;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.login-btn:hover {
  background: white;
  color: #0b4db3;
  transform: translateY(-2px);
}
/* =========================
   CORE OFFERINGS SECTION
========================= */

.core-offerings {
  margin-top: 60px;
  text-align: center;
}

.core-offerings h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: #083b6e;
  margin-bottom: 30px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offering-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 35px rgba(8, 59, 110, 0.10);
  border: 1px solid rgba(13, 94, 168, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 59, 110, 0.15);
}

.offering-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d5ea8, #1f8fff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(13, 94, 168, 0.2);
}

.offering-card h3 {
  color: #083b6e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.offering-card p {
  color: #506272;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .core-offerings h2 {
    font-size: 2rem;
  }
}
/* =========================
   FEEDBACK PAGE STYLES
========================= */

.feedback-section {
  padding: 90px 20px 60px;
}

.feedback-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  padding: 40px;
  width: 100%;
  max-width: 900px;

  border-top: 5px solid #0b4db3; /* adds identity + visibility */
}

.feedback-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #083b6e;
  text-align: center;
  margin-bottom: 8px;
}
.feedback-card .sub-text {
  text-align: center;
  color: #64748b;
  margin-bottom: 25px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

/* INPUTS */
input,
textarea {
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #0b5ed7;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.15);
}

/* STAR RATING */
.star-rating {
  display: flex;
  gap: 10px;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.star {
  color: #d1d5db;
  transition: 0.2s ease;
}

.star:hover {
  transform: scale(1.15);
}

.star.active {
  color: #fbbf24;
}

/* BUTTON */
.submit-btn {
  margin-top: 25px;
  width: 100%;
  background: linear-gradient(135deg, #0b4db3, #0ea5e9);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.25);
}

/* MESSAGE */
.form-message {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

.success {
  color: #15803d;
}

.error {
  color: #dc2626;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    padding: 22px;
  }
}
main.feedback-section {
  padding-top: 90px; /* FIX: pushes content below sticky header */
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials {
  padding: 50px 20px;
  background: #f4f8ff;
  text-align: center;
  overflow: hidden;
}

.testimonials h2 {
  color: #0a3d91;
  margin-bottom: 30px;
}

.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollTestimonials 28s linear infinite;
  align-items: stretch;
}

.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  flex-shrink: 0;
}

.testimonial-card h4 {
  color: #0b5ed7;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.testimonial-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

/* Left to right scrolling */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Optional: pause on hover */
.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}
.stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 8px;
}

.stock-box{
position:relative;
}


.stock-popup{

display:none;

position:absolute;

top:90px;

left:0;

width:300px;

background:white;

border-radius:10px;

padding:15px;

box-shadow:0 5px 20px rgba(0,0,0,.25);

text-align:left;

z-index:1000;

font-size:14px;

}



.stock-box:hover .stock-popup{

display:block;

}


.stock-popup table{

width:100%;

min-width:auto;

border-collapse:collapse;

}


.stock-popup th{

background:#2563eb;

color:white;

padding:6px;

}


.stock-popup td{

padding:6px;

border-bottom:1px solid #ddd;

}


/* =================================
   Medical Tagline Effects
================================= */

.medical-tagline{

    display:flex;
    justify-content:center;
    align-items:center;

    padding:12px 25px;

    background:rgba(255,255,255,0.90);

    border-radius:30px;

    color:#075985;

    font-size:25px;

    font-weight:700;

    letter-spacing:1px;

    width:max-content;

    margin:25px auto;

    box-shadow:
    0 8px 25px rgba(7,89,133,.20);

    animation:
    slideDown 1.2s ease,
    floatTagline 4s ease-in-out infinite;

}




/* Premium Blue Text */

.tagline-text{

    position:relative;

    color:#075985;

    text-shadow:

    0 2px 8px rgba(3,105,161,.25);

    animation:textGlow 2s infinite alternate;

}


/* Shine Effect */



.tagline-text::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:45%;

    height:100%;


    background:

    linear-gradient(
    120deg,
    transparent,
    rgba(56,189,248,0.45),
    transparent
    );


    animation:shine 4s infinite;

}


/* Animations */


@keyframes heartbeat{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.35);
    }

}


@keyframes textGlow{

    from{
        opacity:.8;
    }

    to{
        opacity:1;
    }

}


@keyframes shine{

    0%{

        left:-100%;

    }

    50%{

        left:120%;

    }

    100%{

        left:120%;

    }

}


@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


@keyframes floatTagline{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}


/* Mobile */

@media(max-width:768px){

.medical-tagline{

    font-size:18px;

}

.heart{

    font-size:22px;

}

}
/* =========================
   PRODUCT DETAIL PAGE
========================= */

.product-detail-card{

    max-width:700px;

    margin:60px auto;

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

}


.product-detail-card img{

    width:350px;

    height:300px;

    object-fit:contain;

    background:#f8fbff;

    border-radius:15px;

    padding:20px;

}



.product-detail-card h2{

    color:#075985;

    margin:20px 0 10px;

    font-size:30px;

}



.product-detail-card p{

    color:#475569;

    line-height:1.7;

}



.product-detail-card ul{

    text-align:left;

    max-width:400px;

    margin:20px auto;

    color:#334155;

}



.product-detail-card li{

    margin-bottom:8px;

}



.product-detail-card .btn{

    display:inline-block;

    margin-top:20px;

}

/* PRODUCT PAGE GRID FIX */

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

padding:40px 6%;

}



.cards .card{

width:100%;

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,.12);

text-align:center;

}



.cards .card img{

width:100%;

height:220px;

object-fit:contain;

padding:15px;

background:#f8fbff;

}



.cards .card h3{

color:#075985;

margin:12px;

}



.cards .card p{

padding:0 15px;

color:#64748b;

}



@media(max-width:1000px){

.cards{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.cards{

grid-template-columns:1fr;

}

}


/* ==========================
   TEAM SECTION
========================== */

.team-section{

padding:70px 8%;
background:#f4f9fd;

}


.team-title{

text-align:center;
max-width:800px;
margin:auto;

}


.team-title h2{

font-size:38px;
color:#075985;
margin:15px 0;

}


.team-title p{

font-size:16px;
color:#555;

}



.team-container{

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:45px;

}



.team-card{

background:white;

width:280px;

padding:25px;

text-align:center;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,0.12);

transition:.35s;

}



.team-card:hover{

transform:translateY(-10px);

}



.team-card img{

width:150px;

height:150px;

border-radius:50%;

object-fit:cover;

border:5px solid #e0f2fe;

margin-bottom:20px;

}



.team-card h3{

color:#075985;

font-size:22px;

margin-bottom:8px;

}



.team-card h4{

color:#2563eb;

font-size:15px;

margin-bottom:15px;

}



.team-card p{

font-size:14px;

line-height:1.6;

color:#555;

}



.team-skills{

margin-top:15px;

padding:10px;

background:#eff6ff;

border-radius:10px;

font-size:13px;

color:#075985;

font-weight:600;

}



/* Mobile */

@media(max-width:768px){

.team-title h2{

font-size:28px;

}


.team-card{

width:100%;

}

}

.payment-section{

padding:50px;
text-align:center;

}


.payment-card{

background:white;

max-width:500px;

margin:25px auto;

padding:30px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,0.15);

}



.upi-image{

width:250px;

margin:20px;

}



.payment-card table{

width:100%;

text-align:left;

}



.payment-card td{

padding:12px;

border-bottom:1px solid #ddd;

}

#paymentForm input,
#paymentForm textarea{

width:100%;

padding:12px;

margin:10px 0;

border-radius:8px;

border:1px solid #ccc;

font-family:Poppins;

}


#paymentForm textarea{

height:100px;

resize:none;

}


#paymentMessage{

margin-top:15px;

font-weight:600;

color:green;

}

.tabs{

display:flex;
justify-content:center;
gap:15px;
margin-bottom:25px;

}


.tabs button{

background:#0b5ed7;

}


.tab-content{

display:none;

}


.tab-content.active{

display:block;

}


.status-pending{

background:#ff9800;
color:white;
padding:5px 10px;
border-radius:15px;

}


.status-success{

background:green;
color:white;
padding:5px 10px;
border-radius:15px;

}


.view-btn{

background:#28a745;

}


/* ===========================
   DASHBOARD
=========================== */


.dashboard{

padding:40px 5%;

}


.title{

text-align:center;

color:#075985;

font-size:32px;

margin-bottom:25px;

}



.tabs{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:30px;

}



.tabs button{

padding:14px 25px;

border-radius:30px;

font-size:15px;

}



.tab-content{

display:none;

}



.tab-content.active{

display:block;

}




.filters{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:25px;

}



.filters select{

padding:12px 18px;

border-radius:10px;

border:1px solid #ddd;

font-family:Poppins;

}





.table-container{

background:white;

border-radius:15px;

overflow:auto;

box-shadow:

0 10px 30px rgba(0,0,0,.12);

}



.table-container table{

width:100%;

border-collapse:collapse;

}



.table-container th{

background:#075985;

color:white;

padding:14px;

}



.table-container td{

padding:12px;

border-bottom:1px solid #eee;

}



.table-container tr:hover{

background:#eff6ff;

}





.pagination{

display:flex;

justify-content:center;

align-items:center;

gap:15px;

margin-top:25px;

}


.pagination span{

font-weight:600;

color:#075985;

}



@media(max-width:768px){


.tabs{

flex-direction:column;

}


.filters{

flex-direction:column;

}


.dashboard{

padding:20px;

}


}

/* =====================================
   CRM DASHBOARD
===================================== */


.dashboard{

padding:40px 6%;

}



.dashboard-title{

text-align:center;

font-size:32px;

color:#075985;

margin-bottom:30px;

}





.dashboard-tabs{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:30px;

}



.dashboard-tabs button{

padding:14px 25px;

border-radius:30px;

font-size:15px;

}





.dashboard-tab{

display:none;

}



.dashboard-tab.active{

display:block;

}





.filters{

display:flex;

justify-content:center;

margin-bottom:25px;

}



.filters select{

padding:12px 20px;

border-radius:10px;

border:1px solid #ddd;

font-family:Poppins;

}




.dashboard-table{

background:white;

border-radius:15px;

overflow:auto;

box-shadow:

0 10px 30px rgba(0,0,0,.12);

}



.dashboard-table table{

width:100%;

border-collapse:collapse;

}



.dashboard-table th{

background:#075985;

color:white;

padding:14px;

text-align:center;

}



.dashboard-table td{

padding:12px;

text-align:center;

border-bottom:1px solid #eee;

}



.dashboard-table tr:hover{

background:#eff6ff;

}





.pending{

background:#ff9800;

color:white;

padding:6px 12px;

border-radius:20px;

}



.success{

background:#16a34a;

color:white;

padding:6px 12px;

border-radius:20px;

}




.action-btn{

background:#075985;

color:white;

border:none;

padding:8px 14px;

border-radius:8px;

cursor:pointer;

}



.action-btn:hover{

background:#0ea5e9;

}





@media(max-width:768px){


.dashboard{

padding:25px 15px;

}



.dashboard-tabs{

flex-direction:column;

}



.dashboard-table table{

min-width:900px;

}


}

/* Trust Section */
.trust-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:30px;
}

.trust-card{
    width:520px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-6px);
}

.trust-img{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#fff;
    cursor:pointer;
    padding:15px;
}

.trust-content{
    padding:20px;
}

.trust-content h3{
    color:#0A74DA;
    margin-bottom:12px;
}

.trust-content p{
    line-height:1.6;
    margin-bottom:15px;
}

.trust-content ul{
    list-style:none;
    padding:0;
}

.trust-content li{
    margin-bottom:8px;
    font-size:15px;
}

/* Popup */
.image-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-image{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    background:#fff;
    padding:10px;
}

.close-popup{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

/* GST PDF Preview Card */

.pdf-preview{

    height:320px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:#f7f9fc;

    cursor:pointer;

    transition:.3s;

}

.pdf-preview:hover{

    background:#eef5ff;

}

.pdf-preview h3{

    color:#0A74DA;

    margin-top:15px;

}

.pdf-preview p{

    color:#666;

}

/* PDF Popup */

.pdf-popup{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.85);

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.pdf-container{

    width:85%;

    height:90%;

    background:white;

    border-radius:12px;

    overflow:hidden;

}

.pdf-container iframe{

    width:100%;

    height:100%;

}

.close-popup{

    position:absolute;

    top:15px;

    right:30px;

    font-size:45px;

    color:white;

    cursor:pointer;

}

/* ===============================
   PRODUCT PAGE HEADER
================================ */


.product-header{

text-align:center;
margin:50px auto 35px;

max-width:900px;

}


.product-header .title{

font-size:38px;

font-weight:700;

background:linear-gradient(
90deg,
#0066ff,
#00b4d8,
#0066ff
);

-webkit-background-clip:text;

color:transparent;

letter-spacing:1px;

animation:titleGlow 3s infinite;

}



.product-intro{

margin-top:15px;

font-size:22px;

font-weight:600;

line-height:1.6;

color:#1b4f72;

}



.product-intro span{

font-size:28px;

font-weight:700;

color:#0077cc;

display:inline-block;

animation:slideText 3s ease-in-out infinite;

}



.product-line{

width:180px;

height:4px;

background:linear-gradient(
90deg,
#00c6ff,
#0072ff
);

margin:20px auto;

border-radius:20px;

}



/* Animation */

@keyframes titleGlow{


0%,100%{

text-shadow:0 0 5px rgba(0,150,255,.3);

}


50%{

text-shadow:0 0 20px rgba(0,150,255,.8);

}


}



@keyframes slideText{


0%{

transform:translateY(10px);

opacity:.5;

}


50%{

transform:translateY(0);

opacity:1;

}


100%{

transform:translateY(10px);

opacity:.5;

}


}