* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000;
  background: linear-gradient(to right, #ff9900, #ffcc00);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  position: fixed;
  top: 0;          
  left: 0;
  width: 100%;     
  z-index: 1000;   
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.logo img {
  height: 80px;
  width:200px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right:100px;
}

.nav-links.active {
  right: 0; 
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.nav-links li a:hover{
  color: #be0a32;
}

/* Menu button hidden by default */
.menu-btn{
  display: none;
  flex-direction: column;
  cursor: pointer;
   margin-left: auto;
}

.menu-btn span{
  height: 3px;
  width: 25px;
  background-color: black;
  margin: 4px;
  border-radius: 2px;
  margin-right:20px;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  margin-bottom: 100px;
  margin-top: -50px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  margin-top: 50px;
  font-size: 48px;
  color: #be0a32;
}

.subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #be0a32;
  margin-top: 10px;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 900;
  margin-top: 20px;
  color: #000;
}

.desc {
  margin-top: 15px;
  font-size: 18px;
  color: #222;
}

.book-btn {
    text-decoration:none;
  margin-top: 50px;
  background-color: #be0a32;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.book-btn .books{
    text-decoration:none;
    color:white;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  margin-top: 60px;
}
    /* Cards Section */
    .services {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: -80px;
      padding: 0 20px;
      flex-wrap: wrap;
    }

    .card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px 25px 25px;
  width: 300px;
  position: relative;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  overflow: visible; /
}

    /* Water drop/diamond shape behind icon */
.card::before {
  content: "";
  width: 60px;
  height: 60px;
  background: #fff;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 10% 40% 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
}

 /* Icon in center of shape */
.card i {
  font-size: 22px;
  color: #c8102e;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: transparent; /* अब circle नहीं होगा */
  padding: 0;
}

    .card h3 {
      margin: 20px 0 10px;
      font-size: 20px;
      font-weight: 600;
    }

    .card p {
      color: #111;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .card a {
      color: #c8102e;
      font-weight: bold;
      text-decoration: none;
      border-bottom: 2px solid #c8102e;
      transition: 0.3s;
    }

    .card a:hover {
      color: #c8102e;
      border-color: #c8102e;
    }

    /* Hover Effect for all cards */
    .card:hover {
      background: #c8102e;
      color: #fff;
      transform: translateY(-10px);
    }

.card:hover::before {
  background: #c8102e; /* Hover color */
}

    .card:hover p {
      color: #fff;
    }

    .card:hover a {
      color: #fff;
      border-color: #fff;
    }
    
.website-offer-banner {
  margin: 60px 30px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.website-offer-banner .banner-wrapper {
  width: 90%;         
  max-width: 900px;  
  margin: 0 auto;      
}

.website-offer-banner .banner-wrapper img {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 200px;
}



/* About section */
.page-heading {
  margin-top: 25px;  
  text-align: center;
  color: #be0a32;
}
.about-section {
    margin:30px 20px 0px 20px;
    padding: 50px 60px;
    background: white;
}
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Left Image */
.about-image .image-placeholder {
  margin-top: 70px;
    width: 350px;
    height: 500px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 6px;
}

/* Right Content */
.section-subtitle {
    color: #b3002d;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
}
.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.about-text {
    font-size: 15px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 30px;
}

/* Vision & Mission Boxes */
.info-boxes {
    display: flex;
    gap: 30px;
}
.info-box {
    flex: 1;
}
.icon2 {
    width: 45px;
    height: 45px;
    background: #b3002d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 12px;
}
.info-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.info-box p {
    font-size: 15px;
    color: #111;
}
  
  /*Pooja*/
  
 .upstare-image {
  display: flex;
  justify-content: center; 
  align-items: center;       
  margin: 150px 20px 0 20px; 
  height:300px;
}

.upstare-image img {
  max-width: 100%; 
  max-width: 1200px;
  height: 300px;    
  display: block;    
  object-fit: contain;
}

  
  .card-body {
  display: flex;
  justify-content: space-between; /* heading left, button right */
  align-items: center;
  padding: 10px 15px;
}

.card-body h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #000;
}



.gallery-btn {
    text-decoration:none;
  background:  #b3002d;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.gallery-btn .body-btn{
    text-decoration:none;
    color:#fff;
}

.gallery-btn:hover {
  background: #000;
}
    
     /* gallery */

   .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top:30px;
  }

  .gallery .image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-left:10px;
    margin-right:10px;
  }

  .gallery img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    display: block;
  }

        
        /* Contact Cards */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 50px;
  margin-top: 10px;
}

.contact-info .card-dark{
  flex: 1;
  padding: 30px;
  border-radius: 15px;
  color: white;
  text-align: center;
   background-color:#c21e35 ;
}

.contact-info .card-dark:hover{
  background-color:#000 ;
}

.contact-info .card-dark i {
  font-size: 30px;
  margin-bottom: 15px;
}

.card-dark i:hover{
  color: #fff;
}

.contact-info .red { background: #c21e35; }
.contact-info .dark { background: #222; }

/* Contact Form */
.contact-information {
  display: flex;
  gap: 20px;
  padding: 40px 50px;
}
.contact-information form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-information input, .contact-information textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}
.contact-information button {
  padding: 12px;
  background: #c21e35;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
.form-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width:300px;
  height:360px;
}
.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

    /* footer */
      footer {
      display: flex;
      flex-direction: column;
      border-top: 1px solid #ddd;
      color: #333;
      font-size: 14px;
      width: 100%;
      z-index: 1000;
      margin-top: 40px;
      height: 50px;
    }

    .footer-top {
      background: #ffeeb9;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 8%;
      font-size: 14px;
    }

    .footer-main {
      display: flex;
      justify-content: center;
      gap:20px;
      margin-top: 50px;
      padding: 0 8% 10px;
      flex-wrap: wrap;
      flex: 1;
    }
    
    .footer-col {
  flex: 1;
  min-width: 300px; 
  max-width: 340px; 
}

    .footer-col h4 {
      color:#be0a32 ;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-bottom {
      text-align: center;
      font-size: 15px;
      border-top: 1px solid #ddd;
      padding: 6px;
      background: #f7f7f7;
    }

    .footer-bottom span a{
      text-decoration:none;
      color: #be0a32;
      font-weight: 700;
    }

/* responsive */

    @media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-links.active {
     display: flex; 
    }

  .menu-btn { display: flex; }
  .auth-buttons { display: none; }

  /* Hero */
  .hero-section { flex-direction: column; text-align: center; padding: 30px 20px; }
  .hero-text h1 { font-size: 28px; }
  .hero-text h2 { font-size: 32px; }

  /* about */
    .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image .image-placeholder {
    margin: 0 auto 30px auto;
    width: 70%;
    height: auto;
  }
  .section-title {
    font-size: 24px;
  }
  .about-text {
    font-size: 14px;
  }
  .info-boxes {
    flex-direction: column;
    gap: 20px;
  }
  .website-offer-banner {
    padding: 20px 10px;
  }
  .website-offer-banner .banner-wrapper img {
    max-width: 95%;
  }

  
  /*gallery*/
  
   .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
    .gallery img {
      height: 200px;
    }


  /* contact form */
   .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-info .card {
    width: 100%;
    max-width: 500px;
  }

  .contact-information {
    flex-direction: column;
    align-items: center;
  }

  .contact-information form,
  .form-image {
    width: 100%;
    max-width: 500px;
  }
  /* footer */
  .footer-top {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-main {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 45%;
    margin: 10px 0;
  }
}


@media (max-width: 468px) {
  .logo img { height: 45px; }

  .hero-text h1 { font-size: 24px; }
  .hero-text h2 { font-size: 28px; }
  .hero-text .desc { font-size: 14px; }
  .book-btn { padding: 10px 20px; font-size: 14px; }
.website-offer-banner {
    padding: 15px 8px;
  }
  .website-offer-banner .banner-wrapper img {
    max-width: 100%;
    border-radius: 4px;
  }

  .about-section {
    padding: 30px 20px;
  }
  .section-subtitle {
    font-size: 20px;
  }
  .section-title {
    font-size: 20px;
  }
  .about-image .image-placeholder {
    width: 90%;
  }
  .info-box h3 {
    font-size: 16px;
  }
  .info-box p {
    font-size: 13px;
  }
  
  /*gallery*/
  
      .gallery {
      grid-template-columns: 1fr;
    }
    .gallery img {
      height: 180px;
    }

   /* contact form */
   .contact-info {
    padding: 20px;
  }

  .contact-information {
    padding: 20px;
  }

  .contact-information input, 
  .contact-information textarea {
    font-size: 13px;
    padding: 10px;
  }

  .contact-information button {
    font-size: 14px;
    padding: 10px;
  }

  /* footer */
  footer {
    height: auto; 
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    padding: 10px 5%;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
    padding: 0 5%;
  }

  .footer-col {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .footer-col h4 {
    font-size: 13px;
  }
}


@media (max-width: 368px) {
  .hero-section { padding: 15px; }
  .hero-text h1 { font-size: 20px; }
  .hero-text h2 { font-size: 22px; }
  .subtitle { font-size: 14px; }
  .desc { font-size: 13px; }

  .book-btn { font-size: 12px; padding: 8px 16px; }
  .website-offer-banner {
    padding: 10px 5px;
    margin-top:30px;
  }
  .website-offer-banner .banner-wrapper img {
    width: 100%;
    height: 80px;
  }
  
   .service-card {
        margin: 50px auto;  
        width: 90%;       
    }

    .services-container {
        gap: 40px; 
    }

  .about-section {
    padding: 20px 15px;
  }
  .section-subtitle {
    font-size: 18px;
  }
  .section-title {
    font-size: 18px;
  }
  .about-text {
    font-size: 13px;
    line-height: 1.5;
  }
  .about-image .image-placeholder {
    width: 100%;
    height: auto;
  }

   .info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
   .info-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .info-box h3 {
    font-size: 15px;
  }
  .info-box p {
    font-size: 12px;
  }

  /* pooja */
  
    .upstare-image {
    margin: 80px 10px 0 10px;  
  }

  .upstare-image img {
    max-width: 100%;   
    height: auto;     
  }
  
   .pooja-card {
    width: 100%;   
    margin: 20px 0;
  }

  .pooja-title {
    font-size: 15px;
  }

  .pooja-text {
    font-size: 12px;
  }

  .pooja-links {
    flex-direction: column;
    gap: 8px;
  }
  
  /*gallery*/
  
      .gallery img {
      height: 150px;
    }

  /* contact */

  .contact-info .card {
    padding: 20px;
  }

  .contact-information input, 
  .contact-information textarea {
    font-size: 12px;
  }

  .contact-information button {
    font-size: 13px;
    padding: 8px;
  }
  
  .image-placeholder img {
    width: 100%;
    height: auto;
  }
  
  /* footer */
  .footer-top {
    font-size: 12px;
  }
  .footer-col h4 {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 5px;
  }
}
