* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --primary-color: #4891ff;
    --light-color: #f4f4f6;
    --med-color: #e3e6e7;
    --dark-color: #323232;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: #333;
    word-wrap: break-word;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
  }
  
  .logo {
    width: 140px;
  }
  
  /* Navbar */
  .navbar {
    background: #eaeded;
    padding: 10px;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .main-menu ul {
    display: flex;
  }
  
  .navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
  }
  
  .navbar ul li a:hover {
    color: var(--primary-color);
  }
  
  /* Hero */
  .hero {
    margin-bottom:50px;
  }
  
  .hero .container {
    background: url('../images/moto.PNG') no-repeat;
    background-size: 880px;
    background-position: bottom right;
    height: 550px;
  }
  
  .hero .hero-content {
    width: 70%;
  }
  
  .hero .hero-heading {
    padding-left: 20px;
  }
  
  .hero .hero-text {
    width: 70%;
    margin-bottom: 20px;
  }
  
  .hero .hero-text1 ul {
    list-style: none;
    width: 500px;
    margin: 30px 0;
    text-indent: -12px;
    margin-left: 50px;  
  }
  
  .hero .hero-text1 ul li {
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .hero .hero-text1 ul li i {
    margin-right: 8px; 
  }
  
  /* About */
  .about {
    padding: 40px 0;
  }
  
  .about .about-heading {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .about .about-body {
    display: grid;
    width: 100%;
  }
  
  .about .about-body .about-text {
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
  }
  
  .about .about-body .about-vision {
    text-align: justify;
  }
  
  .subhead {
    text-align: justify;
  }
  
  .subhead::first-letter {
    initial-letter: 3;
    font-weight: bold;
    padding-right: 4px;
  }
  
  .lead-mentor-photo {
    width: 30%;
    height: auto;
    border-radius: 10px;
    margin: 0 0 5px 60px;
    float: right;
    filter: grayscale(80%);
    transition: filter 0.15s;
  }
  
  .lead-mentor-photo:hover {
    filter: grayscale(0%);
  }
  
  /* Mentee List */
  .customer {
    width: 100%;
    border-collapse: collapse;
  }
  .customer td, .customer th {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  .customer tr:hover {background-color: #413f3f;}
  .customer th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #5c5c5c;
    color: white;
  }
  
  .btn-mentee {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    background-color: rgb(130, 134, 134);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 3px;
    padding: 6px 8px;
    cursor: pointer;
  }
  
  /* Mentor profile */
  .container-mentor {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    overflow: auto;
    column-gap: 20px;
  }
  
  .mentor {
    padding: 40px 10px 10px 30px;
  }
  
  .mentor-heading {
    width: 100%;
    font-weight:bold;
    font-size: 20px;
    margin-bottom: 40px;
    flex: 1;
  }
  
  .mentor-info-name {
    font-size: 20px;
    font-weight: bold;
  }
  
  .edu-heading,
  .prof-heading,
  .award-heading,
  .intellect-heading,
  .media-heading,
  .visit-heading {
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
    font-weight:bold;
    font-size: 20px;
    flex: 1;
  }
  
  .mentor-info,
  .edu-info,
  .prof-info,
  .award-info,
  .intellect-info
  .media-info,
  .visit-info {
    width: 100%;
    padding-right: 20px;
  }
  
  .visit-info ul {
    list-style-type: circle;
    margin-left: 350px;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 40px 0;
  }
  
  .testimonials .testimonials-heading {
    width: 700px;
    margin-bottom: 100px;
  }
  
  .testimonials .testimonials-grid {
    display: grid;
  }
  
  .testimonials .testimonials-grid1 {
    display: flex;
    flex-direction: column;
  }
  
  .testimonials .card p:nth-child(2) {
    margin-top: 30px;
    font-weight: bold;
  }
  
  .testimonials .collapsible {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: rgb(59, 59, 59);
    cursor: pointer;
    padding: 10px 20px 5px 20px;
    width: 100%;
    border: none;
    border-radius: 8px;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  .testimonials .active, .collapsible:hover {
    background-color: #dadada;
  }
  
  .testimonials .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .testimonials .active:after {
    content: "\2212";
  }
  
  .testimonials .content {
    padding: 0 18px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #ffffff;
  }
  
  /* Pricing */
  .pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .pricing .pricing-card-subheading {
    margin-bottom: 30px;
  }
  
  .pricing .pricing-card-price {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  
  .pricing ul {
    margin: 30px 0;
  }
  
  .pricing ul li {
    margin-bottom: 20px;
  }
  
  .pricing ul li i {
    margin-right: 10px;
  }
  
  .pricing .pricing-footer {
    margin: 30px 0;
  }
  
  /* FAQ */
  .faq {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  
  .faq .faq-group {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  
  .faq .faq-group .faq-group-header {
    padding: 20px 0;
    margin-bottom: 15px;
    position: relative;
  }
  
  .faq .faq-group .faq-group-header h4 {
    font-weight: 600;
    width: 95%;
    margin-left: 10px;
  }
  
  .faq .faq-group .faq-group-header i {
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 1.3rem;
    cursor: pointer;
  }
  
  .faq .faq-group .faq-group-body {
    display: none;
  }
  
  .faq .faq-group .faq-group-body.open {
    display: block;
  }
  
  .faq .faq-group .faq-group-body .text {
    text-align: justify;
    margin-left: 30px;
    margin-right: 30px;
  }
  
  .faq .faq-group .faq-group-body ol {
    text-indent: -1px;
    margin-left: 50px;
    margin-right: 30px;
    text-align: justify;
  }
  
  .faq ol .faq-menu {
    max-width: 400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .faq ol .faq-menu li {
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
  }
  
  .faq ol .faq-menu li.active {
    background: var(--primary-color);
    color: #fff;
  }
  
  /* Footer */
  .footer {
    padding: 50px 0;
    padding-bottom: 0px;
  }
  
  .footer h4 {
    margin-bottom: 10px;
  }
  
  .footer ul li {
    line-height: 2.5;
  }
  
  .footer a {
    color: #e9e7e7;
  }
  
  .footer i {
    font-size: 2rem;
    margin-right: 25px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }
  
  .footer-copyright {
    font-size: small;
    text-align: right;
  }
  
  .footer .card {
    margin: 20px 30px 30px 0;
  }
  
  .footer input[type='email'] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px 0;
  }
  
  /* Contact */
  .contact {
    padding: 40px 0;
  }
  .contact .container {
    background: url('../images/contact1.png') no-repeat;
    background-size: 500px;
    background-position: center bottom;
    height: 550px;
  }
  
  .icon {
    font-size: 250%;
    margin-bottom: 10px;
    padding: 0;
    border-radius: 10px;
    background: rgb(76, 77, 78);
    color: white;
    width: 15%;
    text-align: center;
    background-position: center;
  }
  
  .contact-heading {
    text-align: center;
  }
  
  .email-id {
    text-align: center;
  }
  
  /* Utility Classes */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Card */
  .card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 13px 20px;
    background: var(--light-color);
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.5s;
  }
  
  .btn:hover {
    opacity: 0.8;
  }
  
  .btn-primary {
    background: var(--primary-color);
    color: #fff;
  }
  
  .btn-dark {
    background: var(--dark-color);
    color: #fff;
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  /* Text Classes */
  .text-xxl {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
  }
  
  .text-xl {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px;
  }
  
  .text-lg {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 20px;
  }
  
  .text-md {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px;
  }
  
  .text-sm {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Background */
  .bg-primary {
    background: var(--primary-color);
    color: #fff;
  }
  
  .bg-light {
    background: var(--light-color);
    color: #333;
  }
  
  .bg-med {
    background: var(--med-color);
    color: #333;
  }
  
  .bg-dark {
    background: var(--dark-color);
    color: #fff;
  }
  
  .bg-black {
    background: #000;
    color: #fff;
  }
  
  /* Hamburger Button */
  .hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
  }
  
  .hamburger-button .hamburger-line {
    width: 30px;
    height: 3px;
    background: #333;
    margin: 6px 0;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu ul {
    margin-top: 100px;
    padding-right: 10px;
  }
  
  .mobile-menu ul li {
    margin: 10px 0;
  }
  
  .mobile-menu ul li a {
    font-size: 20px;
    transition: 0.3s;
  }
  
  /* Media Queries */
  @media (max-width: 860px) {
    .text-xxl {
      font-size: 2.5rem;
    }
  
    .logo {
      width: 100px ;
    }
  
    .navbar .main-menu {
      display: none;
    }
  
    .navbar .hamburger-button {
      display: block;
    }
  
    .hero .container {
      background: url('../images/moto.PNG') no-repeat;
      background-size: 800px;
      background-position: center bottom;
      height: 600px;
    }
  
    .hero-heading {
      padding-left: 40px;
      margin-left: 30px;
    }
  
    .hero .hero-text1 ul {
      text-align: center;
      padding-left: 30px;
    }
  
    .lead-mentor-photo {
      width: 30%;
      height: auto;
      border-radius: 10px;
      margin: 0 0 5px 60px;
      float: right;
      filter: grayscale(80%);
      transition: filter 0.15s;
    }
  
    .lead-mentor-photo:hover {
      filter: grayscale(0%);
    }
  
    .mentor {
      width: auto;
    }
    .container-mentor {
      max-width: fit-content;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      flex-direction:column;
      justify-content: space-between;
      overflow: auto;
      column-gap: 20px;
    }
  
    .mentor-info,
    .edu-info,
    .prof-info,
    .award-info,
    .intellect-info
    .media-info,
    .visit-info {
      width: auto;
      padding-right: 20px;
    }
  
  
    .contact .container {
      background: url('../images/contact1.png') no-repeat;
      background-size: 500px;
      background-position: center bottom;
      height: 550px;
    }
  
    .footer .footer-copyright {
      text-align: center;
    }
  
  }
  
  @media (max-width: 670px) {
    .navbar .main-menu {
      display: none;
    }
  
    .navbar .hamburger-button {
      display: block;
    }
  
    .hero .container {
      background: url('../images/moto.PNG') no-repeat;
      background-size: 750px;
      background-position: center;
      height: 600px;
    }
  
    .contact .container {
      background: url('../images/contact1.png') no-repeat;
      background-size: 500px;
      background-position: center bottom;
      height: 550px;
    }
    
    .hero-heading {
      font-size: 30px;
      text-align: left;
      padding-right: 20px;
      margin-right: 10px;
    }
  
    .hero .hero-content,
    .hero .hero-text1 {
      width: 100%;
      text-align: center;
    }
  
    .hero .hero-text1 ul {
      text-align: center;
      margin-left: 20px;
      margin-right: 10px;
    }
  
    .hero .hero-text1 ul li {
      text-align: left;
    }
  
    .lead-mentor-photo {
      width: auto;
      height: auto;
      border-radius: 10px;
      margin: 0 0 5px 60px;
      float: right;
      filter: grayscale(80%);
      transition: filter 0.15s;
    }
  
    .lead-mentor-photo:hover {
      filter: grayscale(0%);
    }
  
    .mentor {
      width: auto;
    }
  
    .container-mentor {
      max-width: fit-content;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      flex-direction:column;
      justify-content: space-between;
      overflow: auto;
      column-gap: 20px;
    }
  
    .mentor-info,
    .edu-info,
    .prof-info,
    .award-info,
    .intellect-info
    .media-info,
    .visit-info {
      width: auto;
      padding-right: 20px;
    }
  
    .visit-info ul {
      list-style-type: circle;
      margin-left: 100px;
    }
  
    .testimonials .testimonials-heading {
      max-width: 100%;
      text-align: center;
    }
  
    .testimonials .testimonials-grid,
    .pricing .pricing-grid,
    .footer .footer-grid,
    .footer .footer-copyright {
      grid-template-columns: 1fr;
    }
  
    .footer .card {
      margin-right: 0;
    }
  
    .footer .footer-grid,
    .footer .footer-copyright > div {
      text-align: center;
    }
  
    /* Text */
    .text-xl {
      font-size: 1.9rem;
    }
  
    .text-lg {
      font-size: 1.5rem;
    }
  
    .text-md {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 560px) {
    .text-xxl {
      font-size: 2rem;
    }
  
    .hero .container {
      background: url('../images/moto.PNG') no-repeat;
      background-size: 550px;
      background-position: center;
      height: 600px;
    }
  
    .contact .container {
      background: url('../images/contact1.png') no-repeat;
      background-size: 300px;
      background-position: center;
      height: 550px;
    }

    .hero {
        margin-bottom: 80px;
    }
  
    .hero .hero-heading{
      font-size: 25px;
      text-align: center;
      padding-right: 20px;
    }
  
    .hero .hero-text1 ul {
      width: 90%;
      text-align: center;
      padding-left: 20px;
    }
  
    .hero .hero-text1 ul li {
      text-align: left;
    }
  
    .mentor {
      width: auto;
    }
    .container-mentor {
      max-width: fit-content;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      flex-direction:column;
      justify-content: space-between;
      overflow: auto;
      column-gap: 20px;
    }
  
    .mentor-info,
    .edu-info,
    .prof-info,
    .award-info,
    .intellect-info
    .media-info,
    .visit-info {
      width: auto;
      padding-right: 20px;
    }
  
    .visit-info ul {
      list-style-type: circle;
      margin-left: 100px;
    }
  }
  
  /* contact */
  /*----------contact us page--------------*/
  
  .location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
  }
  .location iframe{
    width: 100%;
  }
  .contact-us{
    width: 80%;
    margin: auto;
  }
  .contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
  }
  .contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
  }
  .contact-col div p{
    padding: 0;
  }
  .contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
  }
  .contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  /*-----Scroll to Top button-----*/
  
  #topBtn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgb(146, 146, 146);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: 0.15s;
  }
  
  #topBtn:hover {
    background-color: #555;
  }