* {
    box-sizing: border-box;
 
}

body {
     font-family: 'Lexend-Regular';
    padding: 0;
    margin: 0;
    background: #F5F7FF;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
}

.title {
    font-size: 58px;
    line-height: 68px;
    color: #FFF;
    font-family: 'Lexend-Medium';
}

.content {
    color: #E2DEDC;
    font-size: 17px;
    line-height: 27px;
    font-family: 'Lexend-Light';
}

.subHead {
    color: #000;
    font-size: 38px;
    line-height: 48px;
    font-family: 'Lexend-SemiBold';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.bold {
    font-family: 'Lexend-Bold';
}

.semiBold {
    font-family: 'Lexend-SemiBold';
}

.medium {
    font-family: 'Lexend-Medium';
}

.light{
    font-family: "Lexend-ExtraLight";
}


/* header */
.header {
    position: fixed;
    background: #000;
    box-shadow: 0px 4px 50px 0px #0E1947;
    z-index: 1000;

}
.navbar ul {
    padding: 0 !important;
    margin: 0 !important;
}

.navbar ul li {
    font-family: "Lexend-Regular" !important;
    list-style: none;
    margin-right: 30px;
    color: white;
    display: inline-block;
    font-size: 18px;
    transition: all 0.3s ease;
}

.navbar ul li.active,
.navbar ul li:hover {
    color: #CC222A;
    transform: scale(1.05); /* Slightly increase size for hover effect */
}

.book_btn {
    border-radius: 8px;
    color: white;
    background-color: #CC222A;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border: 1px solid transparent;
    transition: all .4s ease;
}

.book_btn:hover{
    background-color: transparent;
    border: 1px solid #CC222A;
}

/* header end */


.testimonial .content{
    color: #373642;
}

.right,.left{
    border-radius: 8px;
border: 1px solid #CC222A;
background-color: transparent;
height: 40px;
width: 40px;
display: flex;
justify-content: center;
align-items: center;
color:#CC222A;
transition: all .5s ease;
}

.right:hover,.left:hover{
    background-color: #CC222A;
    color: #FFF;
}

.owlCard{
         border-radius: 24px;
 
   background-color: #FFF;
}

.owlContent{

    padding: 25px;
    color: #373642;
}

.owlBtm{
   color: #FFF;
    padding: 25px;
    border-radius: 0px 04px 24px 24px;
    background: #CC222A;
}

.owlBtm .name{
    font-size: 22px;
    line-height: 32px;
    font-family: "Lexend-SemiBold";
}

.stars i{
    font-size: 18px;
}

/* FOOTER */
.footers{
  background-color: #000;
}
.footcon{
  font-size: 16px;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}
.footLogo img{
  /* width: 180px;  */
  margin-bottom: 20px;
}
.footcopyrgt {
  display: flex;
  padding: 12px 22.5px 12px 12px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 75px;
  border: 0.75px solid #262626;
  background: #1A1A1A;
  margin-top: 40px;
  font-size: 15px;
}

.salfooticons {
  display: flex;
  align-items: center;
  justify-content: start;
}

.salfooticons i {
  width: 40px;
  height: 40px;
  display: flex;
 align-items: center;
 justify-content: center;
 font-size: 20px;


  border-radius: 50%;
  background:#CC222A;
  color: #FFF;
}
.footcon2 i{
  color: #CC222A !important;
}
.footcon2{
  font-size: 15px;
}
.form-control:focus{
  border: 1px solid  #CBCBCB !important;
  box-shadow: none !important;
}



/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: white;
  transition: transform 0.3s;
}
.close-btn:hover {
  transform: scale(1.3);
}

/* Hamburger */
.hamburger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.bar {
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%; /* Move it completely off-screen */
  width: 100vw;  /* Half screen width */
  height: 100vh;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 0;
}

.sidebar.open {
  right: 0;
}

/* Menu Items */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.sidebar ul li {
  font-size: 22px;
  margin: 20px 0;
  opacity: 0;
  color: #FFF;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sidebar ul li.active{
  color:#CC222A;

}

/* Staggered animation when sidebar opens */
.sidebar.open ul li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.sidebar.open ul li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.sidebar.open ul li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.sidebar.open ul li:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.sidebar.open ul li:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.sidebar.open ul li:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }



.Fa_que {
  font-size: 50px;
  font-family: 'Lexend-Bold', sans-serif;
  margin-bottom: 30px;
}

.accordion-item {
  background-color: transparent;
  border: none;
}

.accordion-button {
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 50px 20px 20px;
  position: relative;
  box-shadow: none;
  border-radius: 0;
}
.accordion-button:focus{
    border-color: none !important;
    box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed)::before {
  content: '−';
}

.accordion-body {
  background-color: #fff;
  padding: 0 20px 20px 20px;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  color: black !important;
  background-color: white !important;
  box-shadow: none !important;
}

.cta-box {
  background-color: #fff;
  padding: 30px;
  height: 100%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.cta-box button {
  background-color: #CC222A;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  margin-top: 20px;
}
  .fathima{
    background-image: url(../images/fathima.avif);
  }  

  .alice{
    background-image: url(../images/alice.avif);
  }

.owlContent{
   min-height: 200px;
}

.arjun{
  background-image: url(../images/mana.avif);
}

.antony{
  background-image: url(../images/manb.jpeg);
}

.image{
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-position: center center;
  background-size: cover;
}

.footLogo img{
  width: 250px;

}
@media only screen and (min-width : 1400px) {}

@media only screen and (max-width: 1400px) and (min-width : 1200px) {
     .footcopyrgt {
    padding: 18px 25px;
  }
  .salfooticons i {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .owlContent{
   min-height: 225px;
}
}

@media only screen and (max-width: 1200px) and (min-width : 992px) {
    .content {
font-size: 16px;
line-height: 26px;
}

/* footer */
.footcopyrgt {

    padding: 18px;
    border-radius: 40px;
    text-align: center;
  }
  .salfooticons {
    justify-content: center;
  }
  /* .footcopyrgt > div {
    justify-content: center !important;
  } */

   .book_btn{
    padding: 10px 20px ;
    font-size: 15px;
}

.logo{
    width: 100%;
}

}

@media only screen and (max-width: 992px) and (min-width : 768px) {
       /* .title {
    font-size: 50px;
    line-height: 60px;

} */

.content {
font-size: 16px;
line-height: 26px;

}
.owlContent{
   min-height: 225px;
}

    /* footer */
     .footcopyrgt {

    padding: 15px;
    border-radius: 40px;
    text-align: center;
  }
  .footcon1 {
    width: 100%;
  }
  .salfooticons {
    justify-content: center;
  }

}

@media only screen and (max-width: 768px) {
    .title,.subHead,.content{
        text-align: center;
    }

       .title {
    font-size: 39px;
    line-height: 49px;

}
.owlContent{
   min-height: 225px;
}
.content {
font-size: 16px;
line-height: 26px;
}

 /* footer */
 .footcon1 {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footcopyrgt {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
  }

  .salfooticons {
    justify-content: center;
  }

  .salfooticons i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

.image{
  height: 80px;
  width: 80px;
}
}

@media only screen and (max-width:576px) {
   .title {
    font-size: 34px;
    line-height: 44px;

}


.subHead {

    font-size: 30px;
    line-height: 38px;

}

/* footer */
  .footcopyrgt {
    padding: 12px;
    border-radius: 25px;
  }

  .salfooticons i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  
  .footcon {
    font-size: 14px;
  }

  .logo{
    width: 100%;
  }

.owlContent{
   min-height: 225px;
}

.owlBtm h6{
  font-size: 15px;
}

.image{
  height: 80px;
  width: 80px;
}

.owlContent{
  min-height: 250px;
}
}