:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b1d3a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f39100; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --gk-border-radius-xl: 0.75rem;
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


body { font-family: 'Poppins', sans-serif;
background-color: var(--background-color); 
    min-height: 100vh;}
    .mobile-animate.collapse { transition: all 0.4s ease-in-out; }
    .mobile-animate.collapsing { height: 0 !important; opacity: 0; overflow: hidden; }
    .mobile-animate.collapse.show { opacity: 1; transform: translateY(0); }
    @media (max-width: 991px) {
      .mobile-animate.collapse.show { animation: fadeSlideDown 0.4s ease forwards; background: var(--background-color); padding: 10px; }
    }
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .navbar-nav .nav-link { padding: 0.5rem 1rem; color: var(--heading-color); }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover { color: var(--accent-color) !important; }
    .btn-custom { color: #fff; background: var(--heading-color); border-radius: 8px; padding: 6px 18px; font-weight: bold; }
    @media (max-width: 400px) {
  .navbar-brand span {
    font-size: 18px !important;
  }
}


nav{
  background-color: #fff; box-shadow: 0 0 15px rgba(0,0,0,0.05); padding: 0.6rem 0;
}
nav img{
    max-height: 80px;
    padding: 5px;
}
nav span{
  font-family: 'Ethnocentric', sans-serif;
    color: #0b1d3a;
    line-height: 1.1;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero{
    /* margin-top: 40px; */
}
.hero .box-big
{
  background-color:var(--accent-color) !important;
}
.hero .box-small
{
  background-color:var(--heading-color) !important;
}
.hero .tag-line{
    color:var(--heading-color) !important;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16pt;
    
}
.hero .tag-line-bottom{
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 14pt;
    color: var(--heading-color) !important;
}
.hero .span-heading-h1, .span-heading-about-h1{
    color: var(--accent-color) !important;
}

.hero .hero-p{
  
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 12pt;
    color: var(--heading-color) !important;
}
.hero .span-hero-para{
    font-size: 14pt;
    color: var(--accent-color) !important;
}
.btn-blue{
    margin-top: 30px !important;
    background-color: var(--heading-color) !important;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 16pt;
}
.li-top-hero{
    font-family: "Poppins" !important;
    font-weight: 600;
    font-size: 12pt;
}
.btn-side-text{
    margin-top: 40px;
    margin-left: 20px;
    font-family: "Poppins" !important;
    font-weight: 600;
    font-size: 12pt;
    color: #139a74;
}
.box-student{
    margin-bottom: 0px !important;
}
.box-student-round{
  margin-bottom: 10px !important;
  margin-top:-100px !important;
  /* margin-left:50px !important; */
}
.hero-heading {
  color: var(--heading-color);
  font-size: 36px;
  line-height: 1.2;
}
.hero-heading .highlight {
  color: var(--accent-color);
}
.hero-subtext {
  font-size: 16px;
  color: #555;
}
.li-top-hero {
  margin-bottom: 6px;
}
.btn-blue {
  background: #0b1d3a;
  color: #fff;
  border-radius: 8px;
  padding: 6px 18px;
  font-weight: bold;
}
.btn-blue:hover {
  background: #f39100;
}
.btn-side-text {
  margin-left: 10px;
  font-size: 14px;
  color: #555;
}

/* Image group positioning */
.hero-image-group {
  min-height: 500px;
}
.shape-big {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.top-img {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.shape-small {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 0;
}
.bottom-img {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.student-card {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  z-index: 2;
}
.student-avatars img {
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  margin-left: -8px;
}
.student-avatars img:first-child {
  margin-left: 0;
}
.avatar img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-image-group {
    margin-top: 30px;
    text-align: center;
  }
  .shape-big,
  .shape-small {
    display: none;
  }
  .student-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 15px;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
  .navbar-collapse.show {
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
    text-align: left;
  }
}



.home-about{
    background-image: url(../images/map.svg);
    margin-top: 60px !important;
    margin-bottom: 0px !important;
    
}
.heading-about-section{
    font-family: "Poppins" !important;
    font-weight: 600;
    font-size: 24pt;
    color: #139a74;
}
.about-heading{
    margin-top: 40px;
    
}
.heading-about-section1{
   
}
.highlight-text{
    margin-top: 50px !important;
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center !important;
    max-width: fit-content;
    font-family: "Poppins" !important;
    font-weight: 600;
    font-size: 14pt;
}
.botton-div{
    margin-bottom: 60px !important;
}
.mar-div-about{
    padding-top: 20px !important;
}
.tag-line-about1{
    margin-top: 40px !important;
    font-family: "poppins" !important;
    font-weight: 600;
    font-size: 11pt;
 
}
.cursor{
    position: relative;
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 30px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}
/* Animation */
.typewriter-animation {
  animation: 
    typewriter 5s steps(50) 1s 1 normal both, 
    blinkingCursor 500ms steps(50) infinite normal;
}
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blinkingCursor{
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}
.typewriter-.typewriter-animation {
  content: "";
  animation: typing 13.5s infinite;
}

.typewriter-.typewriter-animation {
  content: "";
  border-right: 1px solid var(--caret);
  animation: blink 0.5s linear infinite;
}


.first-ocup{
  margin-left: -30px !important;
  margin-top: 65px !important;
}
.second-ocup{
  margin-top: 260px !important;
  margin-left: 10px !important;
}
.third-ocup{
  margin-top: 100px !important;
  margin-left: -66px !important;
}
.forth-ocup{
  margin-top: -200px !important;
  margin-left: 98px !important;
}
.second-ocup-right{
  margin-top: 260px !important;
  margin-left: 425px !important;
  background-color:  #139a74 !important;

}
.third-ocup-right{
  margin-top: 100px !important;
  margin-left: 498px !important;
  background-color:  #139a74 !important;
}
.first-ocup-right{
  margin-left: 466px !important;
  margin-top: 65px !important;
  background-color:  #139a74 !important;

}
.forth-ocup-right{
  margin-top: -200px !important;
  margin-left: 340px !important;
  background-color: #139a74 !important;

}
.ocup-side-text{
  margin-top: -60px !important;
}
.hero-head-tagline{
  margin-top: 0px !important;
}
.text-style-heading{
  font-weight: 700 !important;
  font-size: 54px !important;
  font-family: 'poppins' !important;
  color: #0b1d3a !important;
}
.foster-orange-text{
  color: #f79320 !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: larger;
}
.foster-blue-text{
  color: #0b1d3a !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: x-large;
}
#used-for{
padding-bottom: 48px ;
}
.small-used-for{
  color: #139a74 !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: xx-large;
  margin-top: 64px !important;
}
.bg-primary{
  background-color: #f79320 !important;
}
.who-head{
  color: #f79320 !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: x-large;
}
.who-head-orange{
  color: #0b1d3a !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: x-large;
}
.who-p{
  color: #ffffff !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: large;
}
.who-p-orange{
  color:#ffffff !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: large; 
}
.bg-blue{
  background-color: #0b1b3a !important;
}
.bg-light-bg{
  background-color: #F2F2F2;
}


/* features*/
.caption-bold{
  font-weight: 600 !important;
  font-family: "Merriweather" !important;
  font-size: 48px;
}
.p-font-heading{
  font-family:'poppins'!important;
  font-size: large!important;
  font-weight: 600 !important;
}
.h-font-card{
  font-family: "poppins" !important;
  font-weight: 600;
  font-size: 22pt;
}
.card-feature{
  
}
.card-feature:hover {
 transform: scale(1.05);
}
.h-row-fix{

  min-height: 340px !important;
  padding: 20px !important;
  border-radius: 20px !important;
  border: 2px solid #139a74;
}



/* step by step*/
.foster-section {
    padding: 48px 0;
    margin-top: 48px;
}
.foster-inner-container {
    max-width: 1280px;
}
.foster-section h2 {
    font-family: 'HouschkaRoundedAlt-Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 4.8em;
    color: #000000;
    text-align: center;
}
.foster-section p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.8em;
    color: #000000;
    text-align: center;
}
.landYourDreamJob .jobSteps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: flex
;
    justify-content: space-between;
}
.landYourDreamJob .jobSteps li {
    width: 15%;
    position: relative;
}
.landYourDreamJob .jobSteps li .iconWrap {
    width: 72px;
    height: 72px;
    border: 1px solid #0b1d3a;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    line-height: 72px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.landYourDreamJob .jobSteps li p {
    font-style: normal;
    font-weight: 600;
    font-size: 1.6em;
    color: #000000;
    text-align: center;
    margin: 20px 0 10px 0;
}
.landYourDreamJob .jobSteps li p.desc {
    font-weight: 400;
    color: #474747;
}
.landYourDreamJob .jobSteps li .drowLine1 {
    position: absolute;
    top: -10px;
    right: -140px;
    z-index: 1;
}
.landYourDreamJob .jobSteps li .drowLine1 svg, .landYourDreamJob .jobSteps li .drowLine2 svg {
    fill: #f79320;
}
.landYourDreamJob .jobSteps li .drowLine2 {
    position: absolute;
    top: 50px;
    right: -140px;
    z-index: 1;
}
.landYourDreamJob .btn-wrap {
    text-align: center;
    margin-top: 50px;
}
.foster-primary-btn {
    background: #0b1d3a;
    border-radius: 6.25rem;
    font-size: 1.5em;
    color: #fff !important;
    letter-spacing: .03125rem;
    padding: 12px 30px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    width: auto;
}
.jobSteps {
  white-space: normal !important;
  height: auto !important;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .text-style-heading{
    font-size: 36px !important;
    margin-bottom: 60px !important;
  }
  .foster-inner-container {
    flex-direction: column !important;
  }
}

      
        .section-how-it{
 background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
        }
        .container-how-it {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
           
           padding: 40px 20px;       }

        .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .subtitle {
            font-size: 1.25rem;
            color: #34495e;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .process-container {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .step {
            flex: 1;
            min-width: 180px;
            max-width: 200px;
            position: relative;
            z-index: 2;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            border: 3px solid #27ae60;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
        }

        .step-icon svg {
            width: 40px;
            height: 40px;
            stroke: #27ae60;
            fill: none;
            stroke-width: 2;
        }

        .step-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f39c12;
            margin-bottom: 1rem;
        }

        .step-description {
            font-size: 1rem;
            color: #2c3e50;
            line-height: 1.5;
            font-weight: 500;
        }

        .connecting-line {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent 10%, #f39c12 10%, #f39c12 90%, transparent 90%);
            background-image: repeating-linear-gradient(
                90deg,
                #f39c12,
                #f39c12 10px,
                transparent 10px,
                transparent 20px
            );
            z-index: 1;
        }

        .cta-button {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .process-container {
                flex-direction: column;
                align-items: center;
                gap: 3rem;
            }

            .step {
                max-width: 300px;
            }

            .connecting-line {
                display: none;
            }

            .step::after {
                content: '';
                position: absolute;
                bottom: -1.5rem;
                left: 50%;
                transform: translateX(-50%);
                width: 3px;
                height: 30px;
                background: linear-gradient(180deg, #f39c12, transparent);
            }

            .step:last-child::after {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }

            body {
                padding: 20px 15px;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
   
        }

#testinomial{
  padding-top: 48px;
  padding-bottom: 48px;
}
.lead{
  color: #139a74 !important;
  font-family: 'poppins';
  font-weight: 600;
  font-size: xx-large;
  margin-top: -64px !important;
}
.btn-testimonial{
  font-family: 'poppins';
  font-weight: 600;
  font-size: 18px !important;
}
#testinomial .h5, .box-orange-text{
  color:#f79320 !important;

}
#testinomial .text-muted, .green-text{
  color:#139a74;
}
#testinomial .rfs-8{
  color:#0b1d3a !important;
}

#book-section{
  padding-top: 48px;
  padding-bottom: 48px;
  
}
#book-section img{
  width: 400px;
}
#book-section .card{
  width: auto;
}
.booksection-head{
  font-size: 42px !important;
}
#book-section .form-label{
  font-size: 16px !important;
  color:#f2f2f2 !important;
}

.green-text{
  color:#139a74 !important;
}
.last-div{
 border-right: 1pt solid #f79320;
}
.tag-line-about1{
    /*margin-top: -200px !important;*/
    font-family: "poppins" !important;
    font-weight: 600;
    font-size: 11pt;
 
}



/*contact us*/

.contact-section {
            padding: 40px 0;
          
        }
          .contact-card {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .contact-icon {
            font-size: 1.5rem;
            color: orange;
            background: #e8f0f7;
            padding: 10px;
            border-radius: 50%;
        }
        .contact-text a {
            color: #0a7b55;
            text-decoration: none;
            font-size: 1.1rem;
        }
        .contact-text a:hover {
            text-decoration: underline;
        }
        .divider {
            border-left: 2px solid orange;
            height: 80px;
            margin: auto 20px;
        }
        .agent-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid orange;
        }

        .lead-how-it-page{
              font-size: 1.25rem;
    font-weight: 300;
          
        }
        .eco-card {
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      position: relative;
      transition: transform 0.3s ease;
    }
    .eco-card:hover {
      transform: translateY(-5px);
    }
    .eco-badge {
      background-color: #2c3e50;
      color: #fff;
      padding: 6px 18px;
      border-radius: 20px;
      position: absolute;
      top: -15px;
      left: 20px;
      font-size: 14px;
    }
    .eco-arrow {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: #2c3e50;
      color: #fff;
      border-radius: 50%;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .eco-arrow i {
      font-size: 14px;
    }

     .feature-how-it-box {
      text-align: center!important;
      padding: 20px !important;
    }
    .feature-how-it-box img {
      width: 80px !important;
      height: 80px !important;
      margin-bottom: 15px !important;
    }
    .feature-how-it-box p {
      font-size: 15px;
      color: #333;
    }
     .work-section {
      background: linear-gradient(135deg, #f0f7ff, #ffffff);
      position: relative;
      overflow: hidden;
    }
    .work-section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 250px;
      height: 250px;
      background: rgba(13, 110, 253, 0.08);
      border-radius: 50%;
    }
    .work-section::after {
      content: "";
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 200px;
      height: 200px;
      background: rgba(255, 193, 7, 0.12);
      border-radius: 50%;
    }

    .feature-list li {
      font-size: 16px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .feature-list i {
      color: #0d6efd;
      font-size: 18px;
    }
    .highlight-box {
      background: #fff;
      padding: 18px;
      border-left: 4px solid #0d6efd;
      border-radius: 10px;
      font-weight: 500;
      font-size: 18px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .cta-links a {
      display: inline-block;
      margin-right: 15px;
      margin-top: 10px;
      font-weight: 500;
      text-decoration: none;
    }
    .cta-links a:first-child {
      color: #0d6efd;
    }
    .cta-links a:last-child {
      background: #0d6efd;
      color: #fff;
      padding: 8px 18px;
      border-radius: 8px;
      transition: 0.3s;
    }
    .cta-links a:last-child:hover {
      background: #084298;
    }

    .hero-about-page {
      padding: 90px 0;
      background: linear-gradient(135deg, #f8f9fa, #eaf4ff); /* soft gradient */
    }
   .hero-about-page h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #0d1b2a;
    }
   .hero-about-page p {
      font-size: 1.2rem;
      margin: 20px 0;
      color: #333;
    }
   .hero-about-page img {
      max-width: 100%;
      border-radius: 12px;
    }
    .btn-primary {
      padding: 12px 28px;
      font-size: 1rem;
      border-radius: 6px;
    }

     .section-about {
      padding: 80px 0;
    }
    .section-about-title {
      font-weight: 700;
      margin-bottom: 25px;
    }
    .bg-gradient-light-about {
      background: linear-gradient(135deg, #f9fbff, #ffffff);
    }
    .highlight-box-about {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    .icon-circle-about {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0d6efd;
      color: #fff;
      font-size: 20px;
      margin-bottom: 15px;
    }


    .hero-school-page {
  background: linear-gradient(135deg, #eef5ff, #f9fbff);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.hero-school-page-bg-circle {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(13,110,253,0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-school-page-bg-dots {
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#0d6efd 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 0;
}

.floating-img {
  max-height: 350px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
    
    .hero-school-page h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #0d1b2a;
    }
    .hero-school-page p {
      font-size: 1.2rem;
      margin: 15px 0;
      color: #333;
    }
    .section-title-school {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .feature-box-school {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: 0.3s;
    }
    .feature-box-school:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    .cta-section-school {
      background: #0d6efd;
      color: white;
      padding: 60px 0;
      text-align: center;
      border-radius: 12px;
    }
    .cta-section-school h2 {
      font-weight: 700;
    }
    .form-section-school {
      padding: 60px 0;
    }
    .form-section-school form {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }


     .section-title-mentor-page {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
    }
    .features-box-mentor-page {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: 0.3s;
      height: 100%;
    }
    .features-box-mentor-page:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    .cta-section-mentor-page {
      background: #0d6efd;
      color: white;
      padding: 60px 0;
      text-align: center;
      border-radius: 12px;
    }
    .cta-section-mentor-page h2 {
      font-weight: 700;
    }
    .form-section-mentor-page {
      padding: 60px 0;
    }
    .form-section-mentor-page form {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
