@charset "utf-8";
    @keyframes fadeInAnimation {
        0% { opacity: 0; } /* Start completely transparent */
        100% { opacity: 1; } /* End fully opaque */
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #fff;
	/* Fade in Animation */
	animation: fadeInAnimation ease 0.5s; 
        animation-iteration-count: 1; 
        animation-fill-mode: forwards;
}

h1, h2, h3, h4, h5 {
	font-family: "DM Serif Display", serif;
}

/* Navbar Style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #191B4B;
  padding: 10px 40px;
  color: #fff;
	font-size: 1.3em;
	gap: 3%;
}
#navbarContent {
	font-weight: 600;
}

.navbar-left {
  display: flex;
  align-items: center;
}
.nav-item {
	padding: 2%; 
}
.nav-item a:hover {
	color: #FCC136 !important;
	text-decoration: none;
	transition: 0.3s;
}


/* Navbar Dropdown Style */
.dropdown {
  	margin-top: 1.5%;
	position: relative;
	color: aliceblue;
	font-weight: 500;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.01em;
	letter-spacing: 0.02em;
	align-items: center;
}
.dropdown:hover {
	color: #FCC136;
	text-decoration: none;
	transition: 0.3s;
	cursor: pointer;
}
.dropdown:active {
	color: #FCC136;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
}

.dropdown-toggle {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 5px;
  font-size: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #DCDBD8;
  border-radius: 4px;
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-item {
 	 display: block;
  padding: 10px 20px;
  color: #191B4B;
  font-weight: bold;
}

.dropdown-menu li a:hover {
  	background-color: #B2B2B5;
	color: #FFFFFF !important;
	transition: 0.3s;
}
.dropdown-menu li a:active {
  	background-color: #FCC136;
	color: #191B4B !important;
}

.dropdown-wrapper:focus-within .dropdown-menu,
.dropdown-wrapper:hover .dropdown-menu {
  	display: block;
}


.contact-no {
  	text-align: left;
  	line-height: 1.2;
  	font-weight: bold;
	
}

.phone {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.consultation-btn {
  background-color: #ffc72c;
  color: #191B4B;
  font-weight: bold;
  padding: 1% 2% !important;
  border: solid 3px transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
max-width: 20%;
  margin-left: 2%;
	align-content: center;
}
.consultation-btn:hover{
	text-decoration: none;
	color: #191B4B;
	background-color: #DCDBD8;
	transition: 0.3s;
}

.consultation-btn:active {
	border: solid 3px #FCC136;
	color: #FCC136;
	background-color: transparent;
}

.bg-darkblue {
  background-color: #191B4B !important;
}

.brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
}
/* Hero */
     .hero-section {
      background: url("images/Hero.jpg") no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
    }

    .hero-overlay {
      background: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 3rem;
      max-width: 600px;
    }

    .hero-content h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 3rem;
      font-weight: 500;
    }

    .hero-content h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.1rem;
    }
.hero-bottom-p {
	margin-bottom: 7%;
}

    .hero-consult {
      background-color: #FFC83D;
      color: #000;
      font-weight: bold;
      border: solid 3px transparent;
      padding: 12px 30px;
      border-radius: 15px;
      font-size: 1rem;
      transition: 0.3s;
    }

    .hero-consult:hover {
	text-decoration: none;
	color: #191B4B;
	background-color: #DCDBD8;
	transition: 0.3s;
    }

	.hero-consult:active {
	border: solid 3px #FCC136;
	color: #FCC136;
	background-color: transparent;
}
/* Testimonial section */

	.testimonial-section {
      padding: 5% 20px;
		background-color: #191B4B; 
		color: aliceblue;
    }

    .testimonial-section h2 span {
      color: #FFC83D;
      font-weight: bold;
      text-decoration: underline;
    }

    .testimonial-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .testimonial-section p {
      font-size: 1.3rem;
      line-height: 1.6;
      margin-bottom: 30px;
	  padding-right: 5%;
    }

    .stars i {
      color: #FFC83D;
      font-size: 2rem;
      margin-right: 8px;
    }

    .user-icons {
      margin-top: 30px;
    }

    .user-icons img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 10px;
    }

    .testimonial-card {
      background-color: #eee;
      border-radius: 10px;
      overflow: hidden;
      color: #111;
    }

    .testimonial-card .card-body {
      padding: 30px;
    }

    .testimonial-card blockquote {
      font-size: 1rem;
      font-weight: 600;
		font-family: "DM Serif Display", serif;
    }

    .testimonial-card .author {
      margin-top: 15px;
      font-size: 0.95rem;
      font-style: italic;
      color: #333;
    }

    .read-more {
      font-weight: bold;
      color: #191B4B;
      text-decoration: none;
      float: right;
      margin-top: 20px;
	  padding-bottom: 9%;
    }

    .read-more i {
      margin-left: 5px;
    }
.read-more:hover {
	color:#191B4B;
}
/* Learning Vid section */

.learning-vid {
  margin: 5%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5%;
  flex-wrap: wrap;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
	border-radius: 15px;
 border: solid 3px  #191B4B;
}
/* Featured section */

.featured {
  padding: 3% 15%;
  color: black;
  background-color: #DCDBD8;
}

.featured h2 {
  margin-bottom: 2%;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
}

.featured p {
  font-size: 1.3em;
  margin-bottom: 2.5%;
}

.featured-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* horizontal-offset vertical-offset blur-radius color */
}


.featured-card-body {
  padding: 20px;
}

.featured-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.featured-card-body p {
  font-size: 1.2em;
  margin-bottom: 1rem;
}

/* Meet John section */
.meet-john {
	display: flex;
	justify-content: space-between;
	align-content: center;
}
.meet-left {
	padding: 12% 10%;
	align-items: center;
}
.meet-left p {
	font-size: 1.2em;
	padding-bottom: 2%;
}
.meet-left-btm {
	border-top: solid thin #000000;
	padding-top: 2%;
	font-size: 0.75em;
}


.meet-right {
	padding: 0;
}

/* Arrow Back */
.go-back {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2% 5%;
  min-height: 80px;
}

.arrow-icon {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.fa-arrow-left {
  color: #191B4B;
  transition: 0.3s;
}
.fa-arrow-left:hover {
	color: #FFC83D;
}

.go-back-text {
  text-align: center;
  width: 100%;
}

.go-back-text h1 {
  font-weight: bolder;
  font-size: 3em;
  color: #191B4B;
  margin: 0;
}
/* Testimonial right */
#darren-k {
	margin-left: 0;
}
.tst-right {
	display: flex;
	justify-content: space-between;
	align-content: center;
}
.tst-content-left {
	padding: 10% 10%;
	align-items: center;
	align-content: center;
}
.tst-content-left h1 {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: bolder;
	color: #191B4B;
}
.tst-content-left p {
	font-size: 1.7em;
}
.tst-content-left span {
	color: #FFC83D;
}

.tst-left-btm {
	padding-top: 1%;
	font-size: 0.75em;
	font-weight: bold;
}

.tst-content-right {
	padding: 4% 0;
}
.tst-content-right img {
	border-bottom-left-radius: 15px; 
	border-top-left-radius: 15px;
}
/* Testimonial left */
.tst-left {
	display: flex;
	justify-content: space-between;
	align-content: center;
	background-color: #DCDBD8;
}
.tst-content-right2 {
	padding: 10% 10%;
	align-items: center;
	align-content: center;
}
.tst-content-right2 h1 {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: bolder;
	color: #191B4B;
}
.tst-content-right2 p {
	font-size: 1.7em;
}

.tst-right-btm {
	padding-top: 1%;
	font-size: 0.75em;
	font-weight: bold;
}

.tst-content-left2 {
	padding: 4% 0;
}
.tst-content-left2 img {
	border-bottom-right-radius: 15px; 
	border-top-right-radius: 15px;
}
 /* Testimonials Group section */
.testimonials-section2 {
      text-align: center;
      padding: 4rem 1rem 4rem 1rem;
	background-color: #DCDBD8;
    }

    .testimonials-section2 h3 {
      font-family: 'DM Serif Display', serif;
      font-weight: bolder;
	 margin-bottom: 4rem;
      color: #191B4B;
      font-size: 3rem;
    }

    .testimonial-card2 {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
      padding: 1.5rem;
      position: relative;
      text-align: left;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .quote-icon {
      font-size: 2em;
		width: 40px;
		font-weight: bolder;
      height: 40px;
      background-color: #1e2b57;
      color: #ffbf2f;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .testimonial-text2 {
      font-size: 1.2rem;
      color: #333;
      line-height: 1.6;
    }

    .testimonial-text2 strong {
      font-weight: 600;
    }

    .testimonial-author2 {
      font-size: 0.85rem;
      margin-top: 1rem;
      font-style: italic;
      color: #555;
    }

/* Testimonial Consult */
.tst-consult {
  margin: 5% auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.tst-consult h1 {
  font-weight: bold;
  font-size: 2.5em;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.tst-consult p {
  font-size: 1.4em;
  margin-bottom: 1.5rem;
}

.tst-consult-h1 span {
  color: #FFC83D;
  text-decoration: underline;
  text-decoration-color: #FFC83D;
}

.btn-book {
  background-color: #FFC83D;
  border: solid 3px transparent;
  padding: 10px 40px;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: transparent;
  border: solid 3px #FFC83D;
  color: #FFC83D;
}
/* Services */

    .service-section {
      text-align: center;
      padding: 2rem 0;
    }

    .service-icon {
      font-size: 3rem;
      color: #1e2b57;
      margin-bottom: 2rem;
    }

    .service-title {
      font-family: 'DM Serif Display', serif;
      font-weight: bold;
      color: #1e2b57;
      margin-bottom: 0.75rem;
    }

    .service-description {
      color: #333;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }


    .btn-learn {
      background-color: #ffbf2f;
      color: black;
      font-weight: 600;
      padding: 0.4rem 1rem;
      font-size: 0.85rem;
      border: solid 2px transparent;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .btn-learn:hover {
      background-color: transparent;
	  border: solid 2px black;
		color: black;
    }

.fa-circle-dot {
	marign-right: 2rem;
	padding-right: 2rem;
}
.fa-circle-check {
	marign-right: 2rem;
	padding-right: 2rem;
	color: #FFBD1D;
}

#professional-img {
	border-radius: 0;
}

#professional-text h1{
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 2rem;
	margin-bottom: 1.4rem;
}

#professional-text p {
	font-size: 1.2rem;
}
#professional-list {
	font-size: 1.2rem;
	font-weight: normal;
}

#professional-list ul {
	list-style: none;
}
#professional-list li {
	margin-bottom: 1.8rem;
}
#youtube-img {
	border-radius: 0;
}

#youtube-text h1{
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 2rem;
	margin-bottom: 1.4rem;
}

#youtube-text p {
	font-size: 1.2rem;
}
#youtube-list {
	font-size: 1.2rem;
	font-weight: normal;
}

#youtube-list ul {
	list-style: none;
}
#youtube-list li {
	margin-bottom: 1.8rem;
}

#services {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* Consultation */
#consult {
	background-color: white;
	margin-top: 2rem;
}

.label {
	font-weight: bold;
}

.form-control {
	background-color: #DCDBD8;
}

.booking-form {
      background-color: #fff;
      padding: 2rem;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      max-width: 800px;
      margin: 1rem auto 3rem auto;
    }
    .booking-form h3 {
      font-family: 'DM Serif Display', serif;
      font-weight: bold;
		font-size: 2.5rem;
    }
    .form-control::placeholder {
      color: #9A9A9A;
    }
    .btn-book-now {
      background-color: #FFC83D;
      color: #000;
      font-weight: 600;
		border: solid 2px transparent;
      border-radius: 4px;
      padding: 0.6rem 1.5rem;
      transition: 0.3s;
    }
    .btn-book-now:hover {
      background-color: transparent; 
	  border: solid 2px #FFC83D;
	  color: #FFC83D;
}

#consult {
	margin-bottom: 0.2rem;
}

    .alert-success {
      display: none;
      margin-top: 1rem;
      border-radius: 8px;
    }

/* FAQ section */
.tst-left2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3% 5%;
  background-color: #DCDBD8;
}

.tst-content-right3 {
	align-content: center;
	align-items: center;
	justify-content: center;
}

.tst-content-left3,
.tst-content-right3 {
  flex: 1 1 45%;
  max-width: 48%;
}

#faq-img {
  width: 100%;
  height: auto;
	margin: 0;
	border-radius: 0;
}

#faq-text h1 {
	font-size: 2rem;
	font-family: "DM Serif Display", serif;
	font-weight: bold;
	margin-bottom: 2rem;
}
/* Accordion styles */
.faq-section {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

.faq-btn {
  font-family: 'Roboto Condensed', sans-serif;
  color: #191B4B;
  font-weight: bold;
  text-align: left;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
}

.faq-btn:hover,
.faq-btn:focus {
  text-decoration: none;
  color: #FFC83D;
}

.card-header {
  background-color: #F4F4F4;
  border: none;
}

.card-body {
  font-size: 1rem;
  color: #333;
  font-family: 'Roboto Condensed', sans-serif;
}



/* Footer section */
 .footer {
      padding: 60px 0 20px 0;
      background-color: #191B4B;
    }

    .footer-logo {
      max-width: 100px;
      margin-bottom: 15px;
		align-content: center
		
    }

    .footer h5 {
      font-weight: 400;
      color: white;
      margin-bottom: 1rem;
	  letter-spacing: 0.1em;
    }

    .footer a {
      color: #DEDEDE;
      text-decoration: none;
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
    }

    .footer a:hover {
      color: #FCC136;
	text-decoration: underline;
    }

    .btn-custom {
      background-color: #FFC83D;
      border: solid 2px transparent;
      color: #191B4B;
      font-weight: bold;
		border-radius: 5px;
      padding: 10px 20px;
      max-width: 45%;
      margin-bottom: 10px;
    }

.btn-custom:hover{
	text-decoration: none;
	color: #191B4B;
	background-color: #DCDBD8;
	transition: 0.3s;
}
.btn-custom:active {
	border: solid 2px #FCC136;
	color: #FCC136;
	background-color: transparent;
}
    .btn-outline-custom {
      border: 2px solid #FFC83D;
      background-color: transparent;
      color: #FFC83D;
      font-weight: bold;
      padding: 8px 38px;
      border-radius: 5px;
	  max-width: 45%;
    }
	.btn-outline-custom:hover{
	text-decoration: none;
	color: #191B4B;
	background-color: #DCDBD8;
	border: 2px solid transparent;
	transition: 0.3s;
}
	.btn-outline-custom:active {
	border: solid 2px white;
	color: white;
	background-color: transparent;
}

    .footer-bottom {
      border-top: 1px solid #ccc;
      margin-top: 40px;
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      flex-wrap: wrap;
	  color: white;
		margin-bottom: 3%;
    }
	.follow {
	display: flex;
	flex-direction: row;
	margin: 0;
		
}
    .footer-icons a {
      font-size: 24px;
      color: #FFC83D;
      margin-left: 15px;
	  display: inline-flex;
	  flex-direction: row;
    }

	.footer-icons a:hover {
	text-decoration: none;
	color: white;
	transition: 0.3s;
	}
/* Responsiveness section */

    @media (max-width: 767px) {
      .testimonial-card {
        margin-top: 40px;
      }
	.featured-card {
        margin-top: 40px;
      }
		.learning-vid {
    flex-direction: column;
    text-align: center;
  }
		  .meet-john {
    flex-direction: column;
    text-align: center;
  }

  .meet-left, .meet-right {
    flex: 1 1 100%;
    padding: 5% 3%;
  }

  .meet-left h1 {
    font-size: 2rem;
  }

  .meet-left p {
    font-size: 1.1em;
  }

  .meet-left-btm {
    font-size: 0.85em;
  }
		.consultation-btn {
	padding: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 20%;
}
	.go-back {
    padding: 3% 5%;
  }

  .arrow-icon {
    left: 3%;
  }

  .go-back-text h1 {
    font-size: 2.2em;
  }
		.tst-consult h1 {
    font-size: 2em;
  }

  .tst-consult p {
    font-size: 1.2em;
  }

  .btn-book {
    font-size: 1.1em;
    padding: 10px 30px;
  }
		.service-icon {
        font-size: 2.5rem;
      }

      .service-title {
        font-size: 1.1rem;
      }

      .service-description {
        font-size: 0.9rem;
      }
     .form-row > div {
        margin-bottom: 1rem;
      }
	
		/*end of media */
    }
   @media (max-width: 575.98px) {
      .testimonials-section h3 {
        font-size: 1.25rem;
      }

      .testimonial-card {
        padding: 1.25rem;
      }

      .testimonial-text {
        font-size: 0.9rem;
      }

      .testimonial-author {
        font-size: 0.8rem;
      }

      .quote-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
      }
	   .consultation-btn {
		   margin: 2rem auto;
		   min-width: 40%;
	   }
		.faq-btn {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .card-body {
    font-size: 0.95rem;
  }
	    .tst-left {
    flex-direction: column;
    align-items: center;
  }

  .tst-content-left2,
  .tst-content-right2 {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 1rem 0;
  }

  .faq-section {
    width: 100%;
  }

  #faq-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

    /*end of media */
}

@media (max-width: 480px) {
 		   .consultation-btn {
		   padding:0;
		   margon:0;
	   }
	.read-more {
        padding-bottom: 0%;
      }
	.featured {
		padding-bottom: 100px;
	}
      
	.meet-left h1 {
    font-size: 1.75rem;
  }

  .meet-left p {
    font-size: 1.2em;
  }

  .meet-left-btm {
    font-size: 0.8em;
  }
.meet-right img {
	max-width: 100%;
}
.testimonials-section2 h3 {
	font-size: 2rem;
	}
	.arrow-icon i {
    font-size: 2.5em;
  }

  .go-back-text h1 {
    font-size: 1.8em;
  }
	  .tst-left,
  .tst-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tst-content-left,
  .tst-content-right2,
  .tst-content-right,
  .tst-content-left2 {
    padding: 5% 8%;
  }

  .tst-content-right img,
  .tst-content-left2 img {
    width: 100%;
    max-width: 90vw;
    border-radius: 20px; /* Adjust for stacked layout */
  }

  .tst-content-left p,
  .tst-content-right2 p {
    font-size: 1.2em;
  }

  .tst-content-left h1,
  .tst-content-right2 h1 {
    font-size: 1.3em;
  }

  .tst-left-btm,
  .tst-right-btm {
    font-size: 0.8em;
    padding-top: 10px;
  }
	.tst-consult h1 {
    font-size: 1.6em;
  }

  .tst-consult p {
    font-size: 1em;
  }

  .btn-book {
    font-size: 1em;
    padding: 10px 25px;
  }
	/*end of media */
	}
