/* common.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-style: normal;
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf");
}

@font-face {
  font-style: normal;
  font-weight: 200;
  font-family: "RimouskiSb";
  src: url("fonts/RimouskiSb-Regular.woff")
      format("woff"),
    url("fonts/RimouskiSb-Regular.woff2")
      format("woff2");
}

html {
  scroll-behavior: smooth;
  scroll-padding: 100px;
}

body {
  margin-top: 100px;
  background-color: white;
  color: #502066;
  font-family: "Poppins";
  font-style: normal;
  user-select: none;
  text-align: center;
}

h1,
h2,
h3 {
  font-style: normal;
  font-weight: 200;
  font-family: "RimouskiSb";
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: white;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav a {
  text-decoration: none;
  color: #502066;
  font-weight: bold;
  font-size: 1.2em;
}

.header-logo {
  height: 90px;
  width: auto;
}

.menu-icon {
  display: none;
}


  nav {
    background: #fff;
    padding: 10px 20px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
  }

  .nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    position: relative;
    text-decoration: none;
    color: #502066;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #502066;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  /* .nav-links li a:hover {
    color: #007BFF;
  } */

  .nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-links li a.active {
    color: #502066;
    font-weight: 600;
  }
  
  .nav-links li a.active::after {
    background: #502066;
    transform: scaleX(1);
    transform-origin: left;
  }

  
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .nav-links.show {
    padding: 20px;
    display: flex;
  }
  header {
    padding: 0 20px 0 0;
  }
  .menu-icon {
    display: block;
    cursor: pointer;
    font-size: 24px;
  }
}

/* Hero Section Wrapper */
.about-section {
  background: linear-gradient(
    to left,
    rgba(84, 26, 89, 0.85),
    rgba(89, 43, 84, 0.95),
    rgba(65, 42, 78, 1)
  );
  color: white;
}

/* Hero Section Specific Styling */

/* Hero section */
#hero {
  color: white;
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(
      to right,
      rgba(110, 36, 116, 0.85),
      rgba(78, 37, 73, 0.9),
      rgba(55, 34, 67, 0.95)
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
}

.required-star {
  color: red;
}

.head-center-align {
  color: #db7932;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  font-size: 3em;

  /* font-style: normal;
  font-weight: 200;
  font-family: "RimouskiSb"; */
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text p {
  text-align: center;
  font-size: 1.5em;
  padding-bottom: 40px;
}

.hero-text .site-ref {
  color: #db7932;
}

.cta-button {
  align-items: center;
  display: inline-block;
  color: rgb(60, 24, 73);
  background-color: white;
  padding: 15px 30px;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(241, 241, 241, 0.5);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  border-radius: 12px; 
  padding-bottom: 40px; 
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
}

.container-bg-1 { background-color: #fffcf7; border-radius: 12px;} /* Light orange */
.container-bg-2 { background-color: #fdf9ff; border-radius: 12px;} /* Light lavender (purple tone) */
.container-bg-3 { background-color: #fff9f9; border-radius: 12px;} /* Off-white */
.container-bg-4 { background-color: #fcfcfc; border-radius: 12px;} /* Light gray (complement to black/white) */
.container-bg-5 { background-color: #fcfaff; border-radius: 12px;} /* Light pinkish purple */
.container-bg-6 { background-color: #fdfbf8; border-radius: 12px;} /* Light ivory (goes well with orange) */


.feature {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 10px;
}

.feature-video {
  padding: 50px 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.image-content {
  min-width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landscape-image-content {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.feature-content {
  min-width: 45%;
  padding: 0;
}

.arya-content {
  padding: 30px 0;
  min-width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arya-content video {
  width: 55%;
}

.feature-image {
  width: 50%;
  height: auto;
}

.feature-image-double {
  width: 100%;
  height: auto;
}

.scroll-arrow {
  position: fixed;
  font-size: 3rem;
  color: #e36509;
  cursor: pointer;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.scroll-arrow:hover {
  opacity: 1;
}

.up-arrow {
  padding-top: 70px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 1000;
}

.down-arrow {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 1000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
}

#modalVideo {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.site-footer {
  color: white;
  padding: 40px 0 20px;
  font-size: 1em;
  background: linear-gradient(
    to left,
    rgba(84, 26, 89, 0.85),
    rgba(89, 43, 84, 0.95),
    rgba(65, 42, 78, 1)
  );
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.footer-logo {
  width: 40%;
  height: auto;
}

.footer-section {
  padding: 20px;
}

.footer-left {
  width: 30%;
}
.footer-center {
  width: 30%;
  display: flex;
  justify-content: space-around;
}
.footer-right {
  width: 30%;
  display: flex;
  justify-content: space-around;
}

.footer-description p {
  font-size: 0.9em;
  line-height: 1.6;
}

.footer-social {
  margin-top: 20px;
}
.footer-social a {
  font-size: 1.2em;
  margin-right: 10px;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer-social a:hover {
  opacity: 1;
}

.footer-column h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: white;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom-links {
  text-align: center;
  padding-top: 10px;
}
.footer-copyright p {
  font-size: 1em;
}

.sticky-social-bar {
  position: fixed;
  top: 75%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #db7932;
  color: #ffffff;
  text-decoration: none;
  margin: 1px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.social-icon i {
  font-size: 24px;
}

.social-icon:hover,
.social-icon:focus {
  transform: scale(0.9);
}
.social-icon.facebook:hover,
.social-icon.facebook:focus {
  background-color: #3b5998;
}
.social-icon.linkedin:hover,
.social-icon.linkedin:focus {
  background-color: #0e76a8;
}
.social-icon.twitter:hover,
.social-icon.twitter:focus {
  background-color: #000000;
}
.social-icon.youtube:hover,
.social-icon.youtube:focus {
  background-color: #ff0000;
}
.social-icon.instagram:hover,
.social-icon.instagram:focus {
  background-color: #df1c5c;
}
.social-icon.up-arrow-icon:hover,
.social-icon.up-arrow-icon:focus {
  background-color: #502066;
}

.swiper-pagination-bullet {
  margin: 0 8px !important;  /* default is around 4px */
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev, .swiper-button-next {
  background: #db7932;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev i, .swiper-button-next i {
  color: white;
  font-size: 16px;
}
.swiper-slide {
  padding: 5px;
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none !important;
  }
  .sticky-social-bar {
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
    right: 20px;
  }
  .social-icon {
    width: 30px;
    height: 30px;
    margin: 0 3px;
  }
  .social-icon i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .scroll-arrow {
    display: none !important;
  }
  .sticky-social-bar {
    display: none;
  }
  #hero {
    padding: 50px 0;
  }
  .head-center-align {
    font-size: 2em;
  }
  .hero-text p {
    font-size: 1.2em;
  }
  .cta-button {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .feature-image {
    width: 80%;
    margin: 0 auto;
  }
  body {
    font-size: 14px;
  }
  .feature,
  .feature-video {
    flex-direction: column;
    padding: 30px 10px;
  }
  .feature-content,
  .image-content,
  .arya-content {
    width: 100%;
    min-width: 0;
  }
  .feature-image-double {
    width: 90%;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
  }
  .footer-center {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    margin-bottom: 20px;
  }
}
