@import url('https://fonts.googleapis.com/css2?family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Oswald:wght@200..700&family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --primaryColor: #151E3D;
    --secondaryColor: #fefefa;
    --textColor: #2b4b5b;
    --buttonColor: rgb(248, 129, 88);
    --buttonHover: rgb(69, 179, 179);
  } 
  

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:  Arial, Helvetica, sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
}

.topbar{
    width: 100%;
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    /* border-bottom: 1px solid black; */
    background-color: var(--primaryColor);
  }
  
  .topbar p{
    color: white;
    font-size: 1rem;
}

.topbar button{
    padding: 0.8vh 2vw;
    border: none;
    border-radius: 5px;
    background-color: var(--buttonColor);
}

.topbar button a{
  color: white;
    text-decoration: none;
    font-weight: 700;
}

.topbar button:hover{
  background-color: var(--buttonHover);
  color: #fefefe;
}
/* standrad responsiveness */
@media (max-width:765px){
    .topbar{
        width: 100%;
        gap: 2vw;
        background-color: var(--primaryColor);
    }

    .topbar p{
        font-size: 0.75em;
    }

    .topbar button{
        padding: 0.4vh 1vw;
    }
}
/* window resposive */
@media screen and (max-width:1024px) and (min-width:768px) {
    .topbar{
        width: 100%;
        height: 10vh;
        background-color: green;
        gap: 3vw;
    }
    
    .topbar p{
        font-size: 1em;
    }
    
    .topbar button{
        padding: 0.4vh 1.5vw;
    }
    
    .topbar button a{
        font-size: 3vh;
    }
}

/* mobile responsiveness */
@media (max-width:370px){
    .topbar{
        width: 100%;
        gap: 1.5vw;
        background-color: var(--primaryColor);
    }

    .topbar p{
        font-size: 0.75em;
    }

    .topbar button{
        padding: 0.4vh 1vw;
    }
}


/* ========= navbar ============== */


nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12vh;
  padding: 2vw;
  border-bottom: 1px solid black;
  position: sticky; 
  /* overflow: auto; */
  top: 0; 
  z-index: 1000; 
  background-color: white; 
  transition: background-color 0.3s ease-in-out; 
}

nav{
  position: sticky;
}

nav img{
    height: 6vw;
}

#HamburgerIcon{
    display: none;
}

nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

nav ul li{
    list-style-type: none;
}

nav ul li a{
    text-decoration: none;
    position: relative;
    color: black;
    font-weight: 550;
}

nav ul button{
    display: none;
    padding: 1vh 5vw;
    text-transform: uppercase;
}

nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--primaryColor); 
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 0;
    transition: width 0.5s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }

.searchBar i{
    cursor: pointer;
    color: var(--primaryColor);
}

.searchBar input{
    background-color: inherit;
    border: none;
    outline: none;
}

.header__icon-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

#profileIcon{
  color: var(--primaryColor);
  font-size: 1.5vw;
}

#profileIcon:hover{
  color: var(--buttonHover);
}

.searchBar:hover, .searchBar:focus-within {
    background-color: #f1efef;
}

.searchBar {
  background-color: var(--secondaryColor);
  padding: 1vh 1vw;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  border: 1px solid var(--primaryColor);
}

.searchBar input::placeholder{
  color: var(--primaryColor);
}
  
.searchBar input {
  background-color: inherit;
  border: none;
  outline: none;
  flex-grow: 1;
}

#searchResults {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 200px; 
  overflow-y: auto;
  z-index: 1000; 
  display: none; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

#searchResults li {
  padding: 5px 10px;
  cursor: pointer;
  list-style: none;
}

#searchResults li:hover {
  background-color: #f1efef;
}

#searchResults a {
  font-size: 1vw;
  font-weight: 530;
  display: block;
  text-decoration: none;
  color: #333;
}

#searchResults a:hover {
  background-color: #f1efef;
}

.HamburgerIcon{
    display: none;
}

/* for window resposive */
@media (max-width:765px){
    #HamburgerIcon{
        display: block;
        cursor: pointer;
    }

    nav{
        justify-content: space-between;
        width: 100%;
        padding: 0 4vw;
        height: 9vh;
        /* background-color: aqua; */
    }

    nav h1{
        font-size: 4vw;
    }
    nav img{
        position: relative;
        left: -10%;
        height: auto;
        width: 35vw;
    }

    nav ul button{
        display: block;
        background-color: var(--buttonColor);
        border: 1px solid var(--buttonColor);
        border-radius: 5px;
        margin: 0 4vw;
        width: calc(100% - 8vw) ;
    }

    nav ul button a{
      text-decoration: none;
      color: white;
      font-weight: 550;
    }

    nav ul button:hover{
      background-color: var(--buttonHover);
      border: 1px solid var(--buttonHover);
    }

    nav ul li a::after {
      background: var(--buttonHover);
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        gap: 1.5vw;
        position: absolute;
        top: 17vh;
        right: 0;
        width: 50%;
        background-color: white;
        padding: 1vh 0;
        border: 1px solid #ddd;
        /* text-align: left; */
        z-index: 1000;
    }

    #navLinks li a{
      /* padding: 0 10vw; */
        color: var(--primaryColor);
        /* text-align: left; */
    }

 

    .header__icon-list a{
        display: none;
    }

    .searchBar{
        padding: 1vh 2vw;
    }
    .searchBar input {
        max-width: 40vw;
    }

    .searchBar i {
        display: none;
    }
}

/* ===mobile landscape responsiveness=== + tablet*/

@media screen and (max-width:1024px) and (min-width:768px) {
    nav{
        /* justify-content: flex-start; */
        justify-content: space-between;
        width: 100%;
        height: fit-content;
        max-height: 35vh;
        padding: 0 4vw;
        /* background-color: blue; */
    }
    
    nav img{
        position: relative;
        left: -5%;
        height: auto;
        width: 20vw;
    }

    #HamburgerIcon{
        display: block;
    }

    nav ul button{
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        gap: 1.5vw;
        position: absolute;
        top: 17vh;
        right: 0;
        width: 50%;
        background-color: white;
        padding: 1vh 0;
        border: 1px solid #ddd;
        /* text-align: left; */
        z-index: 1000;
    }

    #navLinks li a{
        color: black;
        /* text-align: left; */
    }

    .header__icon-list{
        gap: 2vw;
    }

    .searchBar{
        padding: 2vh 16vw 2vh 5vh;
    }
    
    .searchBar input{
        min-width: 45vw;
    }

    .searchBar i{
        display: none;
    }
}



/* =============Hero================ */

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
/* 
.DeskCarousel{
  height: 70vh;
  background-image: url(/static/images/heroIndexDesk/heroIndexDesk1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  animation: imageChangeDesk 20s linear  infinite;
}

@keyframes imageChangeDesk {
  0%{
    background-image: url(/static/images/heroIndexDesk/heroIndexDesk1.jpg);
  }
  20%{
    background-image: url(/static/images/heroIndexDesk/heroIndexDesk2.jpg);
  }
  40%{
    background-image: url(/static/images/heroIndexDesk/heroIndexDesk3.jpg);
  }
  60%{
    background-image: url(/static/images/heroIndexDesk/heroIndexDesk4.jpg);
  }
  80%{
    background-image: url(/static/images/heroIndexDesk/heroIndexDesk5.jpg);
  }
  100%{
    background-image: url(/static/images/heroIndexDesk/heroIndexDesk1.jpg);
  }
}

.MobCarousel{
  display: none;
  width: 100%;
  height: 40vh;
  background-image: url(/static/images/heroIndexMob/heroIndexMob1.png);
  background-size: cover;
  background-repeat: no-repeat;
  animation: imageChangeMob 20s linear  infinite;
}

@keyframes imageChangeMob {
  0%{
    background-image: url(/static/images/heroIndexMob/heroIndexMob1.png);
  }
  20%{
    background-image: url(/static/images/heroIndexMob/heroIndexMob2.png);
  }
  40%{
    background-image: url(/static/images/heroIndexMob/heroIndexMob13.png);
  }
  60%{
    background-image: url(/static/images/heroIndexMob/heroIndexMob4.png);
  }
  80%{
    background-image: url(/static/images/heroIndexMob/heroIndexMob1.png);
  }
  100%{
    background-image: url(/static/images/heroIndexMob/heroIndexMob2.png);
  }
} */

#heroMobImg{
  display: none;
}

/* @media screen and (max-width:765px) and (min-width:414px){ */

@media (max-width:765px) {  
  .hero{
    height: 40vh;
  }
/* 
  .Deskcarousel{
    display: none;
  }

  .MobCarousel{
    display: block;
  } */

  #heroMobImg{
    display: block;
  }
    
  #heroDeskImg{
    display: none;
  }

}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

.nav-button.prev {
  left: 10px;
}

.nav-button.next {
  right: 10px;
}

.heroMobImg{
  display: none;
  aspect-ratio: 3/2;
}


.popHeading{
    text-align: center;
    font-family: "Spectral SC", serif;
    font-weight: 900;
    font-style: normal;
    font-size: 3vw;
    padding: 2vh;
    padding-right: 3vw;
}
.popularExams {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: fit-content;
  padding: 2vh 4vh;
}

.popularExamContentWrapper {
  display: flex;
  gap: 4vw;
  overflow: hidden;
  white-space: nowrap; 
  scroll-behavior: auto;
}

.ExamContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px; /* Set fixed width */
  height: 120px; /* Adjusted for better spacing */
  flex: 0 0 auto;
  margin-right: 20px;
  cursor: pointer;
}

.examImg {
  width: 100%; /* Ensure full width */
  height: 80px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Removed padding to avoid unwanted spacing */
}

.examImg a {
  display: block;
  width: 100%;
  height: 100%;
}

.examImg img {
  width: 100%; /* Ensures image fits container */
  height: 100%;
  object-fit: contain; /* Keeps aspect ratio */
}

.examName {
  height: 40px; /* Increased height for better text spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.examName p {
  font-weight: 550;
  font-size: 14px;
}


@media (max-width:765px){

.popHeading{
  padding: 0.5vh;
}
.popularExamContentWrapper{
  margin: 0;
  padding: 0;
}

.ExamContainer{
  height: 70px;
  padding: 0;
  margin: 0;
}
.examImg{
  
  padding: 0 4v;
  height: 60%;
}

.examImg img{
  height: 100%;
}


  .popularExams{
    padding: 1vh 1vh 0 1vh;
  }
  
  .popHeading{
    font-size: 2.5vh;
    padding-right: 3vw;
  }

  .popularExamContentWrapper{
    margin-right: 2vw;
}
.heroMobImg{
  display: block;
}
.heroDeskImg{
  display: none;
}

}

/* ===mobile landscape responsiveness=== + tablet*/

@media screen and (max-width:1024px) and (min-width:768px) {
  
}

/* 
@media (max-width:370px){
  
} */


  /* centertables */
  
  .centertables {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    margin-top: 2vh;
    gap: 2vh;
    
  }
  
  .centertables h1 {
    font-size: 3.5vh;
    background-color: var(--primaryColor);
    color: white;
    text-align: center;
    font-weight: 100;
    padding: 1vh;
  }
  
  @media (max-width:765px){    
    .centertables h1 {
      font-size: 2vh;
      font-weight: 400;
    }

    .centertables {
      margin-top: 0.5vh;
    }
  }
  
  /* ===mobile landscape responsiveness=== + tablet*/
  
  @media screen and (max-width:1024px) and (min-width:768px) {
    
  }
  
  /* 
  @media (max-width:370px){
    
  } */
  
  
  .bulleticon {
    color: red;
    font-weight: bolder;
  }
  
  .answerKeys, .latestExams, .syllabus, .admitCards, .results{
    border: 1px solid var(--primaryColor);
    width: 32%;
    margin-bottom: 1vw;
    background-color: rgb(243, 241, 241);
    
  }
 
  .latestExams ul, .admitCards ul, .results ul, .syllabus ul, .answerKeys ul 
  {
    padding: 2vh;
    max-height: 400px;
    overflow-y: scroll;
  }

  .latestExams ul li, .admitCards ul li, .results ul li, .syllabus ul li, .answerKeys ul li {
    padding: 0.2vh;
    list-style-type: none;
  }
  
  .latestExams ul li a, .admitCards ul li a, .results ul li a, .syllabus ul li a, .answerKeys ul li a{  
    /* font-family: "Geist Mono", monospace; */
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: 'Times New Roman', Times, serif; */
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--textColor);
    font-weight: 500;
    text-decoration: none;
    color: black;
  }
  
  .latestExams ul li a:hover, .admitCards ul li a:hover,.results ul li a:hover,.syllabus ul li a:hover,.answerKeys ul li a:hover{
    color: red;
  }

  .viewMoreBtn {
    position: relative;
    float: right;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 1vh 2vh;
    border-radius: 20px;
    border: 1px solid var(--buttonColor);
    background-color: var(--buttonColor);
    margin: 1vh 2vh;
    margin-bottom: 1vh;
  }
  
  .viewMoreBtn a {
    color: white;
    text-decoration: none; 
  }
  
  .viewMoreBtn:hover {
    border: 1px solid var(--buttonHover);
    background-color: var(--buttonHover);
    color: #ffffff;
  }
  
  @media (max-width: 765px) {
    .latestExams, .syllabus , .admitCards, .results,.answerKeys  {
      width: 45%;
      /* margin: 0 2vh; */
    }

    .latestExams ul li a, .admitCards ul li a, .results ul li a, .syllabus ul li a, .answerKeys ul li a{  
      font-size: 0.8em;
    }
  
    .newHighlightImg{
      width: 3.5vh;
    }
  }

  
  /* why choose us============================ */

  
  .whyChooseUs{
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
  }
  .heading2{
    text-align: center; 
    color: var(--primaryColor);
    font-family: "Host Grotesk", sans-serif;
    font-size: 3vw;
    padding: 2vh;
    padding-top: 5vh;
    font-weight: 900;
  }

  .whyChooseUsContent{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    /* padding: 0 5vh; */
  }
  
  
/* 
  .whyChooseUs p i {
    color: black;
    margin: 1vh 5vh;
    padding-left: 20vh;
    text-align: center;
    font-weight: 50;
    text-align: center;
  } */
  
  
  .whyChooseUs ul{
    list-style-type: none;
    /* padding-left: 25vh; */
  }
  
  .whyChooseUs ul li strong {
    color: var(--textColor);
  }
  
  .whyChooseUs ul li strong:hover {
    cursor: pointer;
  }
  
  .whyChooseUs ul li {
    /* padding: 1vh 5vh; */
    font-weight: 50;
    color: var(--textColor);
  }
  
  
  .whyChooseUs p {
    text-align: left;
    color: var(--textColor);
    padding: 1vh 6vh;
  }

  
  
  
  .whyChooseUsImg img{
    height: 70vh;
    margin-left: 10vw;
  }
  
  .whyChooseUsText ul{
    list-style-type: none;
  }
  
  .whyChooseUsText ul li{
    padding: 1vh 5vh;
  }
  
  .whyChooseUs ul li strong {
    color: var(--secondary-color25);
  }
  
  .whyChooseUsText li{
    color: var(--primary-color);
  }

  @media (max-width:765px) {
    .whyChooseUsContent{
     flex-wrap: wrap;  
     padding: 0 2vh;  
    gap: 10vw;
   }
   
    .whyChooseUsText ul li{
     padding: 2vh 1vh;
   }

   .whyChooseUsImg img{
      height: 50vh;
      margin-left: 0;
   }

   .whyChooseUs p {
    text-align: left;
    color: var(--textColor);
    padding: 1vh 6vh;
    font-size: 2vh;
  }

  .whyChooseUsText li p{
    color: var(--textColor);
    font-weight: 300;
    /* color: black; */
  }
  
     
   }
  /* Counter===================================== */

.Counter{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  padding: 4vh 0;
  /* background-color: orange; */
}

.Counter h1{
  text-align: center;
  padding-bottom: 8vh;
  font-size: 3vw;
}

.counterWrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.countContainer{
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  min-height: 200px;
  padding: 2vh 3vh;
  margin: 0 2%;
  border: 1px solid black;
  /* background-color: rgb(212, 203, 203); */
}

.Counter i{
  font-size: 4vw;
}

.countContainer img{
  height: 6vw;
}

#CountNumber{
  font-size: 3vw;
  padding: 2vh 0;
}

#countValue{
  font-size: 1.5vw;
}


@media (max-width:765px){

  .Counter{
    width: 100%;
    height: fit-content;
    padding: 1vh 0;
    /* background-color: orange; */
  }
  
  .Counter h1{
    padding-bottom: 3vh;
    font-size: 3vh;
  }
  
  .countContainer{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 3vh);
    margin: 1.5vh 20vw;
    border: 1px solid black;
  }
  
  .Counter i{
    font-size: 6vh;
  }
  
  #CountNumber{
    font-size: 5vh;
    padding: 2vh 0;
  }
  
  #countValue{
    font-size: 2.5vh;
  }
  
}

/* ===mobile landscape responsiveness=== + tablet*/

@media screen and (max-width:1024px) and (min-width:768px) {
  
}

/* 
@media (max-width:370px){
  .topbar{
      width: 100%;
      gap: 1.5vw;
      background-color: yellow;
  }

  .topbar p{
      font-size: 0.75em;
  }

  .topbar button{
      padding: 0.4vh 1vw;
  }
} */

footer{
  /* background-image: url(https://as1.ftcdn.net/v2/jpg/09/20/38/56/1000_F_920385608_acCCRDB7GnS8KGhAUKml8Vq11VrmFdg8.jpg); */
  background-image: url("/static/images/hero-bg.webp");
  /* z-index: -1; */
    background-position: center;
    background-size: contain;

}

.footContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 2vh 0;
    height: fit-content;
    /* background-color: rgba(21, 30, 61, 0.9); */
    background-color: rgb(21, 30, 61);
    
}
  
  .footcol {
    text-align: left;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 1.5vh 1vh;
    width: 25%;
    color: white;
    /* background-color: transparent; */
  }
  
  .footcol h3 {
    /* text-align: right; */
    font-weight: 600;
    font-size: 3vh;
    padding: 0.5vh 1vh;
    padding-top: 1vh;
    color: white;
    margin-bottom: 1.5vh;
  }
  
  .footcol ul li {
    list-style: none;
    font-weight: 50;
    text-align: left;
  }
  
  .footcol ul li a {
    text-decoration: none;
    color: white;
  }
  
  .footcol p {
    padding: 1vh;
  }
  
  .footcol ul li:hover, .footcol ul li a:hover{
    color: var(--buttonColor);

  }

  .footcol h3:hover {
    border-bottom: 1px solid white ;
    /* text-decoration: 2px solid underline; */
  }
  
  .footsocial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    padding: 1vh;
  }
  
  .footsocial ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vh;
    padding: 1vh;
  }

  #footmail {
    text-decoration: none;
    color: white;
  }
  
  #footmail:hover {
    color: var(--buttonColor);
  }
  
  .copyright{
    background-color: var(--primaryColor);
    /* background-color: rgba(21, 30, 61, 0.9); */

    color: white;
    text-align: center;
    padding: 2vh 0;
    border-top: 1px solid white;
  }

  @media (max-width: 600px) {
    .footContainer {
      flex-direction: column;
      width: 100%;
    }
  
    .footcol {
      text-align: center;
      width: 100%;
      padding: 2vh;
    }

    .footcol ul li a{
      font-weight: 300;
    }
  }
  
  /* Floating CTA buttons================= */
    
  .scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 20px;
    background-color: gray;
    color: #dfdbdb;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    display: none; /* Hide initially */
    z-index: 1000; /* Ensure it's above other content */
    transition: background-color 0.3s;
    background-color: var(--primaryColor);
  }
  
  .scroll-to-top.show {
    display: block;
  }
  
  .scroll-to-top:hover {
    background-color: var(--buttonHover);
  }
  
  .whatsappButton {
    display: block; /* Hide the button by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* WhatsApp green */
    color: #fff;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 24px;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 99; /* Ensure it's above other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
    cursor: pointer;

  }
  
  .whatsappButton:hover {
    background-color: #128c7e; /* Darker WhatsApp green on hover */
    transform: translateY(-3px); /* Optional: Add a slight lift effect on hover */
  }



  /* new design code=================== */
  /* <sup><img src='https://1pskscvmo8004.cdn.shift8web.com/wp-content/uploads/2024/10/blink_menu.gif'></sup> */


  /* chatbot============================= */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 1;
}

/* Chatbot Icon */
#chatbot-icon {
    display: block; /* Hide the button by default */
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: var(--buttonColor); 
    color: #fff;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 22px;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 99; /* Ensure it's above other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
    cursor: pointer;
    border: none;
    
}

/* Chatbot Dialog */
#chatbot-dialog {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 400px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Chatbot Header */
#chatbot-header {
    /* background-color: #007bff; */
    background-color: var(--primaryColor);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#chatbot-header span {
    font-size: 16px;
    font-weight: bold;
}

#chatbot-close {
    background: none;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Chatbot Body */
#chatbot-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #ffffff;
}

#chatbot-messages {
    display: flex;
    flex-direction: column;
    line-height: 4vh;
}

/* Chatbot Input Area */
#chatbot-input-area {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ccc;
}

#chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

#chatbot-send {
    /* background-color: #007bff; */
    background-color: var(--primaryColor);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
}

/* Autocomplete Suggestions */
#autocomplete-suggestions {
    position: absolute;
    bottom: 50px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: calc(100% - 20px);
    max-height: 150px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

#autocomplete-suggestions div {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid black;
}

#autocomplete-suggestions div:hover {
    background-color: #d2ffd7;
    /* background-color: var(--buttonHover); */
}

/* Loading Spinner */
#loading-spinner {
    text-align: center;
    color: #555;
    margin-top: 10px;
}

/* Bot Message Styling */
.message.bot {
    background-color: #f0f8ff; 
    border-left: 4px solid var(--primaryColor); 
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    font-weight: bold; /* Emphasize response */
    color: #333;
    word-wrap: break-word;
}

/* User Message Styling */
.message.user {
    background-color: #d1ffd6; /* Light green for user messages */
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    word-wrap: break-word;
}


.UspCarousel{
    margin: 5vh 0;
    padding: 5vh;
    height: fit-content;
    background-color: black;
}


/* Carousel Container */
.carousel-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

/* Carousel Wrapper */
.carousel {
    display: flex;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

/* Slide Style */
.slide {
    min-width: 100%; /* Each slide takes up full width */
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0078d4;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.carousel:hover {
    animation-play-state: paused;
}


@media (max-width:765px){
  

  .heading2{
    padding: 1vh 2vh;
    padding-top: 4vh;
    font-size: 1.5em;
  }
}


.back-arrow-style {
  font-size: 17px;
  color: #faf6f6;  /* Black color for the arrow */
  transition: color 0.3s ease;
}

.back-arrow-style:hover {
  color: salmon;  /* Dark gray when hovering */
}
@media (max-width: 768px) {
  .back-arrow-style {
      font-size: 20px;  /* Slightly smaller font size for tablets */
      top: 10px;        /* Adjust position for smaller screens */
      left: 10px;
  }
}

@media (max-width: 480px) {
  .back-arrow-style {
      font-size: 18px;  /* Smaller font size for mobile devices */
      top: 8px;         /* Adjust position for very small screens */
      left: 8px;
  }
}

/* Optional: Add spacing for touch-friendly interaction */
@media (hover: none) and (pointer: coarse) {
  .back-arrow-style {
      padding: 10px;    /* Add padding for easier tapping on touch screens */
  }
}