* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

.main {
  height: 100vh;
  width: 100vw;
}

section {
  height: 71%;
  background-image: url(/image/download.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav {
  height: 12vh;
  width: 1300px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links > a,
.nav-links .dropdown > a {
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Dropdown - default hidden */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  flex-direction: column;
}

.dropdown-content a {
  padding: 0.5rem 1rem;
  color: black;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  border-radius: 0.25rem;
}

/* Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
}

/* Responsive Mobile View */
@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
    font-size: 2.5rem;
    margin-left: auto;
    color: black;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    padding: 1rem;
    width: 100%;
    border-radius: 0;
    background-color: white;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2b174d; /* match image bg */
    flex-direction: column;
    padding: 1rem 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropdown-header a {
    font-size: 1rem;
    color: white;
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid #56416d;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
  }

  .dropdown-toggle-btn {
    background: white;
    border: none;
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
  }

  .dropdown-content {
    position: static;
    display: none;
    background-color: #775ca7;
    padding-left: 2rem;
  }

  .dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content a {
    color: rgb(5, 5, 5);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-bottom: none;
  }

  /* img {
    max-width: 130px;
    height: auto;
  } */
}

/* Desktop Hover Dropdown */
@media (min-width: 1081px) {
  .dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
  }
}

.home {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  padding: 0 1rem;
  box-sizing: border-box;
}

.sub_home {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Left text + buttons */
.button_div {
  width: 50%;
  padding: 1rem;
  box-sizing: border-box;
}

.button_div h2 {
  color: #291549;
  font-size: 3rem;
  margin: 1rem 0;
  font-family: "Quicksand", sans-serif;
}

.button_div h3 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
  font-family: "Quicksand", sans-serif;
}

.button_div p {
  font-size: 1.3rem;
  font-weight: 100;
  margin-bottom: 1rem;
  font-family: "Quicksand", sans-serif;
}

.button_sec {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button_sec a {
  height: 54.8px;
  min-width: 160px;
  padding: 0 1rem;
  font-size: 1.1rem;
  background-color: #b69f33;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-family: "Quicksand", sans-serif;
  transition: all 0.3s ease;
}

.button_sec a:hover {
  background-color: #291549;
}

.button_sec .one {
  background-color: #291549;
}

.button_sec .one:hover {
  background-color: #b69f33;
}

/* Right banner slider */
.baner_div {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.slider_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 30px;
}

/* Dot navigation */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dots button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: white;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.dots button.active {
  opacity: 1;
  background-color: gold;
}

/* ========================
   RESPONSIVE BREAKPOINTS
===========================*/

/* Tablets */
@media (max-width: 1024px) {
  .button_div h2 {
    font-size: 2.5rem;
  }
  .button_div h3 {
    font-size: 1.5rem;
  }
  .button_div p {
    font-size: 1.1rem;
  }
  .button_sec a {
    min-width: 140px;
    font-size: 1rem;
  }
}

@media (max-width: 1080px) {
  .home {
    height: auto;
    margin-top: 40px;
    padding: 1rem;
  }

  .sub_home {
    flex-direction: column;
    width: 100%;
  }

  .button_div,
  .baner_div {
    width: 100%;
  }

  .button_div {
    text-align: center;
  }

  .button_div h2 {
    font-size: 2.2rem;
    margin-top: 1rem;
  }

  .button_div h3 {
    font-size: 1.5rem;
  }

  .button_div p {
    font-size: 1.1rem;
  }

  .button_sec {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .button_sec a,
  .button_sec .one {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
  }

  .baner_div {
    /* background-color: red; */
    height: 220px;
    width: 50%;
    margin-top: 1rem;
    /* border-radius: 20px; */
  }

  .slider {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
  }

  .slider img {
    height: 100%;
    width: 100%;
  }

  .dots {
    bottom: 10px;
    gap: 8px;
  }

  .dots button {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .home {
    padding: 0.5rem;
  }

  .sub_home {
    flex-direction: column;
    gap: 1rem;
  }

  .button_div,
  .baner_div {
    width: 100%;
    padding: 0;
  }

  .button_div h2 {
    font-size: 1.8rem;
  }

  .button_div h3 {
    font-size: 1.2rem;
  }

  .button_div p {
    font-size: 1rem;
  }

  .button_sec {
    flex-direction: column;
    align-items: center;
  }

  .button_sec a,
  .button_sec .one {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .baner_div {
    height: 200px;
    width: 100%;
    border-radius: 16px;
  }

  .slider img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
  }

  .dots {
    bottom: 10px;
    gap: 6px;
  }

  .dots button {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 375px) {
  .baner_div {
    display: none;
  }
}

.About_sec {
  height: 70vh;
  width: 100vw;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.About_sub {
  height: 100%;
  width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.abu_photo {
  height: 100%;
  width: 50%;
  /* background-color: green; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.abu_photo img {
  height: 80%;
  width: 100%;
  /* object-fit: cover; */
}

.abu_fiss {
  height: 100%;
  width: 50%;
}

.abu_fiss h2 {
  color: #291549;
  margin-top: 130px;
  font-family: "Quicksand", sans-serif;
  font-size: 3rem;
}

.abu_fiss p {
  margin-top: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  font-weight: 100;
  line-height: 1.7rem;
}

.abu_fiss h4 {
  margin-top: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: gray;
}

.abu_fiss a {
  height: 54.8px;
  width: 180px;
  font-size: 1.2rem;
  background-color: #b69f33;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: white;
  font-family: "Quicksand", sans-serif;
  border-radius: 40px;
  margin-top: 20px;
}

.abu_fiss a:hover {
  background-color: #291549;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

@media (max-width: 768px) {
  .About_sec {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }

  .About_sub {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .abu_photo,
  .abu_fiss {
    width: 100%;
  }

  .abu_photo img {
    width: 100%;
    height: auto;
  }

  .abu_fiss h2 {
    font-size: 2rem;
    margin-top: 0;
    text-align: center;
  }

  .abu_fiss p {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
  }

  .abu_fiss h4 {
    font-size: 1rem;
    text-align: center;
  }

  .abu_fiss a {
    margin: 20px auto 0;
  }

  .success_sec h2 {
    font-size: 2rem;
    text-align: center;
  }

  .peragraf_div p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .swip_button {
    width: 100%;
    gap: 20px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    left: 20px;
    right: 20px;
  }
}

.success_sec {
  width: 100%;
  background-color: #fffae1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 1rem;
  box-sizing: border-box;
}

.success_sec h2 {
  font-size: 3rem;
  color: #291549;
  text-align: center;
  font-family: "Quicksand", sans-serif;
}

.peragraf_div {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 0 1rem;
  box-sizing: border-box;
}

.peragraf_div p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8rem;
  font-family: "Quicksand", sans-serif;
}

/* Swiper styles */
.mySwiper {
  width: 100%;
  max-width: 1300px;
  padding: 30px 1rem 70px;
  position: relative;
  margin-top: 50px;
  box-sizing: border-box;
}

.mySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper .swiper-slide img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Arrows at the bottom */
.swiper-button-prev,
.swiper-button-next {
  bottom: 10px;
  top: auto;
  width: 40px;
  height: 40px;
  background-color: #b69f33;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10;
}

.swiper-button-prev {
  left: 20%;
}

.swiper-button-next {
  right: 20%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

/* Button section */
.swip_button {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 1rem;
}

.swip_button a {
  width: 50px;
  height: 50px;
  background-color: #291549;
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.swip_button a:hover {
  background-color: #b69f33;
  color: #fff;
}

/* ============================
   Responsive Breakpoints
============================ */

/* Tablets */
@media (max-width: 1024px) {
  .success_sec h2 {
    font-size: 2.5rem;
  }

  .mySwiper .swiper-slide img {
    width: 160px;
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .success_sec h2 {
    font-size: 2.2rem;
  }

  .peragraf_div p {
    font-size: 1rem;
  }

  .swiper-button-prev {
    left: 10%;
  }

  .swiper-button-next {
    right: 10%;
  }

  .mySwiper .swiper-slide img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .success_sec {
    padding: 40px 1rem;
  }

  .success_sec h2 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2rem;
  }

  .peragraf_div p {
    font-size: 0.95rem;
    line-height: 1.6rem;
    text-align: center;
  }

  .mySwiper {
    width: 100%;
    padding-bottom: 60px; /* space for arrows */
    overflow: hidden;
  }

  .swiper-wrapper {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mySwiper .swiper-slide img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
    bottom: 5px;
    top: auto;
    background-color: #b69f33;
    color: white;
    border-radius: 50%;
    font-size: 14px;
  }

  .swiper-button-prev {
    left: 15%;
  }

  .swiper-button-next {
    right: 15%;
  }
}

/* Container */
.login_sec {
  height: 80vh;
  width: 100vw;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  font-family: "Quicksand", sans-serif;
}

/* Form Box */
.form {
  height: 60vh;
  width: 576px;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

/* Header */
.form h1 {
  color: #2d174d;
  font-size: 3em;
  /* text-align: center; */
  font-family: "Quicksand", sans-serif;
  margin-bottom: 30px;
}

/* Input Field with Icon */
.input-icon {
  height: 8vh;
  position: relative;
  margin-bottom: 50px;
}

.input-icon input {
  width: 100%;
  height: 100%;
  padding: 14px 45px 14px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1.2em;
}

.input-icon span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

/* Prevent default pointer-events EXCEPT togglePassword */
.input-icon span:not(#togglePassword) {
  pointer-events: none;
}

#togglePassword {
  cursor: pointer;
  pointer-events: auto;
}

/* Login Button */
.login-button {
  width: 100%;
  height: 8vh;
  padding: 14px;
  background-color: #b59c37;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.login-button:hover {
  background-color: #a28a2f;
}

/* Bottom Links */
.bottom-links {
  text-align: center;
  margin-top: 40px;
  font-size: 1.5em;
  color: #666;
}

.bottom-links a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

.bottom-links a:hover {
  text-decoration: underline;
}

.four_img_div {
  height: 60vh;
  width: 768px;
  background-color: #291549;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* spacing between images */
  justify-content: center;
}

.img1,
.img2,
.img3,
.img4 {
  height: 230px;
  width: 335px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img1 img,
.img2 img,
.img3 img,
.img4 img {
  width: 100%;
  height: 95%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect: scale the image inside the box */
.img1:hover img,
.img2:hover img,
.img3:hover img,
.img4:hover img {
  transform: scale(1.05);
}

@media (max-width: 2600px){
  .four_img_div{
    height: 70%;
    /* background-color: red; */
  }
}

/* Medium screens (tablets & small laptops) */
@media (max-width: 1024px) {
  .login_sec {
    flex-wrap: wrap;
    height: auto;
    padding: 20px;
    gap: 30px;
  }

  .form,
  .four_img_div {
    width: 90%;
    height: auto;
  }

  .form h1 {
    font-size: 2.2em;
  }

  .bottom-links {
    font-size: 1.2em;
  }

  .img1,
  .img2,
  .img3,
  .img4 {
    width: 45%;
    height: 180px;
  }
}

/* Small screens (phones like iPhone SE) */
@media (max-width: 480px) {
  .login_sec {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 20px 10px;
  }

  .form {
    width: 100%;
    padding: 25px 20px;
    height: auto;
  }

  .form h1 {
    font-size: 1.8em;
  }

  .input-icon {
    height: auto;
    margin-bottom: 30px;
  }

  .input-icon input {
    font-size: 1em;
    padding: 12px 40px 12px 14px;
  }

  .login-button {
    height: auto;
    padding: 12px;
    font-size: 1.2em;
  }

  .bottom-links {
    font-size: 1em;
    margin-top: 20px;
  }

  .four_img_div {
    width: 100%;
    padding: 20px 10px;
    height: auto;
    border-radius: 20px;
  }

  .img_container {
    gap: 15px;
  }

  .img1,
  .img2,
  .img3,
  .img4 {
    width: 100%;
    height: 150px;
  }
}

/* Responsive image container layout from 1px to 1300px */
@media (max-width: 1300px) {
  .four_img_div {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .img_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .img1,
  .img2,
  .img3,
  .img4 {
    width: 48%; /* 2 images per row on tablets */
    height: 180px;
  }

  .img1 img,
  .img2 img,
  .img3 img,
  .img4 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Smaller screens: 1 image per row */
@media (max-width: 600px) {
  .img1,
  .img2,
  .img3,
  .img4 {
    width: 100%; /* Full width */
    height: 100%;
  }
}

.Activities_sec {
  height: 100vh;
  width: 100vw;
  background-color: #fefae2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.Activities_sec h2 {
  font-size: 3rem;
  color: #291549;
  font-family: "Quicksand", sans-serif;
}

.act_peragraf {
  max-width: 600px;
  text-align: center;
  margin-top: 20px;
}

.act_peragraf p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8rem;
  font-family: "Quicksand", sans-serif;
}

.Activities_sub_div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 1300px;
  margin-top: 40px;
}

.sub_div_one {
  height: 630px;
  width: 410px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sub_div_one img {
  height: 280px;
  width: 380px;
  object-fit: cover;
}
.sub_div_one h3 {
  color: #291549;
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  margin-top: 20px;
}
.sub_div_one p {
  color: rgba(128, 128, 128, 0.673);
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "Quicksand", sans-serif;
}

.sub_div_two {
  height: 630px;
  width: 410px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sub_div_two img {
  height: 280px;
  width: 380px;
  object-fit: cover;
}
.sub_div_two h3 {
  color: #291549;
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  margin-top: 20px;
}
.sub_div_two p {
  color: rgba(128, 128, 128, 0.673);
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "Quicksand", sans-serif;
}

.sub_div_three {
  height: 630px;
  width: 410px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sub_div_three img {
  height: 280px;
  width: 380px;
  object-fit: cover;
}
.sub_div_three h3 {
  color: #291549;
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  margin-top: 20px;
}
.sub_div_three p {
  color: rgba(128, 128, 128, 0.673);
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "Quicksand", sans-serif;
}

/* Tablet: stack in two columns */
@media (max-width: 1024px) {
  .Activities_sub_div {
    flex-wrap: wrap;
    width: 90%;
    gap: 20px;
  }

  .sub_div_one,
  .sub_div_two,
  .sub_div_three {
    width: 45%;
    height: auto;
  }

  .sub_div_one img,
  .sub_div_two img,
  .sub_div_three img {
    width: 100%;
    height: auto;
  }
}

/* Mobile: stack in one column */
@media (max-width: 600px) {
  .Activities_sec {
    height: auto;
    padding: 40px 20px;
  }

  .Activities_sec h2 {
    font-size: 2rem;
    text-align: center;
  }

  .act_peragraf p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .Activities_sub_div {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .sub_div_one,
  .sub_div_two,
  .sub_div_three {
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }

  .sub_div_one img,
  .sub_div_two img,
  .sub_div_three img {
    width: 100%;
    height: auto;
  }

  .sub_div_one p,
  .sub_div_two p,
  .sub_div_three p {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.Events_sec {
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_event {
  height: 40vh;
  /* background-color: red; */
  width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.SpiceMeet {
  height: 40vh;
  /* background-color: rgb(157, 65, 65); */
  width: 50%;
}

.SpiceMeet h2 {
  color: #291549;
  font-size: 3rem;
  font-family: "Quicksand", sans-serif;
  margin-left: 20px;
}
.SpiceMeet h6 {
  margin-top: 20px;
  color: #000000;
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif;
  margin-left: 20px;
}
.SpiceMeet p {
  margin-top: 20px;
  color: gray;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 2rem;
}

/* Outer container */
.trip {
  height: 35vh;
  background-color: rgb(181, 181, 181);
  width: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
}

.img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.before {
  z-index: 1;
  filter: grayscale(100%);
}

.after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  border-left: 2px solid #333;
  border-right: 2px solid #333;
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle:hover {
  background-color: #ccc;
}

.slider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
}

.slider-icon i {
  font-size: 3rem;
  color: rgb(255, 255, 255);
  background-color: black;
  border-radius: 10px;
}

/* Tablet: Stack or reduce sizes */
@media (max-width: 1024px) {
  .Events_sec {
    height: auto;
    padding: 40px 20px;
  }

  .sub_event {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .SpiceMeet,
  .trip {
    width: 90%;
    height: auto;
  }

  .SpiceMeet h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-left: 0;
  }

  .SpiceMeet h6,
  .SpiceMeet p {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .SpiceMeet h6 {
    font-size: 1.2rem;
  }

  .SpiceMeet p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .trip {
    height: 300px;
  }
}

/* Mobile: Stack and scale down further */
@media (max-width: 600px) {
  .SpiceMeet h2 {
    font-size: 1.8rem;
  }

  .SpiceMeet h6 {
    font-size: 1rem;
  }

  .SpiceMeet p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .slider-icon i {
    font-size: 2.2rem;
  }

  .trip {
    height: 250px;
  }

  .slider-handle {
    width: 3px;
  }
}

/* Base styles remain unchanged where possible */
.News_sec {
  width: 100%;
  background-color: #fffae1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  font-family: "Quicksand", sans-serif;
}

.news_sub {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.title_div {
  width: 100%;
  max-width: 65%;
}

.title_div h1 {
  color: #2f1854;
  font-size: 2.5rem;
}

.title_div p {
  color: #291549;
  font-size: 1.3rem;
}

.news_button {
  width: 100%;
  max-width: 35%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 1rem;
}

.news_button a {
  height: 54px;
  padding: 0 1.5rem;
  font-size: 1.1rem;
  background-color: #b69f33;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}

.news_button a:hover {
  background-color: #291549;
}

.sub_news-img {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.sub-img_content-one,
.sub-img_content-two,
.sub-img_content-three {
  width: 100%;
  max-width: 420px;
  background-color: white;
  display: flex;
  flex-direction: column;
}

.sub-img_content-one img,
.sub-img_content-two img,
.sub-img_content-three img {
  width: 100%;
  height: auto;
}

.sub-img_content-one p,
.sub-img_content-two p,
.sub-img_content-three p {
  font-size: 1.2rem;
  margin: 1rem;
}

.sub-img_content-one a,
.sub-img_content-two a,
.sub-img_content-three a {
  margin: 0 1rem 1rem;
  font-size: 1rem;
  color: gray;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .news_sub {
    flex-direction: column;
    align-items: flex-start;
  }

  .title_div,
  .news_button {
    max-width: 100%;
  }

  .news_button {
    justify-content: center;
    margin-top: 1rem;
  }

  .title_div h1 {
    font-size: 2rem;
  }

  .title_div p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .sub_news-img {
    flex-direction: column;
    align-items: center;
  }

  .sub-img_content-one,
  .sub-img_content-two,
  .sub-img_content-three {
    max-width: 90%;
  }

  .title_div h1 {
    font-size: 1.8rem;
  }

  .title_div p,
  .sub-img_content-one p,
  .sub-img_content-two p,
  .sub-img_content-three p {
    font-size: 1rem;
  }

  .news_button a {
    width: 150px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .title_div h1 {
    font-size: 1.5rem;
  }

  .title_div p {
    font-size: 0.95rem;
  }

  .news_button a {
    width: 140px;
    font-size: 0.95rem;
  }

  .sub-img_content-one p,
  .sub-img_content-two p,
  .sub-img_content-three p {
    font-size: 0.95rem;
  }

  .sub-img_content-one a,
  .sub-img_content-two a,
  .sub-img_content-three a {
    font-size: 0.95rem;
  }
}

.Growth_sec {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  font-family: "Quicksand", sans-serif;
}

.growth_sub {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.growth_img {
  width: 100%;
  max-width: 50%;
}

.growth_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.growth_content {
  width: 100%;
  max-width: 50%;
  padding: 1rem 2rem;
}

.growth_content h2 {
  color: #291549;
  font-size: 2.5rem;
  margin-top: 1rem;
}

.growth_content h6 {
  color: #000;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.growth_content p {
  color: #000;
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.8rem;
}

.growth_content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 160px;
  background-color: #b69f33;
  color: white;
  font-size: 1rem;
  border-radius: 40px;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.growth_content a:hover {
  background-color: #291549;
}

/* ------------------- RESPONSIVE BREAKPOINTS ------------------- */
@media (max-width: 992px) {
  .growth_sub {
    flex-direction: column;
  }

  .growth_img,
  .growth_content {
    max-width: 100%;
  }

  .growth_content {
    padding: 1rem;
  }

  .growth_content h2 {
    font-size: 2rem;
  }

  .growth_content h6 {
    font-size: 1.2rem;
  }

  .growth_content p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .growth_content a {
    width: 150px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .growth_content h2 {
    font-size: 1.7rem;
  }

  .growth_content h6 {
    font-size: 1.1rem;
  }

  .growth_content p {
    font-size: 0.95rem;
  }

  .growth_content a {
    width: 140px;
    font-size: 0.9rem;
    height: 44px;
  }
}

.footer {
  height: 60vh;
  width: 100vw;
  background-color: #291549;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub_footer {
  height: 100%;
  width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer_con-one {
  height: 80%;
  width: 30%;
}

.footer_con-one img {
  margin-top: 30px;
}

.footer_con-one p {
  margin-top: 30px;
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: white;
  font-family: "Quicksand", sans-serif;
}

.media {
  margin-top: 40px;
  height: 5vh;
  display: flex;
  align-items: center;
  gap: 15px;
}

.media a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.footer_con-two {
  height: 80%;
  width: 30%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.footer_con-two h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Quicksand", sans-serif;
}

.footer_con-two a {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
}

.footer_con-three {
  height: 80%;
  width: 30%;
}

.footer_con-three h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Quicksand", sans-serif;
}

/* Contact Sections */
.add_div_one,
.add_div_two,
.add_div_three,
.add_div_four {
  margin-bottom: 15px;
}

.add_div_one i,
.add_div_two i,
.add_div_three i,
.add_div_four i {
  font-size: 1.5rem;
  color: white;
}

.add_div_one a,
.add_div_two a,
.add_div_three a,
.add_div_four a {
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.add_sub_div {
  margin-left: 40px;
  margin-right: 40px;
}

.add_sub_div p {
  font-size: 1.2rem;
  color: white;
  margin-top: 5px;
  font-family: "Quicksand", sans-serif;
}

.add_sub_div p a {
  font-size: 1.3rem;
  color: white;
  text-decoration: underline;
}

/* Footer Responsive Styles */
@media (max-width: 1300px) {
  .sub_footer {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .sub_footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 2rem 1rem;
    height: auto;
  }

  .footer {
    height: auto;
    padding: 2rem 0;
  }

  .footer_con-one,
  .footer_con-two,
  .footer_con-three {
    width: 100%;
  }

  .footer_con-one img {
    width: 160px;
  }

  .footer_con-one p,
  .footer_con-two a,
  .footer_con-two h3,
  .footer_con-three h3,
  .add_sub_div p,
  .add_div_one a,
  .add_div_two a,
  .add_div_three a,
  .add_div_four a {
    font-size: 1.1rem;
  }

  .media a {
    font-size: 1.5rem;
  }

  .add_sub_div {
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer_con-three {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer_con-three a {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .add_sub_div p {
    margin-top: 5px;
  }
}

@media (max-width: 576px) {
  .footer_con-one p,
  .footer_con-two a,
  .footer_con-two h3,
  .footer_con-three h3,
  .add_sub_div p,
  .add_div_one a,
  .add_div_two a,
  .add_div_three a,
  .add_div_four a {
    font-size: 1rem;
  }

  .add_sub_div {
    margin-left: 10px;
    margin-right: 10px;
  }

  .media {
    gap: 10px;
  }

  .media a {
    font-size: 1.3rem;
  }

  .footer_con-one img {
    width: 140px;
  }

  .add_sub_div p a {
    font-size: 1rem;
  }
}

.copy {
  background-color: #291549;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  height: auto;
  padding: 1rem 0.5rem;
  text-align: center;
  flex-wrap: wrap;
  line-height: 1.5;
}

/* Medium devices (tablets, 768px - 992px) */
@media (max-width: 992px) {
  .copy {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
}

/* Small devices (phones, < 768px) */
@media (max-width: 768px) {
  .copy {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}

/* Extra small phones (iPhone SE, 375px and down) */
@media (max-width: 480px) {
  .copy {
    font-size: 0.9rem;
    padding: 0.6rem 0.5rem;
  }
}
