

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  
}
html[lang="mr"] h1,
html[lang="mr"] h2,
html[lang="mr"] h3,
html[lang="mr"] p,
html[lang="mr"] span,
html[lang="mr"] li,
html[lang="mr"] a,
html[lang="mr"] input,
html[lang="mr"] textarea,
html[lang="mr"] button {
  font-family: 'Noto Sans Devanagari', sans-serif !important;
}



/* Header */
/* Header */
header {
  background-color: #e3f2fd;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 120px;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #0277bd;
  cursor: pointer;
}

/* Nav (for large screens) */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #0277bd;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #01579b;
}

nav select {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #0277bd;
  background: white;
  color: #0277bd;
}
.lng{
  position: absolute;
  top: 50%;
}

/* Close Button */
.close-btn {
  display: none;
  font-size: 30px;
  color: #0277bd;
  text-align: right;
  cursor: pointer;
  padding-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  #menu-toggle{
    position: absolute;
    right: 10%;
  }

  nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 60%;
    width: 250px;
    background-color: #e3f2fd;
    padding: 20px;
    gap: 10px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    transform: translateX(100%);
    margin-top: 90px;
    transition: transform 0.3s ease;
    z-index: 100;
  }

  nav.show {
    transform: translateX(0);
  }

  .close-btn {
    margin-left: 20px;
    display: block;
    align-self: flex-end;
  }

  nav a {
    /* margin: 15px 0; */
  }

  nav select {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 70px;
  }
}



/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #01579b;
}

.hero p {
  margin-top: 15px;
  font-size: 1.4rem;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 35px;
  background-color: #0277bd;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #01579b;
}

/* Features */
.features {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background: #f9f9f9;
}

.feature-item {
  text-align: center;
  max-width: 250px;
}

.feature-item img {
  width: 150px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: #0277bd;
}

/* Statistics */
.statistics {
  padding: 60px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item h2 {
  font-size: 2.5rem;
  color: #0288d1;
  text-align: center;
}

.stat-item p {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
}

/* Why Choose Us */
.why-choose {
  padding: 60px 20px;
  background: #e0f7fa;
  text-align: center;
}

.why-choose h2 {
  font-size: 1.5rem;
  color: #0277bd;
  margin-bottom: 40px;
}

.reasons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.reason-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 300px;
}

.reason-card h3 {
  color: #0288d1;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  color: #0277bd;
  margin-bottom: 40px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #e3f2fd;
  color: #01579b;
  margin-top: 20px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar {
    margin-top: 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .btn {
    padding: 12px 30px;
  } 
 
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 25px;
  }
    .cert-wrapper h1 {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    
}



.cert-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.cert-wrapper h1 {
  font-size: 2rem;
  color: #01579b;
  margin-bottom: 30px;
}

.cert-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.cert-item {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4; /* This will maintain proper ratio for certificates */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-item:hover {
  transform: scale(1.05);
}

.cert-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #4CAF50;
}

.treatment-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.treatment-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.treatment-section .highlight {
  /* color: #111; */
}
.highlight{
  color: #0288d1;
}

.treatment-section h2 span + span {
  color: #10CFC9;
}

.treatment-section .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

.treatment-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
}

.treatment-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.card-title {
  background-color: #0288d1;
  color: #fff;
  padding: 15px;
  font-weight: 600;
  font-size: 1.1rem;
}


.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer-line {
  width: 40px;
  height: 3px;
  background-color: #00bfff;
  margin: 8px 0 20px 0;
}


.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00bfff;
}

.footer-social {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00bfff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }
  .footer-line{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
