.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: #111;
  box-shadow: grey;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.logo{
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-image{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-text{
  font-size: 1.5rem;
  font-family: cursive;
  color: blue;
  font-weight: bold;
}
.nav-links{
  color: blue;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.5rem;
}
.intro-banner{
  background-image: url("Images/2eb53e56e339f792757f0365afd3531b.jpg");
  background-size: cover;
  color: white;
  text-align: center;
  padding: 7rem 1rem;
  position: cover;
  background-repeat: no-repeat;
  background-position: center;


  
}
.banner-content h1{
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.banner-content p{
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 50px;
  font-family: 'Courier New', Courier, monospace;
}
.intro-section{
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}
.intro-card{
  background-image: url(Images/image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  color: #b02f2b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.intro-card{
  transition: transform 0.4s ease,box-shadow 0.4s ease;
}
.intro-card:hover{
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.feature-cards{
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}
.card{
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: rgba(223, 81, 199, 0.952);
  padding: 5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0.08);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform o.5s;

}
.card i{
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135 deg,#6a11cb 0%,#2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card h3{
  margin-bottom: 1.3rem;
  color: #b02f2b;
}
.card:hover{
  transform:translateY(-6px)
}
.btn{
  background:var(--accent);
  color:#fff;
  padding:9px 14px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  transition:all .22s}

.btn:hover{
  transform:translateY(-3px)}

.btn.ghost{
  background:#2b6cb0;
  color:white;
  border:1px solid rgba(43,108,176,0.12)
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px
}
.gallery-grid img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  transition:transform .2s}

.gallery-grid img:hover{transform:scale(1.03)
}
 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #0a0a0a;
      color: #fff;
      line-height: 1.6;
    }

    a {
       color: #222; 
      text-decoration: none; }
    h1, h2, h3 { color: #1320d1; }

    .site-header {
      background: #111;
      border-bottom: 2px solid #00aaff;
      padding: 15px 0;
    }

    .header-inner {
      width: 90%;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      font-size: 26px;
      color: #00aaff;
      font-weight: bold;
    }

    .site-nav a {
      margin-left: 0 8px;
      font-size: 18px;
      transition: .3s;
      color: #ffffff;
    }

    .site-nav a:hover {
      color: #f39c12;
    }

    .active {
      padding-bottom: 4px;
    }
    
    .hero-contact {
      background: url('contact-bg.jpg') center/cover no-repeat;
      padding: 120px 0;
      text-align: center;
      background-attachment: fixed;
    }

    .hero-contact h1 {
      font-size: 48px;
      text-shadow: 0px 0px 12px #000;
    }

    .lead {
      max-width: 600px;
      margin: auto;
      font-size: 18px;
      opacity: 0.85;
    }
  
* {
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius:8px;

}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #f8f8f8;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

.muted {
  color: #777;
}

.site-header {
  background: #111;
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.main-nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav .active {
  color: #f39c12;
}

.section {
  padding: 60px 0;
}

.btn {
  display: inline-block;
  background: #f39c12;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #d9880f;
}

.btn.small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn.ghost {
  background:#ff9c00;
  border: 2px solid #f39c12;
  color: #ffffff;
}

.btn.ghost:hover {
  background: #f39c12;
  color: white;
}

.events-section {
  padding: 70px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.event-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.event-icon {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.event-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.event-card p {
  color: #555;
  margin-bottom: 15px;
}

.event-price {
  font-weight: 600;
  color: #f39c12;
  margin-bottom: 20px;
}

.booking-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.booking-card h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: 0.2s;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  border-color: #f39c12;
  outline: none;
  box-shadow: 0 0 0 2px rgba(243,156,18,0.2);
}

.extras-list label {
  display: block;
  margin: 8px 0;
  color: #333;
  font-size: 0.95rem;
}

.price-box {
  background: #f2f2f2;
  padding: 15px;
  margin: 15px 0;
  border-radius: 6px;
  font-size: 1.2rem;
  color: #f39c12;
  font-weight: bold;
}

.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.notice {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  display: none;
}

.notice.success {
  background: #d4edda;
  color: #155724;
  display: block;
}


.contact-section {
   margin-top: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

  
    .info-card {
      background: #11111136;
      padding: 20px;
      margin-bottom: 20px;
      border-left: 4px solid #00aaff;
      border-radius: 10px;
      transition: .3s;
    }

    .info-card:hover {
      transform: translateX(5px);
      background: #b1d60d;
    }

    
    .contact-form {
      background: #10e72c87;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,150,255,0.3);
    }

    .field {
      margin-bottom: 20px;
    }

    .field label {
      display: block;
      margin-bottom: 6px;
      color:#0029ff;
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #00aaff;
      background: #fff;
      color: #fff;
      border-radius: 8px;
    }

    .field textarea {
      height: 120px;
    }

    .btn-primary {
      width: 100%;
      padding: 12px;
      background: #00aaff;
      border: none;
      color: #000;
      font-weight: bold;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      transition: .3s;
    }

    .btn-primary:hover {
      background: #0088cc;
    }

  
    .faq {
      margin-top: 80px;
    }

    .faq h2 {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-item {
      background:#45bf1f47;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid #00aaff;
    }

    .faq-item p {
      opacity: 0.85;
    }

    
    footer {
      margin-top: 80px;
      padding: 40px;
      background: #111;
      text-align: center;
      border-top: 2px solid #00aaff;
    }

    footer p { opacity: 0.7; }

    @media (max-width: 800px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-contact h1 {
        font-size: 32px;
      }
    }
    
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.center {
  text-align: center;
}

.muted {
  color: #666;
}

.site-header {
  background: #111;
  padding: 15px 0;

}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.main-nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: #f39c12;
}

.intro-banner {

  padding: 110px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.mission-section {
  text-align: center;
  padding: 70px 20px;
}

.circle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  justify-items: center;
  margin-top: 50px;
}

.circle-card {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #00daff8a;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 2px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: .3s;
}

.circle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.15);
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
}

.stat-label {
  margin-top: 5px;
  color: #555;
}


.team {
  padding: 70px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: .3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.timeline {
  padding: 70px 20px;
}

.timeline-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.timeline-list li {
  padding: 15px 0;
  border-left: 3px solid #f39c12;
  padding-left: 20px;
  margin-bottom: 20px;
  background-color: #00daff8a;
}

.cta {
  padding: 70px 20px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f39c12;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #d9860f;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #aaa;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:8px;
  text-align: center;
}

.brand{
  font-weight:700;
  font-size:1.2rem;
  padding-left:6px}

.main-nav a{
  color:#e8e9e9;
  text-decoration:none;
  margin:0 8px;
  font-size:18px;
}


.hero{
  padding:60px 0;
  text-align:center;
  background:linear-gradient(180deg,rgba(43,108,176,0.06),transparent)}

.hero-title{
  font-size:2rem;
  margin-bottom:8px}

.lead{
  color:var(--muted);
  margin-bottom:18px}

.section{
  padding:40px 0;
  font-size: 1.5rem;
}

.alt{
  background:linear-gradient(180deg,#fff,#fbfdff)}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px}


.event{
  padding:14px;
  border-radius:10px}

.events-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
  margin-top:16px}

.meta{
  font-size:0.9rem;
  color:var (--muted);
  margin:8px 0}

.small{
  padding:6px 10px;
  font-size:.9rem;
  text-decoration: none;
}


label{
  display:block;
  margin:8px 0;
  font-size:0.95rem}

input[
  type="text"],input[type="email"],input[type="date"],input[type="number"],select,textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef8;background:#fff}
textarea{min-height:80px}

.form{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:10px;
  background: linear-gradient(135deg, #4aff3a, #3669c0);
}

.row{
  display:flex;
  gap:10px}

.row label{
  flex:1}
.extras label{
  display:inline-block;
  margin-right:12px}

.form-actions{
  display:flex;
  gap:10px;
  align-items:center}

.price-preview{
  align-self:center;
  font-weight:600}

.notice{
  color:var(--muted);
  font-size:0.95rem;
  margin-top:8px}

.back-to-top {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 60px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s ease;
}


.back-to-top:hover {
  background: #d9860f;
  transform: scale(1.1);
}

@media (max-width:760px){
  .row{flex-direction:column}
  .main-nav{display:none}
}
.fade-in{animation:fadeIn .45s ease both}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}


