        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ffffff, #d2c8b7); /* white to beige */
    background-size: 200% 200%;
    background-attachment: fixed;
    background-position: center center;
    transition: background-position 0.3s ease;
    margin: 0;
    padding: 0;
}

        nav {
            background-color: #948979;
            padding: 10px 20px;
            border-radius: 20px;
            border: 3px solid #948979;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
			height: 60px;
            margin: auto;
            margin-top: 20px;
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
        }

        nav img {
            height: 55px;
        }

        nav ul {
            list-style-type: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

nav ul li {
    font-size: 14px;
    color: black; /* Optional: base color */
    transition: color 0.3s ease;
}

nav ul li:hover {
    color: maroon;
    cursor: pointer;
}

/* Dropdown parent */
nav ul li.dropdown {
    position: relative;
}

/* Dropdown menu hidden by default */
nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #948979;
    padding: 8px 0;
    list-style: none;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Dropdown items */
nav ul li .dropdown-menu li {
    padding: 8px 20px;
    white-space: nowrap;
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Link styling inside dropdown */
nav ul li .dropdown-menu li a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

nav ul li .dropdown-menu li a:hover {
    color: maroon;
}

nav a {
    text-decoration: none;
    color: inherit; /* or set your desired color */
}

nav a:hover,
nav a:focus {
    text-decoration: none;
    outline: none; /* removes blue focus ring in some browsers */
}






        header {
            height: 650px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        @keyframes fadeInBG {
            to {
                opacity: 1;
            }
        }

        header h1 {
            font-size: 170px;
            font-family: 'Anton', sans-serif;
            margin: 0;
            letter-spacing: 15px;
            transform: scaleX(1.2) scaleY(0.75);
            line-height: 1.2;
            opacity: 0;
            animation: fadeIn 1.5s ease-out forwards;
            animation-delay: 0.5s;
			text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scaleY(0.8) translateY(30px);
            }
            100% {
                opacity: 1;
                transform: scaleY(0.8) translateY(0);
            }
        }

        header p {
			font-size: 19px;
            opacity: 0;
            animation: fadeIn 2s ease-out forwards;
            animation-delay: 1.5s;
        }




.section {
  display: flex;
  padding: 60px 80px;
  padding-bottom: 150px;
  align-items: center;
  justify-content: space-between;
}


.master-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px 80px;
  gap: 50px;
  position: relative;
  overflow: visible;
}


.master-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  text-align: justify;
}

.master-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.read-btn {
  margin-top: 20px;
  background-color: black;
  color: #d9b99b;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.read-btn:hover {
  background-color: maroon;
  color: white;
}



.master-visual {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.master-visual h2 {
  font-family: 'Anton', sans-serif;
  font-size: 90px;
  color: #990000;
  margin-bottom: -30px;
  z-index: 1;
  position: relative;
  line-height: 1;
}

.master-img {
  max-height: 380px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-top: -20px;
  transition: transform 0.4s ease;
}

.master-img:hover {
  transform: translateX(-50%) scale(1.05);
}

.more-master {
  display: none;
}




/* Moving gradient on hover */
.section:hover {
    background-position: right center;
}

        .left {
            flex: 1;
            text-align: center;
        }

        .left h2 {
            font-family: 'Anton', sans-serif;
            font-size: 100px;
            color: #990000;
            margin: 0;
            line-height: 1.1;
			animation: fadeIn 1.5s ease-out forwards;
            animation-delay: 0.5s;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scaleY(0.8) translateY(30px);
            }
            100% {
                opacity: 1;
                transform: scaleY(0.8) translateY(0);
            }
        }

        .left img {
            max-height: 900px;
			transition: transform 0.4s ease;
        }

.left img:hover {
    transform: scale(1.05); /* Slight zoom-in on hover */
}

        .right {
            flex: 1;
            padding-left: 40px;
        }

        .right p {
            flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  text-align: justify;
        }

     .right button {
 margin-top: 20px;
    background-color: black;
    color: #d9b99b;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.right button:hover {
    background-color: maroon;
    color: white;
}






.blog-scroll-container {
	display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
    
    background-color: #fdfdfd; /* optional for better visibility */
    border-radius: 15px; /* slightly rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* ADD DROP SHADOW */
    transition: transform 0.5s ease, opacity 0.5s ease; /* prepare for animation */
    opacity: 0; /* start hidden */
    transform: translateY(30px); /* start slightly pushed down */
}

.blog-scroll-container.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-card {
    flex: 0 0 280px;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.blog-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.read-more-btn {
    background-color: black;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
	text-decoration: none;
}

.read-more-btn:hover {
    background-color: maroon;
}



.blog-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.blog-scroll-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}


.weapon-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
}

.weapon-card {
    flex: 0 0 200px; /* slightly wider cards */
    background-color: white;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: 'Poppins', sans-serif;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weapon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.weapon-card img {
    width: 140px; /* increased width */
    height: auto;
    margin-bottom: 15px;
}

.weapon-card p {
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

.weapon-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.weapon-scroll-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}











/* Testimonials Section */
#testimonials {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* When mouse hovers */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-heading {
  margin-bottom: 30px;
}

.stars {
  color: gold;
  font-size: 24px;
  margin-bottom: 10px;
}


/* Achievements Section */
#achievements {
  text-align: center;
  padding: 50px 20px;
}



.achievements-heading {
  font-family: 'Anton', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: #990000; /* deep red */
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
	
   /* Add fade-in effect */
  opacity: 0;
  animation: fadeInHeading 2s ease forwards;
  animation-delay: 1.9s; /* optional: delay before it starts fading */
}

/* Achievement Content Layout */
.achievement-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px; /* MORE GAP between achievement blocks */
}

/* Individual Achievement Item */
.achievement-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px; /* BIGGER GAP between image and text */
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Reverse the order for second row */
.achievement-item.reverse {
  flex-direction: row-reverse;
}

/* Images */
.achievement-item img {
 width: 420px; /* increased from 250px */
  height: auto;
}

/* Text Content */
.achievement-text {
  max-width: 450px;
  text-align: left;
}

.achievement-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #000000; /* Black when normal */
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px; /* Rounded corners like your image */
  transition: background-color 0.3s ease;
}

/* Hover effect: Deep Red */
.read-more-btn:hover {
  background-color: #8B0000; /* Dark Red (#8B0000) */
}

.read-more-btn {
  margin-bottom: 30px; /* extra margin under each button */
}






/* Instructors Section */
#instructors {
  background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
}

.instructors-hero {
  position: relative;
  background: url('instructors-hero-bg.jpg') center/cover no-repeat; /* Replace with your background image */
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructors-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

/* Instructors Content */
.instructors-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 80px 20px;
}

/* Each Instructor */
.instructor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 50px;
}

/* Reverse layout for second instructor */
.instructor-item.reverse {
  flex-direction: row-reverse;
}


@media (max-width: 768px) {
  .instructor-item {
    flex-direction: column !important;
    text-align: center;
  }
}


.instructor-item img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-item img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.instructor-text {
  max-width: 500px;
  text-align: left;
}

.instructor-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Contact Box */
.contact-box {
  display: inline-block;
  margin-top: 20px;
  background-color: #E4C6A0;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000;
  text-align: center;
  font-size: 16px;
}




/* Core Values Section */
.core-values {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 40px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px;
  width: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* When mouse hovers */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-family: 'Roboto', sans-serif; /* changed from Anton */
  font-size: 15px;
  margin-bottom: 15px;
  color: #d9b99b;
}



.card ul, .card p {
  font-size: 16px;
}



/* Tagline Section */
.tagline {
  background: url('testimonial.jpg') center center/cover no-repeat;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tagline h2 {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

#cursor {
  display: inline-block;
  animation: blink 0.7s steps(2, start) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}









.tagline {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  background-image: url('testimonial.jpg'); /* fixed path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.tagline h2 {
  font-size: 88px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 3px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); /* optional for better readability */
}




/* History */
.history {
  padding: 80px 40px;
}

.history h2 {
  font-family: 'Anton', sans-serif;
  font-size: 150px;
  color: #B10606;
  margin-bottom: 30px;
  letter-spacing: 6px;
  
  /* Add fade-in effect */
  opacity: 0;
  animation: fadeInHeading 2s ease forwards;
  animation-delay: 1.9s; /* optional: delay before it starts fading */
}

/* Keyframes for fade-in */
@keyframes fadeInHeading {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.history-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; /* space between image and text */
  padding: 40px 20px;
  flex-wrap: wrap; /* so it's responsive if needed */
}

.history-img img {
  width: 350px;
  /* border: 10px solid #B10606; */ /* remove or comment out this line */
  object-fit: cover;
}

.history-text {
  max-width: 600px;
  text-align: left; /* text inside paragraph left aligned */
}

.read-more {
  margin-top: 20px;
  background: black;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.read-more:hover {
  background: maroon;
  color: #d9b99b;
}

.extra-text {
  transition: opacity 0.4s ease;
}






.zigzag-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 0 5%;
}

.gallery-item {
  display: flex;
  width: 100%;
}

.gallery-item.left {
  justify-content: flex-start;
}

.gallery-item.right {
  justify-content: flex-end;
}

.gallery-item img {
  width: 600px;         /* Just a bit bigger */
  max-width: 90%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: translateY(-8px);
}

/* Responsive fix */
@media (max-width: 768px) {
  .gallery-item {
    justify-content: center !important;
  }

  .gallery-item img {
    width: 100%;
  }
}

/* Sections */
.gallery-section {
  padding: 80px 40px;
  text-align: center;
}

.gallery-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 100px;
  color: #b10606;
  margin-bottom: 50px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.gallery-grid img {
  width: 420px; /* increased from 250px */
  height: auto;
}

.gallery-grid img {
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-10px);
}

.scrollable-bar {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 15px 0;
  scrollbar-width: thin; /* for Firefox */
  scrollbar-color: #a10606 #f0f0f0; /* custom scrollbar color */
}

.scrollable-bar::-webkit-scrollbar {
  height: 8px;
}

.scrollable-bar::-webkit-scrollbar-thumb {
  background-color: #a10606;
  border-radius: 4px;
}

.scrollable-bar img {
  height: 300px;      /* was 150px – now bigger */
  width: auto;        /* keeps the original ratio */
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}









.location-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  margin: 30px auto;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  scroll-snap-type: x mandatory;
}

.location-card {
  min-width: 250px;
  flex-shrink: 0;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  scroll-snap-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  height: 120px; /* Optional: Set fixed height for consistent alignment */
}

.location-scroll-container::-webkit-scrollbar {
  display: none;
}
.location-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}








.form-box {
  max-width: 500px;
  margin: auto;
  margin-bottom: 60px; /* ðŸ‘ˆ Add this line */
  padding: 30px;
  border: 2px solid #948979;
  border-radius: 15px;
  background-color: #fdf6f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    .form-box h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    input[type="text"] {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    button[type="submit"] {
      width: 100%;
      padding: 12px;
      background-color: #948979;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button[type="submit"]:hover {
      background-color: #7c6e5a;
    }

    .form-message {
      text-align: center;
      margin-top: 15px;
      display: none;
    }

    .form-message.error {
      color: red;
    }

    .form-message.success {
      color: green;
    }

.form-message.payment {
  color: #444;
  background-color: #f0f0f0;
  padding: 10px;
  margin-top: 10px;
  border-left: 4px solid #007b5e;
  font-size: 0.95rem;
  border-radius: 4px;
}

select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}













.faq-wrapper {
  display: flex;
  justify-content: center;
  padding: 100px 20px 60px; /* ðŸ‘ˆ Top padding increased from 60px to 100px */
  background-color: #f5f5f5;
}

.faq-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.faq-box h3 {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-btn {
  padding: 10px 18px;
  border-radius: 999px; /* fully pill-shaped */
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-btn:hover {
  background-color: #eee;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  padding: 12px 18px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
}







.upcoming-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.upcoming-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: #a10606;
  margin-bottom: 30px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #a10606;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



        footer {
            background-color: #a60000;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        footer h2 {
            font-family: 'Anton', sans-serif;
            font-size: 75px;
            margin-bottom: 30px;
			letter-spacing: 6px;
			opacity: 0;
            animation: fadeIn 1.5s ease-out forwards;
            animation-delay: 2.5s;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scaleY(0.8) translateY(30px);
            }
            100% {
                opacity: 1;
                transform: scaleY(0.8) translateY(0);
            }
        
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 180px;
        }

        .footer-section h3 {
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 10px;
        }


        .footer-section ul {
            list-style: none;
            padding: 0;
            font-size: 16px;
        }

        .footer-section ul li {
            margin-bottom: 5px;
            color: #ffbaba;
        }
.footer-section ul li:hover {
            color: black;
        }

        .footer-logo {
            width: 260px;
            margin: 0 auto 10px;
        }

        .footer-contact p {
            margin: 3px 0;
            font-size: 14px;
        }

        .social-icons a {
            margin: 0 8px;
            display: inline-block;
        }

        .footer-quote {
            margin-top: 20px;
            font-size: 15px;
            color: #fbdede;
        }

footer a {
    color: #d9b99b;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

footer a:hover {
    color: #ffffff;
    text-decoration: none;
}