* { margin: 0; padding: 0; box-sizing: border-box; }

a{text-decoration: none; color: #a60a0a; font-weight: 700;}

/* Body and Base Fonts */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  margin: 0; padding: 0;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  overflow-x: hidden; /* Prevent horizontal scroll on mobiles */
}

.clearfix {clear: both;}
.img_responsive{margin: 0px auto; width: 100%; height: auto;}

.banner{margin: 66px 0px;}

/* Navbar Styling */
.navbar {
  background-color: #a60a0a;
  color: white;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.toggle-button {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none; /* show only on mobile */
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-right: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #ffd700;
}

.nav-search {
  display: flex;
  margin-top: 10px;
  padding: 10px;
  max-width: 185px !important;
}

.nav-search input[type="search"] {max-width: 120px;
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 1rem;
  outline: none;
  flex-grow: 1;
}

.nav-search button {
  padding: 0.25rem 0.75rem;
  border: none;
  background-color: #ffd700;
  color: #a60a0a;
  font-weight: 600;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-search button:hover,
.nav-search button:focus {
  background-color: #e6c200;
}

/* Video Container */
.video-container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  box-sizing: border-box;
  text-align: center;
}

.video-container h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #a60a0a;
}

video {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(166, 10, 10, 0.3);
}



/* Layout Wrapper */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  align-items: start;
}

/* Sidebar */
.sidebar {
  background-color: #a60a0a;
  padding: 1rem;
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 600;
  height: fit-content;
}

.sidebar a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.sidebar a:hover,
.sidebar a:focus {
  background-color: #7a0606;
}

/* Gallery */
.gallery {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
}

.gallery1 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: white;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.card:hover img {
  transform: scale(1.1);
}

.details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(166, 10, 10, 0.75);
  color: white;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.card:hover .details {
  opacity: 1;
}

.details h5 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.details p {
  margin: 0;
  font-size: 0.875rem;
}

.info {
  padding: 0.75rem 1rem;
  text-align: center;
  color: #a60a0a;
}

.name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.age {
  font-weight: 500;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .toggle-button {
    display: block;
  }
  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
    background-color: #a60a0a;
    padding: 0.5rem 0;
    border-radius: 0 0 5px 5px;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 0.5rem 0;
    text-align: center;
  }
  .nav-search {
    justify-content: center;
    /* padding: 0 1rem; */
    padding: 10px 10px;
  }
  .nav-search input[type="search"] {
    flex-grow: 1;
  }
  /* Stack content wrapper columns on mobile */
  .content-wrapper {
    grid-template-columns: 1fr !important;
  }
  .sidebar {
    margin-top: 2rem;
    width: 100%;
  }
  /* Single column gallery on mobile */
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .video-container {
    padding: 0 0.5rem;
  }
  .video-container h1 {
    font-size: 2rem;
  }
  .content-box {
    max-width: 90%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .name {
    font-size: 1rem;
  }
  .age {
    font-size: 0.85rem;
  }
}
.content-box {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #fff;
  border: 2px solid #a60a0a;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(166, 10, 10, 0.15);
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  text-align: left;
}

.content-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #a60a0a;
}

.content-box h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #a60a0a;
}

.content-box h4 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #a60a0a;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  background-color: #a60a0a;
  color: white;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 30%;
  padding: 0 1rem;
  box-sizing: border-box;
  min-width: 200px;
}

.footer-section a{
  text-decoration: none; color: #fff !important;
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section address,
.footer-section ul {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
  text-decoration: underline;
}

/* Responsive footer stacking on small screens */
@media (max-width: 600px) {
  .page-footer {
    flex-direction: column;
  }
  .footer-section {
    flex-basis: 100%;
    margin-bottom: 1.5rem;
  }
}




/* header */
.header {
  background-color: #a60a0a !important;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed; width: 100%; top: 0; margin-bottom: 20px !important;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #a60a0a;
}

.header li a {
  display: block;
  padding: 20px 20px; color: #fff !important;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #a60a0a;
}

.header .logo {
  display: block;background-color: #a60a0a;
  float: left;
  font-size: 2em; color: #fff !important;
  /* padding: 10px 20px; */
  padding: 8px 20px;
  width: 205px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 440px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media only screen and (min-device-width: 281px) and (max-device-width: 1078px){
  /* For portrait layouts only */
  .header li a {
    display: block;
    padding: 9px 20px; color: #fff !important;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }

}

  /* Call and WhatsApp */

 .nowcalling {
			display: none;
}
@media only screen and (max-width: 768px) {
  .nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100% !important;
    z-index: 9999 !important;	
  }
.lcol {
  background-color: #b8184d;
}
.rcol {
  background-color: #0d7a03;
}
.lcol a, .rcol a {
  display: block;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.lcol, .rcol {
  float: left;
  width: 50%;
}
}

.faq-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.faq-title {
  font-size: 2rem;
  color: #a60a0a;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  text-align: left;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  color: #a60a0a;
}

.faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #a60a0a;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .faq-section {
    max-width: 90%;
  }
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-question {
    font-size: 1rem;
    padding-right: 20px;
  }
  .faq-icon {
    font-size: 1.2rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}
#location-section {
    padding: 20px;
    font-family: Arial, sans-serif;
    border: 3px solid #b22222;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
  }

  #location-section h4 {
    color: #b22222;
    text-align: center;
  }

  #location-section .button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  #location-section button {
    background-color: #b22222;
    color: white;
    border: 3px solid #ffd700; /* darker border */
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 15px; /* rounded edges */
    font-weight: bold;
    flex: 1 1 45%;
    min-width: 140px;
    max-width: 200px;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s;
  }

  #location-section button:hover {
    background-color: #7a1212;
  }

  @media (max-width: 480px) {
    #location-section button {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }





/* ============================= */
/* Responsive Styles */
/* ============================= */

/* Laptops and Desktops */
@media (min-width: 1025px) {

  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 7px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
  
}

/* Tablets and Mobiles */
@media (max-width: 1024px) {
  
}

/* Phones (481px and below) */
@media (max-width: 480px) {

  .nav-search {
    display: flex;
    margin: 0px auto;
    padding: 10px;
    max-width: 240px !important;
  }

  .nav-search input[type="search"] {max-width: 190px;
    padding: 0.25rem 0.5rem;
    border: none;
    border-radius: 3px 0 0 3px;
    font-size: 1rem;
    outline: none;
    flex-grow: 1;
  }
  
}