:root{
    background-color:rgb(239, 240, 235);
    padding:0px;
    margin:0px;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

}
:root {
    --bs-primary: #bdccb7;
    --bs-primary-rgb: 107, 178, 82;
}
/* buttons */
.btn {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}

/* highlight button */
.highlight-button {
  position: relative;
  background-color: #092d7d;
  border-radius: 20px;
  overflow: hidden;
  color: white;
  border: 1px solid rgb(28, 31, 30);
  z-index: 0;
}

/* sliding layer */
.highlight-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: darkred;
  transition: 0.3s ease-out;
  border-radius: 20px;
  z-index: -1; /* 👈 KEY FIX */
}

/* hover */
.highlight-button:hover::before {
  width: 100%;
}

.highlight-button:hover {
  color: white;
}







/* letters fall on scroll styling */


.fall-on-scroll span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-150px);
}

.fall-on-scroll.animate span {
  animation: fall 0.8s ease forwards;
}

@keyframes fall {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* for light bg theme */
.mix-fall.animate span {
  background: linear-gradient(120deg, #ff1e56, #1e90ff, #ff1e56);
  background-size: 200% 200%;
  animation: fall 0.8s ease forwards, gradientMove 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* for dark bg theme */

.mix-fall-dark.animate span {
  background: linear-gradient(120deg, #ffffff, #ffffff, #ffffff);
  background-size: 200% 200%;
  animation: fall 0.8s ease forwards, gradientMove 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* end of letters fall on scroll */
/* slide a box on scroll styling */
.arrow-box {
  position: relative;
  /* background: linear-gradient(0deg, #3600f8); */
    background:darkred;
  color: white;
  padding: 15px 25px;
  width: max-content;
  border-radius: 6px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* Arrow tip */
.arrow-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid darkred;
}

/* Initial hidden state */
.slide-on-scroll {
  opacity: 0;
  transform: translateX(-100px);
}

/* Animate when visible */
.slide-on-scroll.animate {
  animation: slideFade 1s ease forwards;
}

@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* end of slide a bos on scrolling */

h1{
    font-weight:bolder;
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
h2{
    font-weight:bolder;
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
h3{
   
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
.h4{
   
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
.h5{
  
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
.h6{
   
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
.p{
    font-weight:normal;
    font-size:14px;
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}

.submit-button{
justify-content:end;
text-align:end;
}
/* .submit-button .submit{
border-radius:10px;
border-color:lightblue;
background:linear-gradient(120deg,darkblue,blue);
color:white;
font-weight:bold;
font-size:14px;
padding:10px;
text-align:center;
} */
.li{
    display:none;
}
.mobile-header{
  margin-bottom:75px;
}
.section-header {
 margin-bottom:75px;
}
.header{
    position:fixed;
    top:0px;
   
    z-index: 1000;
    width:100%;
    background-color: #092d7d;
}
.font{
    font-size:16px;
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

    font-weight:normal;
    color:white;

}
.menu-bar{
    /* justify-content:center; */
    display:flex;
    align-items: center;
    justify-content: space-between;
    /* background-color :rgb(26, 29, 16); */
  
    /* padding:0px; */
}
.menu-logo{
    text-align:start;
}
.menu-bar ul {
    margin-top: 2px !important;
    margin-bottom: 1px;
    /* display:flex;
    align-items: center; */
}
.logo{
  width:100%;
     height:60px;
     background-color: white;
     border-radius:2px;
     margin:6px;
     padding:10px;
}
.menu-content{
     text-align:center;
    display:flex;
    gap:30px;
}
.menu-content a{
    text-decoration: none;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
.content-list{
    text-align:center;
    display: flex;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
}
.content-list:hover{
    color:rgb(3, 3, 3);
    background-color:rgb(239, 240, 235);
    border-radius:2px;
}
.menu-register-bar{
    display: flex;
    text-align:end;
    gap:15px;
}
/* buttons */
.btn-head{
    background-color:rgba(203, 32, 54);
    border-radius: 18px;
    font-weight:bold;
    color:white;
    border-color:rgb(252, 249, 249);
    border-width: 2px;
    border-style: solid;
    padding:3px;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

    font-size:13px;
}
.btn-head:hover{
    background-color:white;
    color:black;
    border-color:rgba(203, 32, 54);
    border-width: 2px;
    border-style: solid;
    padding:3px;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

    font-size:13px;
    font-weight:bold;
}
.btn-normal{
    /* background-color:white; */
  background-color:transparent;
    color:rgb(248, 240, 240);
    border-radius:18px;
    padding:8px;
    border-color:rgb(247, 243, 243);
    border-width: 2px;
    border-style: solid;
    /* color:rgba(203, 32, 54); */
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

   font-size:13px;
    font-weight:bold;
}
.btn-normal:hover{
  background-color:white;
    color:rgba(200, 1, 2);
    border-color:rgba(200, 1, 2);
    border-width: 2px;
    border-style: solid;
    padding:8px;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

    font-size:13px;
    font-weight:bold;
}

.form-control, .form-select{
    border-radius: 18px;
    border-color:rgb(12, 12, 12);
    border-width: 1px;
    border-style: solid;
    font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

    font-size:13px;
    font-weight:bold;
}
/* First Section banner*/

.main-content-section {
    background-image: url('images/background-images/dg.png');
    background-size: cover;          /* makes image cover entire container */
    background-position:top  center;     /* keeps the center visible */
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%; 
    min-height: 100vh;              
    display: flex;                   
    justify-content: center;         
    align-items: center;             
    /* text-align: center; */
    position: relative;
    z-index: 1;
     /* border-bottom-left-radius: 160px;
  border-bottom-right-radius: 80px; */
}

.main-para{
    font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;
    font-size:16px;
}

/* why choose us */

.why-choose-us{
    background:linear-gradient(140deg,#ddecfa,#2984d8);
    text-align:center;
    color:#000;
    justify-content:center;
   
}

.why-choose-us .card{
    background-color: white;
    border: none;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.about-us{
    background-color:#eef4f0;
}


.about-us-info .card{
     transition: transform 0.6s ease, 
              box-shadow 0.6s ease, 
              border 0.6s ease, 
              border-radius 0.3s ease;
               transform-origin: center;
  will-change: transform;
}


.about-us-info .card:hover {
      transform: translateY(-12px) scale(1.08);
 border-radius: 10px;
  border-width:2px;
  border-style:solid;
  border-color:none;
box-shadow: 
  0 10px 20px rgba(54, 0, 248, 0.25),
  0 20px 40px rgba(54, 0, 248, 0.2);
}


.dynamic-gradient-list {
  list-style: none;
  padding: 0;
  color:black;
}

.dynamic-gradient-list li {
  padding: 15px 20px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.dynamic-gradient-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, #3600f8, #00c6ff, #3600f8);
  transition: all 0.5s ease;
  z-index: 0;
}

.dynamic-gradient-list li:hover::before {
  left: 0;
}

.dynamic-gradient-list li span {
  position: relative;
  z-index: 1;
}

.dynamic-gradient-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(54,0,248,0.2);
}

/* how we work section */

.how-we-work{
    border-top-left-radius:20%;
}



/* tutor list filter section */

 .tutor-select{
  padding:15px;
  border-radius:10px;
  border:2px solid black;
  width:100%;
  position:relative;
  font-weight:bold;
  cursor:pointer;
 
}

/* .tutor-select:hover .tutor-dropdown {
    display: block;
} */
.tutor-dropdown{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:white;
  border-radius:8px;
   z-index:9999;
   height:250px;
   overflow-y:scroll;
}

.tutor-option{
  padding:10px;
  color:black;
}

.tutor-option:hover{
  background:#333;
  color:white;
}


.country-search{
    width: 100%;
    margin-bottom: 6px;
}
/*  */





/* tutor section styling */
.gallery-section {
  padding: 20px 0px;
  background-color:rgb(217, 228, 231);
}



/* Swiper */
/* .swiper {
  width: 90%;
  margin: auto;
} */

/* .swiper-slide img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
} */

/* .swiper-slide {
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
} */

/* Hover Effect */
/* .swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: #000000 0px 4px 8px rgba(0, 0, 0, 0.2);
} */

/* Smooth sliding */
/* .swiper-wrapper {
  transition-timing-function: linear !important;
} */


/* subjects offered */

.subjects-offered{
  background-color:white;
  padding:20px;
 

}
.subjects-offered .topics-we-teach{
  padding:1px;
  border-radius:10px;
  background: linear-gradient(10deg,#3495eb,white);
 color:black;
 border:none;
}




/* footer section styling */

.footer{
  background-color: #000000;
  color:white;
  padding:5px;
  text-align:center;
  
}
.footer-content{
  background-color: #092d7d;
  padding:12px;
}













/* Mobile and tablet: ensure it fits smaller screens */
@media (max-width: 1024px) {
    .main-content-section {
        background-size: cover;      
        background-position: top;    
        min-height: 70vh;            
        background-attachment: scroll; 
    }
}
@media (max-width: 768px) {
    .main-content-section {
        background-image: url('images/background-images/dg.png');
        background-size: cover;      
        background-position: top;    
        min-height: 70vh;            
        background-attachment: scroll; 
        width:100%;
    }
}


 .mobile-header{
    display: none;
   }


/* end */
/* media query mobile responsive */
@media (max-width: 768px) {
    .section-header{
        display: none;
    }
  .mobile-header{
    display:block;
  }
    
    .mobile-register-bar{
        display:block;
         display:flex;
        align-items: end;
        justify-content: space-between;
        background-color :transparent;
        gap:10px;
    }
  
    .mobile-register-bar .btn-normal:hover{
        background-color:rgb(247, 237, 238);
        color:rgb(241, 6, 37);
        border-color:rgb(245, 11, 42);
        border-width:1px;
        border-radius:18px;
        font-family:'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

        font-size:10px;
        font-weight:bold;
        padding:2px;
    }

    .mobile-register-bar .btn-normal{
    color:rgb(248, 240, 240);
        border-radius:18px;
        padding:1px;
        border-color:rgb(247, 243, 243);
        border-width: 3px;
        border-style: solid;
        font-family: 'Figtree', 'Figtree-fallback', 'Figtree-fallback-android', 'Noto Sans', 'NotoSans-fallback', 'NotoSans-fallback-android', sans-serif;

        font-size:10px;
        font-weight:bold;
    }
}

/* about us page */

.about-banner{
  background-image: url('images/background-images/about-us.jpg');
  background-size: cover;
  background-position: fixed;
  background-repeat: no-repeat;
   min-height: 100vh; 
   position: relative;
 z-index: 1;
  width:100%;
}
@media (max-width: 1024px) {
    .about-banner {
        background-size: cover;      
        background-position: top;    
        min-height: 70vh;            
        background-attachment: scroll; 
    }
}
@media (max-width: 768px) {
    .about-banner {
        /* background-image: url('images/background-images/about-us.jpg'); */
        background-size: cover;      
        background-position: top;    
        min-height: 60vh;            
        background-attachment: scroll; 
        width:100%;
    }
}

/* tutorRegistration */

.tutorRegistration{
padding:10px;
margin-top:10px;
margin-bottom:20px;

}

.tutorRegistration .card{
  background: linear-gradient(120deg,white,#9ac9f3);
  border-radius:10px;
  padding:4px;
}



/* side bar */

.menu-btn {
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--header-text);
}

.menu-btn:hover {
  color: var(--accent);
}


/* --- Side menu --- */





.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: black;
  color: white;
  transition: left 0.4s ease;
  z-index: 1000;
  padding-top: 60px;
  overflow-x:hidden;
  overflow-y: scroll;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4);
}

.side-menu.open {
  left: 0;
}

.side-menu a,
.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  color: var(--menu-text);
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.4s forwards;
}

/* accent balkje */
.side-menu a::before,
.theme-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.side-menu a:hover::before,
.theme-toggle:hover::before {
  transform: scaleY(1);
}

.side-menu a:hover,
.theme-toggle:hover {
  background: var(--hover);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--menu-text);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 900;
}

.overlay.show {
  display: block;
}

main {
  padding: 20px;
}

/* Animaties */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* kleine delay per item */
.side-menu.open a:nth-child(2) {
  animation-delay: 0.1s;
}
.side-menu.open a:nth-child(3) {
  animation-delay: 0.2s;
}
.side-menu.open a:nth-child(4) {
  animation-delay: 0.3s;
}
.side-menu.open a:nth-child(5) {
  animation-delay: 0.4s;
}
.side-menu.open .theme-toggle {
  animation-delay: 0.5s;
}