  :root {
        --primary-purple: #6a1b9a;
        --dark-purple: #4a148c;
        --light-purple: #9c4dcc;
        --burnt-orange: #e64a19;
        --gold: #ffb300;
        --light-gold: #ffd54f;
        --charcoal: #424242;
        --light-gray: #f5f5f5;
        --white: #ffffff;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: white;
        background-color: black;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Playfair Display", serif;
        font-weight: 600;
        margin-bottom: 1rem;
        color:goldenrod;
      }

      h1 {
        font-size: 3rem;
        line-height: 1.2;
      }

      h2 {
        font-size: 2.5rem;
        position: relative;
        margin-bottom: 2rem;
      }

      h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--burnt-orange), var(--gold));
        border-radius: 2px;
      }

      p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
      }

      .btn-primary {
        background: linear-gradient(
          135deg,
          var(--primary-purple),
          var(--light-purple)
        );
        color: var(--white);
        box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
      }

     /* Header Styles */
header {
  background-color:black;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Navbar Layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px gold);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;

}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-purple);
}

.nav-menu a.active {
  color: var(--primary-purple);
  font-weight: 600;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-purple);
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-purple);
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }
}
/*.section-header{
  align-items: center;
  justify-content: center;
}*/

      /* Page Hero */
    .page-hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(
      rgba(105, 27, 154, 0.096),
      rgba(74, 20, 140, 0.158)
    ),
    url("https://images.unsplash.com/photo-1629136627594-428799f827e4?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTU0fHxoYWlyJTIwYW5kJTIwYmVhdXR5JTIwc2Fsb258ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=500")
      no-repeat center center/cover;
  background-attachment: fixed;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Subtle parallax zoom effect */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* Overlay glow pulse */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

/* Heading animation */
.page-hero h1 {
  color: var(--gold);
  font-size: 3.2rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 2s ease forwards 0.5s;
}

/* Paragraph animation */
.page-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 2s ease forwards 1s;
}

/* Shared keyframe for fade and rise */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Scroll Indicator Container */
/* Scroll Indicator (arrow) */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInScroll 2s ease-in-out 2s forwards;
}

/* Down arrow style */
.arrow-down {
  width: 18px;
  height: 18px;
  border-left: 3px solid gold;
  border-bottom: 3px solid gold;
  transform: rotate(-45deg);
  animation: arrowBounce 2s infinite;
  transition: transform 0.3s ease;
}

/* Hover effect */
.scroll-indicator:hover .arrow-down {
  transform: rotate(-45deg) translateY(6px);
}

/* Arrow bounce animation */
@keyframes arrowBounce {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(-45deg) translateY(10px);
    opacity: 0.6;
  }
}

/* Fade-in animation after hero text */
@keyframes fadeInScroll {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}




      /* Page Content */
      .page-content {
        padding: 80px 0;
      }

     /* ===== Contact Info Section ===== */
/* ===== Contact Info Section (Executive Level) ===== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin: 100px 0;
}

/* Contact Card */
.contact-card {
  position: relative;
  padding: 50px 30px 40px;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

/* Hover Effects */
.contact-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* Floating Animated Gradient */
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, var(--primary-purple), var(--light-purple), var(--gold));
  background-size: 400% 400%;
  border-radius: 50%;
  animation: gradientRotate 12s ease infinite;
  opacity: 0.15;
  z-index: 0;
}

@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Contact Icon */
.contact-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}

.contact-card:hover .contact-icon {
  transform: scale(1.2) rotate(12deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Titles */
.contact-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  transition: color 0.4s ease;
}

.contact-card:hover h3 {
  color: var(--gold);
}

/* Paragraphs */
.contact-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* Links */
.contact-card a {
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.3s ease;
}

.contact-card a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

/* Floating circle for extra depth */
.contact-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  z-index: 0;
  transform: rotate(45deg);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .contact-card {
    padding: 40px 20px 30px;
  }

  .contact-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .contact-card h3 {
    font-size: 1.5rem;
  }

  .contact-card p {
    font-size: 0.95rem;
  }
}

      /* Social Media Section */
      .social-media {
        margin-bottom: 60px;
      }

      .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .social-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--charcoal);
        transition: transform 0.3s ease;
      }

      .social-icon:hover {
        transform: translateY(-5px);
      }

      .social-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 1.8rem;
        color: var(--white);
        transition: all 0.3s ease;
      }

      .facebook {
        background: linear-gradient(135deg, #3b5998, #8b9dc3);
      }

      .tiktok {
        background: linear-gradient(135deg, #000000, #69c9d0);
      }

      .whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
      }

      .instagram {
        background: linear-gradient(135deg, #e1306c, #f77737);
      }

      .gmail {
        background: linear-gradient(135deg, #d44638, #ea4335);
      }

      .social-icon span {
        font-size: 0.9rem;
        font-weight: 500;
      }

      /* Map Section */
      .map-section {
        margin-bottom: 60px;
     
      }

      .map-container {
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      /* Hours Section */
      .hours-section {
        margin-bottom: 60px;
      }

      .hours-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        overflow: hidden;
      }

      .hours-table th {
        background: linear-gradient(135deg, var(--burnt-orange), var(--gold));
        color: var(--white);
        padding: 15px;
        text-align: left;
      }

      .hours-table td {
        padding: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      .hours-table tr:nth-child(even) {
        background-color: rgba(230, 74, 25, 0.05);
      }

      /* Contact Form Section */
      .contact-form-section {
        background: white;
        padding: 60px 0;
        border-radius: 10px;
      }
      .contact-form-section h2{
        color:var(--gold);
      }
      .contact-form-section p{
        color: white;
      }

      .contact-form {
        background: black;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        max-width: 800px;
        margin: 0 auto;
      }

      .form-group {
        margin-bottom: 25px;
        
      }
     
      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--charcoal);
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s ease;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary-purple);
        box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      /* WhatsApp Float */
      .whatsapp-float {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
        z-index: 100;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
      }

     
      /* ===== DETAILED FOOTER ===== */
      footer {
        background: black;
        color: var(--white);
        padding: 80px 0 0;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-col h3 {
        color: var(--gold);
        margin-bottom: 25px;
        font-size: 1.3rem;
        position: relative;
      }

      .footer-col h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--gold);
      }

      .footer-col p {
        margin-bottom: 20px;
        font-size: 1rem;
        opacity: 0.8;
        line-height: 1.6;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .footer-links a:hover {
        color: var(--gold);
        padding-left: 5px;
      }

      .footer-links a i {
        width: 20px;
        text-align: center;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: all 0.3s ease;
      }

      .social-links a:hover {
        background-color: var(--gold);
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
      }

      .footer-newsletter {
        background: rgba(255, 255, 255, 0.05);
        padding: 25px;
        border-radius: 10px;
        margin-top: 20px;
      }

      .newsletter-form {
        display: flex;
        gap: 10px;
        margin-top: 15px;
      }

      .newsletter-form input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
      }

      .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }

      .newsletter-form button {
        background: var(--gradient-secondary);
        color: var(--white);
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .newsletter-form button:hover {
        transform: translateY(-2px);
      }

      /* Animations */
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

      .animate {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
      }

      .animate.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        h1 {
          font-size: 2.5rem;
        }

        h2 {
          font-size: 2rem;
        }
      }

      @media (max-width: 768px) {
        .navbar {
          padding: 15px 0;
          
        }

        .nav-menu {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background-color:black;
          flex-direction: column;
          align-items: center;
          padding-top: 50px;
          transition: left 0.3s ease;
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          
        }

        .nav-menu.active {
          left: 0;
        }

        .nav-menu li {
          margin: 15px 0;
          
        }

        .hamburger {
          display: flex;
          
        }

        .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(7px, -6px);
        }

        .page-hero h1 {
          font-size: 2.5rem;
        }

        .page-hero p {
          font-size: 1.1rem;
        }

        .contact-form {
          padding: 30px 20px;
        }
      }