* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}



/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

header.scrolled .nav-links a {
  color: #333;
}

header.scrolled .menu-toggle {
  color: #333;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.logo img {
  height: 150px;
  width: 150px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hamburger hidden by default (desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/banner.jpg') center/cover no-repeat;
   height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-content .btn {
  background: #ffcc00;
  color: black;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero-content .btn:hover {
  background: white;
  color: black;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;  
    position: absolute;
    top: 60%;
    right: 20px;
    background: #1A2A39;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    color: white;
    z-index: 3000;
  }

  .nav-links.active {
    display: flex; 
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block; /* show hamburger */
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }
}
/* Categories Section */
.categories {
  padding: 80px 20px;
  text-align: center;
  background: #B3D2EC;
  
}

.categories h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
}

.category-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;

}

.category-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;  /* pura image dikhne k liye */
  background: #fff;      /* empty space fill */
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card h3 {
  font-size: 18px;  /* normal readable size */
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 600px) {
  .categories {
    padding: 50px 15px;
    
  }

.categories h2 {
  font-size: 25px;
  margin-bottom: 40px;
  color: #222;
}
  .category-card img {
    height: 140px;
  }

  .category-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;

}
}
.category-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
  cursor: pointer;
}

/* Hover effect with color */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: #f0f8ff;   /* halka sa blue shade */
}

/* Title color change on hover */
.category-card:hover h3 {
  color: #0077b6; /* navy blue */
}

/* About Us Section */
.about {
padding: 80px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 10px;
  margin-bottom: 15px;
  color: #333;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #64EBB6;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.about-text .btn:hover {
  background: #00834e;
}

/* Gallery Section */
.gallery {
  padding: 80px 20px;
  background: #1A2A39;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: white;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease, filter 0.3s ease;
}

/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.hospital-section {
  background-color: #b3d2ec; /* Light blue bg */
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hospital-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
}

.hospital-content img {
  width: 100%;
  display: block;
  border: 6px solid #fff;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

/* Text Box Left */
.box-left {
  position: absolute;
  top: 20%;
  left: -10%;
  background: #fff;
  padding: 30px;
  width: 320px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.box-left h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
}

.box-left button {
  padding: 10px 20px;
  background: #86a9cf;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

.box-left button:hover {
  background: #5c87b1;
}

/* Text Box Right */
.box-right {
  position: absolute;
  bottom: -10%;
  right: -10%;
  background: #fff;
  padding: 25px;
  width: 280px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.box-right p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hospital-content img {
    border: none;
  }
  .box-left,
  .box-right {
    position: static;
    width: 100%;
    margin: 20px 0;
  }
}


.footer {
  background: #1a2a3a;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2.logo {
  font-size: 24px;
  margin-bottom: 15px;
  color: #B3D2EC;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #B3D2EC;
}

.footer p,
.footer a {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer a:hover {
  color: #FFCC00;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
}

.footer-map iframe {
  border-radius: 10px;
  margin-bottom: 10px;
}

.directions-btn {
  display: inline-block;
  background: #003366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.directions-btn:hover {
  background: #B3D2EC;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-map iframe {
    height: 200px;
  }
}

/* Hero for About Page */
.about-hero {
  background: url("images/About.jpg") center/cover no-repeat;
   height: 500px;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

/* Info Section */
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
}

.info-section.reverse {
  flex-direction: row-reverse;
}

.info-section .image-container {
  flex: 1;
  position: relative;
}

.info-section .image-container img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.info-section .image-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #e6f0ff;
  z-index: -1;
  border-radius: 10px;
}

.info-section .text {
  flex: 1;
}

.info-section .text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #003366;
}

.info-section .text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.info-section .text ul {
  list-style: disc;
  margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }
  .info-section.reverse {
    flex-direction: column;
  }
  .info-section .image-container::before {
    left: 0;
  }
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #f1f8f6;
  text-align: center;
}

/* Hero Banner (Contact Page) */
.hero.contact-hero {
  height: 60vh;
  background: url('images/conus.jpg') no-repeat center center/cover;
   height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero.contact-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
}

.hero.contact-hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero.contact-hero p {
  font-size: 1.2rem;
}


.contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input, 
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact-form button {
  padding: 12px;
  background: #003366;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #003366;
}

.contact-info {
  text-align: left;
}
.contact-info h3 {
  margin-bottom: 15px;
  color: #003366;
}
.contact-info p {
  margin: 8px 0;
}
.map {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info {
    text-align: center;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* ✅ Responsive: mobile pe thoda chhota */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}


.hero1 {
  height: 100vh;
  background: url('images/66.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
 height: 500px;
}

.hero1::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content1 {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
}

.hero-content1 h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-content1 p {
  font-size: 18px;
  margin-bottom: 30px;
}


.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 80px;
  padding: 20px 0;
  background: #f9f9f9;
}

.slider-track {
  display: flex;
  width: max-content; /* jitni images hongi utna wide */
  animation: slide 60s linear infinite; /* speed adjust karo (60s zyada images ke liye slow) */
}

.slider-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}

.slider-track img {
  width: 200px;          /* ek image ka size */
  margin: 0 10px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  height: 200px;
}

/* Animation keyframes */
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* track ka half run karega, kyunke tumne images repeat ki hain */
}

/* Hover par pause */
.slider-track:hover {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track img {
    width: 180px;
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    width: 140px;
    margin: 0 6px;
  }
}


/* Product Section */
.product-section {
  background: #1b1f27; /* dark bg like screenshot */
  padding: 60px 20px;
  text-align: center;
}

.product-section h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 40px;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white; /* light blue card bg */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.product-card img {
  max-width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
  margin-bottom: 15px;
}

.product-card button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: #ff9800;
}

/* Responsive */
@media (max-width: 600px) {
  .product-section h2 {
    font-size: 22px;
  }
  .product-card img {
    height: 300px;
  }

  .product-container {
  
  grid-template-columns: repeat(1, 1fr);
  
}

}
