/* ============================= */
/* GLOBAL RESET & BASE STYLES   */
/* ============================= */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

@media (max-width: 486px) {
  body {
    font-size: 14px;
    padding: 10px;
  }
}

/* ============================= */
/* HEADER / LOGO / SLOGAN       */
/* ============================= */
.slogan {
  color: #c60000;
  text-align: center;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  animation: fadeInSlideUp 0.6s ease-out forwards;
}

.banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  max-width: 350px;
  width: 100%;
  height: 9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .logo {
    max-width: 250px;
    margin: left;
    height: auto;
  }
}

/* ============================= */
/* NAVIGATION / MENU            */
/* ============================= */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 14px 16px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  height: 2px;
  background-color: #00bfff;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: #00bfff;
}
nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ============================= */
/* HAMBURGER MENU               */
/* ============================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: -2px 0 8px rgba(0,0,0,0.15);
}
.mobile-menu nav ul {
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  height: 100vh;
  justify-content: flex-start;
}


.mobile-menu nav ul li {
  margin-bottom: 20px;
}
.mobile-menu nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }
}

/* ============================= */
/* PACKAGE BUTTONS SECTION      */
/* ============================= */
.view-packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 0 10px;
}

.view-packages-button {
  flex: 1 1 calc(50% - 20px);
  max-width: 200px;
  min-width: 140px;
  padding: 12px 10px;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.view-packages-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ============================= */
/* CARD GRID & LAYOUT           */
/* ============================= */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 10px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 5px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.card-content {
  padding: 10px;
  word-wrap: break-word;
  overflow-x: hidden;
}

.card-content .h {
  font-size: 18px;
  font-weight: bold;
  color: #2c363f;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #005fa3;
}

/* ============================= */
/* DETAILS / CONTENT BOXES      */
/* ============================= */
details {
  margin-top: 10px;
  background: #f9f9f9;
  padding: 8px 10px;
  border-radius: 6px;
  border-left: 3px solid #0077cc;
  overflow-x: hidden;
}

details summary {
  cursor: pointer;
  font-weight: bold;
  color: #0077cc;
}

details p,
details ul {
  margin-left: 15px;
  margin-top: 8px;
}


ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
  word-wrap: break-word;
}

.red {
  color: #c0392b;
}
.blue {
  color: #0077cc;
}

@media (max-width: 480px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .card-content .h {
    font-size: 16px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  details {
    padding: 6px 8px;
  }
}


/* INFO SECTION CONTAINER */
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* INDIVIDUAL CARD */
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 450px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center; /* Center content inside cards */
}

/* HEADINGS */
.info-card p strong,
.info-card .hours,
.info-card .conu {
  font-size: 18px;
  font-weight: 700;
  color: #2c363f;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/* PARAGRAPH TEXT */
.info-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

/* HR LINE */
.info-card hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center social icons */
  gap: 12px;
  margin-top: 15px;
}
.social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}
.social-icons a:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .info-card {
    width: 100%;
    max-width: 100%;
  }
}
.red {
color:red;
}
.blue {
color:#007BFF;	
	
}		
.footer-center{
text-align:Center;
}	
