/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Joti+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=============== VARIABLES CSS ===============*/


/* Responsive typography */
@media screen and (min-width: 992px) {}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 3.5rem 0 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: .938rem;
  background: #0B2962;
  color: #FFFFFF;
}

h1,h2,h3,h4 {
  font-family: 'Joti One', serif;
  color: #FFFFFF;
  font-weight: 600;
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}

button,
input{
  border: none;
  outline: none;
}

button{
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: .938rem;
}
/*=============== SNOW FALL ===============*/

.snow-fall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}
.snowFlake {
  position: absolute;
  color: #fff;
  user-select: none;
  animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity:0;
    }

    10%, 70%{
        opacity: 1;
    }
    
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}
/*=============== REUSABLE CSS CLASSES ===============*/

.section{
  padding: 4.5rem 0 2rem;
}

.section__title{
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

/*=============== LAYOUT ===============*/
.container{
  max-width: 968px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/
.header{
  width: 100%;
  background: #0B2962; 
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

/*=============== NAV ===============*/
.nav {
  width: 95%;
  max-width: 1100px;
  margin: 1rem auto 0 auto;
  padding: 0 2rem;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Joti One', serif;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav__logo{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: 500;
  font-family: 'Joti One', serif; 
}

.nav__logo-img{
  width: 1.25rem;
}

.nav__link,
.nav__logo{
  color: #FFFFFF;
}

@media screen and (max-width: 767px){
  .nav__menu{
    top: -150%;
    left: 0;
    padding: 3.5rem 0;
    transition: .4s;
    z-index: 100;
    border-radius: 0.5rem;
  }
}

.nav__img{
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}

.nav__list{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.nav__link{
  text-transform: uppercase;
  font-weight: 900;
  transition: .4s;
  font-family: 'Joti One', serif; 
}

.nav__link:hover{
  color: #FFFFFF;
}

/* Show menu */
.show-menu{
  top: 0;
}

/* Change background header */
.scroll-header{
  background: #0B2962; 
}

/* Active link */
.active-link{
  position: relative;
}

.active-link::before{
  content: '';
  position: absolute;
  bottom: -.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
}


/*=============== ABOUT ===============*/
.about__container{
  row-gap: 2rem;
}

.about__data{
  text-align: center;
}

.about__description{
  margin-bottom: 0.5rem;
  font-weight: 200;
}

.about__img {
  width: 350px;
  justify-self: center;
  transition: transform 0.3s ease;
}

.about__img:hover {
  transform: translateY(-10px) scale(1.02);
}
/* Responsive Tweaks */
@media screen and (max-width: 768px) {
  .review-section {
    padding: 3rem 1rem;
  }

  .review-header h2 {
    font-size: 1.8rem;
  }

  .swiper {
    padding-bottom: 2rem;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 3.5rem; /* Lifts it above the bottom nav */
  display: inline-flex;
  padding: .6rem;
  border-radius: 0.5rem;
  z-index: 100;
  opacity: .8;
  transition: .4s;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.scrollup__icon{
  font-size: 1.25rem;
  color: #FFFFFF;
}

.scrollup:hover{
  background: #0B2962; 
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 3rem;
}

/*=============== GLASSMORPHISM SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/*===============  BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .home__img{
    height: 200px;
  }
  .home__buttons{
    flex-direction: column;
    width: max-content;
    row-gap: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .about__container{
    margin-top: 5rem;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .section{
    padding: 4rem 0 2rem;
  }

  .nav {
    width: 100%;
    max-width: 1100px;
    margin: 1rem auto 0 auto;
    padding: 0 2rem;
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Joti One', serif;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .nav__img{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__link{
    text-transform: initial;
    font-weight: initial;
    font-family: 'Joti One', serif; 
  }

  .about__container{
    margin-top: 5rem;
    align-items: center;
  }
  .about__title{
    text-align: center;
  }
  .about__data{
    text-align: initial;
  }
  .about__img{
    width: 250px;
  }
}

@media screen and (max-width: 768px) {
  .contact-container {
    max-width: 420px;
    padding: 1.5rem;
  }
  .review-section {
    padding: 3rem 1rem;
  }

  .review-header h2 {
    font-size: 1.8rem;
  }
  .footer {
    margin-bottom: 6rem; /* Keep original for mobile */
    padding-top: 4.5rem; /* Restore top padding for mobile */
  }
  .scrollup {
    bottom: 6rem; /* Adjusted to be well above mobile bottom nav */
  }
}

/* For large devices */
@media screen and (min-width: 992px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }

  .section__title{
    font-size: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
  }
  .about__container{
    column-gap: 7rem;
  }
  .about__img{
    width: 350px;
  }
  .about__description{
    padding-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  

  .nav__logo {
    display: flex !important;
    margin-left: 1rem;
    font-size: 1.25rem;
  }
}

/* 2. Center logo text in mobile nav */
@media screen and (max-width: 767px) {
  .nav__logo {
    display: flex !important;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.25rem;
  }

  /* 4. Center all footer items in mobile */
  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logo,
  .footer__description,
  .footer__social,
  .footer__links {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}


.heading{
  font-family: 'Joti One', serif;
  font-weight: 400;
}
.bold{
  font-weight: 600;
  font-size: 0.900rem;
}