
  .contact-info {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap; /* Allows items to wrap on small screens */
        }
        .contact-info p {
            display: flex;
            align-items: center;
            margin: 0;
            gap: 8px;
        }

        /* Media Query for Small Screens */
        @media (max-width: 600px) {
            .contact-info {
                flex-direction: column; /* Stack items vertically */
                align-items: flex-start; /* Align items to the start */
            }
            .contact-info p {
                width: 100%; /* Make each item take full width */
            }
        }

        body {
            font-family: Arial, sans-serif;
            color: #333;
        }

        /* Hero Section */
        .hero-section {
            background-color: #fff;
            padding: 30px 0;
            text-align: center;
        }
        .hero-section h1 {
            color: #000;
            font-size: 2.5em;
            font-weight: bold;
        }
        .hero-section p {
            font-size: 1.2em;
            color: #666;
        }
        .btn-primary {
            background-color: #e89c2a;
            border: none;
        }

        /* Artistic Categories Section */
        .categories-section {
            background-color: #e89c2a;
            padding: 60px 0;
            color: #fff;
            text-align: center;
        }
        .categories-section h2 {
            font-size: 2em;
            font-weight: bold;
        }
        .category-card {
            background-color: #fff;
            color: #333;
            padding: 2px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* About Section */
        .about-section {
            padding: 10px 0;
        }
        .about-section h2 {
            font-size: 2em;
            font-weight: bold;
            color: #000;
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: #000;
            padding: 60px 0;
            color: #fff;
            text-align: center;
        }
        .testimonials-section h2 {
            font-size: 2em;
            font-weight: bold;
        }

        /* Events Section */
        .events-section {
            padding: 60px 0;
            text-align: center;
        }
        .events-section h2 {
            font-size: 2em;
            font-weight: bold;
            color: #000;
        }

        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
        }
        .faq-section h2 {
            font-size: 2em;
            font-weight: bold;
            color: #000;
            text-align: center;
            margin-bottom: 30px;
        }

        /* Contact Section */
        .contact-section {
            background-color: #fff;
            padding: 60px 0;
        }
        .contact-section h2 {
            font-size: 3em;
            font-weight: bold;
            color: #000;
            text-align: center;
            margin-bottom: 30px;
        }
        .footer {
            background-color: #4f31cc;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        .img-fluid{
            border-radius: 15px;
        }


        .testimonials-section .carousel-inner {
    height: 250px; /* Set a fixed height for a rectangular shape */
    border-radius: 0; /* Make the box rectangular */
}




.testimonial-section {
  color: #fff;
}

.testimonial-box {
  background-color: #f8f9fa;
  color: #333;
  position: relative;
  padding-bottom: 50px; /* Space for controls */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #333;
  border-radius: 50%;
  padding: 10px;
}

/* Positioning carousel controls at the right bottom */
.custom-carousel-control {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}

.custom-carousel-control.carousel-control-prev {
  right: 60px;
}
.text-muted {
  font-size: 1rem;
}

.form-control {
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.9rem;
  margin: 0;
}

.btn-outline-dark {
  margin-bottom: 20px;
}

.accordion .card-header {
  background-color: #f8f9fa;
  border: none;
}

.accordion .btn-link {
  text-decoration: none;
  color: #333;
}

.accordion .btn-link:hover {
  color: #000;
}

.accordion .card-body {
  font-size: 0.9rem;
}

img {
  border-radius: 8px;
}

.contact-section {
  display: flex;
}

.contact-section {
  background: linear-gradient(to right, white 70%, #e89c2a   30%);
  padding: 40px 0;
}

.contact-section .container {
  position: relative;
}

.contact-section .col-md-6 {
  position: relative;
  z-index: 1;
}

.contact-section .col-md-6:first-child {
  background: transparent;
  padding: 40px;
}

.contact-section .col-md-6:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}


    
  /* Header Style */
.navbar {
  padding: 11px 0; /* Adjust padding */
  background-color: rgba(255, 255, 255, 0.9); /* Slight transparency */
  z-index: 9999; /* Make sure navbar is above other content */
}

.navbar a {
  font-size: 1rem; /* Increase font size for readability */
  color: #333; /* Dark color for text */
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Add margin to navbar items for spacing */
.navbar-nav .nav-item {
  margin-right: 15px; /* Adds space between menu items */
}

.navbar a:hover {
  color: #e89c2a; /* Change color on hover */
  transform: scale(1.1); /* Slight scale effect for hover */
}

/* Navbar links hover effect */
.navbar-nav .nav-item:hover .nav-link {
  color: #e89c2a; /* Blue color on hover */
}

/* Navbar toggler */
.navbar-toggler {
  border-color: #0d6efd; /* Custom border color for the hamburger icon */
}



/* Navbar links active state */
.navbar-nav .nav-item.active .nav-link {
  color: #e89c2a; /* Highlight active link */
}

/* Navbar collapse behavior on mobile */
@media (max-width: 768px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 15px; /* Space between links on mobile */
  }

  /* Hide search box on mobile */
  .form-inline {
    display: none;
  }
}

/* Navbar search box - Hide on mobile */
.form-inline input {
  width: 200px;
  border-radius: 20px;
  padding: 8px 10px;
  border: 1px solid #ccc;
}

/* Icon styling */
.nav-link i {
  margin-right: 5px;
}

/* Dropdown menu styling */
.dropdown-menu {
  min-width: 200px; /* Adjust width of the dropdown */
}


 

  .categories {
      max-width: 1200px;
      margin: 20px auto;
      text-align: center;
  }

  .categories h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #333;
  }

  .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 20px;
  }

  .grid-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .grid-item .text-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 1.2rem;
  }

  .grid-item .text-overlay h3 {
      font-size: 1.5rem;
      margin: 0;
  }

  .explore-btn {
      display: inline-block;
      margin: 20px 0;
      padding: 10px 20px;
      font-size: 1rem;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
  }

  .explore-btn:hover {
      background-color: #0056b3;
  }

  .top-performers-section h5 {
    font-size: 1.2rem;
  }

  .top-performers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .top-performers-section .card {
    border: none;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  .top-performers-section .card-img-top {
    border-radius: 8px;
  }

  .top-performers-section .card-body h6 {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .top-performers-section .card-title {
    font-size: 1.2rem;
    font-weight: bold;
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 992px) {
    .top-performers-section .row {
      display: flex;
      flex-direction: column; /* Stack the cards vertically on tablet screens */
    }

    .top-performers-section .card-img-left {
      width: 100%; /* Make image span full width on tablet screens */
      margin-right: 0; /* Remove margin-right */
      margin-bottom: 15px; /* Add space between image and content */
    }

    .top-performers-section .card-body {
      padding: 10px; /* Add padding for better spacing */
    }

    .top-performers-section h5 {
      font-size: 1rem; /* Adjust heading font size for tablet screens */
    }

    .top-performers-section .card-title {
      font-size: 1.2rem; /* Adjust title font size for tablet screens */
    }
  }

  @media (max-width: 768px) {
    .top-performers-section .row {
      flex-direction: column; /* Stack the cards vertically on smaller screens */
    }

    .top-performers-section .card-img-left {
      width: 100%; /* Make image span full width on small screens */
      margin-right: 0; /* Remove margin-right */
      margin-bottom: 15px; /* Add space between image and content */
    }

    .top-performers-section .card-body {
      padding: 10px; /* Add padding for small screens */
    }

    .top-performers-section h5 {
      font-size: 1rem; /* Adjust heading font size for small screens */
    }

    .top-performers-section .card-title {
      font-size: 1rem; /* Adjust title font size for small screens */
    }
  }

  @media (max-width: 576px) {
    .top-performers-section .card-title {
      font-size: 1rem; /* Further reduce title font size on extra small screens */
    }

    .top-performers-section .card-body h6 {
      font-size: 0.8rem; /* Adjust subtitle font size */
    }
  }

.testimonial-box {
  width: 80%; /* Adjusting width */
  margin: 0 auto; /* Centering the box */
}

.quote-icon {
  text-align: center;
  margin-bottom: 10px; /* Adjust space between icon and quote */
}

.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.custom-carousel-control {
  color: #0d6efd;
  font-size: 24px;
}

@media (max-width: 768px) {
  .testimonial-box {
    width: 90%; /* For smaller screens, reduce width further */
  }
}

#accordion_slider {
    padding: 50px 0;
    background: #f9f9f9;
}

.accordion-group {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    min-height: 600px; /* Fixed height for the accordion slider */
    flex-wrap: wrap; /* Ensures items wrap on smaller screens */
}

.accordion-group li {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    min-height: 100%; /* Ensures each slide matches the parent height */
}

.accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.accordion-group h3 {
    position: relative;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
    padding: 20px;
}

.accordion-group li section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2;
}

.accordion-group li:hover {
    flex: 3;
}

.accordion-group li:hover section {
    transform: translateY(0);
}

.accordion-group li article h4 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #333;
}

.accordion-group li article p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .accordion-group {
        gap: 10px; /* Reduce the gap between the slides */
    }

    .accordion-group li {
        flex: 0 0 100%; /* Full width on mobile and tablet */
        min-height: 400px; /* Reduce height for smaller screens */
    }

    .accordion-group li h3 {
        font-size: 1.2rem; /* Slightly smaller text for mobile */
    }

    .accordion-group li article h4 {
        font-size: 1.1rem; /* Adjust heading size */
    }

    .accordion-group li article p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }
}

@media screen and (max-width: 480px) {
    .accordion-group {
        gap: 5px; /* Even smaller gap for very small screens */
    }

    .accordion-group li {
        flex: 0 0 100%; /* Full width on mobile */
        min-height: 350px; /* Further reduce height */
    }

    .accordion-group li h3 {
        font-size: 1.1rem; /* Further reduce font size */
    }

    .accordion-group li article h4 {
        font-size: 1rem; /* Adjust heading size */
    }

    .accordion-group li article p {
        font-size: 0.85rem; /* Adjust paragraph size */
    }
}


.faq-section {
    background-color: #f2f2f2;  /* Grey background */
    padding: 30px 20px 20px; /* Increased padding top */
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.accordion {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    background-color: #e0e0e0;
    text-align: left;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #d3d3d3;
}

.accordion-body {
    padding: 15px;
    background-color: #fff;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item hr {
    border: 1px solid #ccc;
    margin: 0;
    width: 100%;
}

.accordion-icon {
  color: #e89c2a;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 20px;
    }

    .accordion-header {
        font-size: 16px;
        padding: 12px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 10px;
    }
}

 .faq-contact {
  background-color: #f2f2f2; /* Light grey background for the section */
  padding: 30px 20px;
}

.faq-contact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-contact-box {
  background-color: #ffffff; /* White background box */
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.faq-contact-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.faq-contact-box p {
  font-size: 16px;
  color: #555;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.circle-image {
  width: 60px; /* Size of the circle */
  height: 60px; /* Size of the circle */
  border-radius: 50%; /* Make the image circular */
  object-fit: cover; /* Ensure the image fits inside the circle */
}



  .custom-input {
      width: 100%; /* Increase the width of inputs */
      margin-bottom: 10px !important; /* Reduce the bottom margin */
  }
  .form-group {
      margin-bottom: 10px; /* Further control over bottom margin */
  }

  .day-box {
    color: black;
    background: white;
      border: 1px solid #ccc;
      padding: 10px;
      border-radius: 19px;
      display: flex;
      align-items: center;
      width: 160px;
  }
  .form-check-input {
      margin-right: 8px; /* Adds space between the checkbox and label */
  }

  .form-check .form-check-input {
  float: left;
  margin-left: -0.1em;
}

.form-check-label {
  margin-left: 21px;
  margin-bottom: -4px;
}

  .ftco-footer-social {
display: flex;
justify-content: left;
gap: 20px; /* Space between icons */
list-style: none;
padding: 0;
}

.ftco-footer-social li {
display: inline-block;
}

.ftco-footer-social a {
display: inline-block;
width: 35px; /* Size of the circle */
height: 35px; /* Size of the circle */
background-color: #f2f2f2; /* Light grey background */
border-radius: 50%; /* Circle shape */
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s, transform 0.3s;
}

.ftco-footer-social a:hover {
background-color: #e89c2a; /* Hover background color */
transform: scale(1.1); /* Slightly enlarge on hover */
}

.ftco-footer-social a span {
font-size: 18px; /* Icon size */
color: #333; /* Icon color */
transition: color 0.3s;
}

.ftco-footer-social a:hover span {
color: #fff; /* Icon color on hover */
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
  display: flex
;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-around;
}




/* Add this to your CSS */
.logo-animation {
  animation: zoomAnimation 9.5s infinite;
  height: 100px;
  width: 100px;
}

@keyframes zoomAnimation {
  0% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.8); /* Zoom in */
  }
  100% {
    transform: scale(1); /* Original size */
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .logo-animation {
    height: 45px !important;
    width: 45px !important;
  }
}

/* Ensuring the logo size remains consistent */
.logo-animation {
  height: 70px;
  width: 70px;
}




.testimonial-section {
  background-color: #2e2e2e;
  color: #fff;
}

.testimonial-card {
  background-color: #fff;
  color: #333;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-card img {
  height: 50px;
  width: 50px;
}
.row-wrapper {
  border-bottom: 1px solid grey; /* Horizontal line below cards */
  position: relative;
}

.vertical-line {
  position: absolute;
  height: 90%;
  width: 1px; /* Thin line, similar to HR */
  background: #e89c2a; /* Match horizontal line color */
}

/* Remove Lines on Mobile and Tablet */
@media (max-width: 768px) {
  .row-wrapper {
    border-bottom: none; /* Remove horizontal line on mobile/tablet */
  }
  .vertical-line {
    display: none; /* Remove vertical lines on mobile/tablet */
  }
}