* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
html {
  scroll-behavior: smooth;

  /* Variables For Storing Colors */
  /* --primary-clr: #208245; */
  --primary-clr: #004aad;
  /* --primary-medium-clr: #d8e9df; */
  --primary-medium-clr: #cceeff;
  /* --primary-light-clr: #edfaf1; */
  --primary-light-clr: #e6f5ff;
  --bg-clr-1: #ffffff;
  --dark-heading-clr: #232d39;
  --dark-text-clr: #6c757d;
  --light-heading-clr: #efefef;
  --light-text-clr: #cecece;
}
/*   === Global Styling Starts ===   */
button.btn {
  padding: 10px 18px;
  background-color: var(--primary-clr);
  color: var(--light-heading-clr);
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
button.btn:hover {
  background-color: var(--light-heading-clr);
  color: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}
.section-header h1 {
  position: relative;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--dark-heading-clr);
  margin-bottom: 20px;
}
.section-header h1::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  left: 0;
  top: calc(100% + 5px);
  background-color: var(--dark-text-clr);
}
.section-header h1::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  left: 0;
  top: calc(100% + 4px);
  background-color: var(--primary-clr);
}
.section-header p {
  color: var(--dark-text-clr);
  margin-bottom: 40px;
  max-width: 700px;
}
/*   === Global Styling Ends ===   */
body {
  width: 100%;
  min-height: 100vh;
}
.website-container {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0px auto;
}
/*   === Home Section Styling Starts ===   */
section.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--primary-light-clr);
}
.home .main-navbar {
  position: absolute;
  width: 100%;
  max-width: 1400px;
  height: 15vh;
  max-height: 150px;
  background-color: var(--primary-clr);
  padding: 10px 8%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.home.active .main-navbar {
  position: fixed;
  top: 0;
  margin: 0px auto;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  animation: showMenu 0.6s ease-in;
}
@keyframes showMenu {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}
.main-navbar .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.main-navbar .logo img {
  width: 100px;
  margin-top: 8px;
  height: auto;
}

#company-name {
  color: white;
  font-size: xx-large;
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.main-navbar .nav-list {
  list-style: none;
}
.main-navbar .nav-list li {
  display: inline-block;
  margin: 0px 10px;
}
.main-navbar .nav-list li a {
  position: relative;
  color: var(--light-heading-clr);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}
.main-navbar .nav-list li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--light-heading-clr);
  left: 0;
  top: calc(100% + 2px);
  transition: all 0.3s;
  transform: scaleX(0);
}
.main-navbar .nav-list li a:hover::after {
  transform: scaleX(1);
}
.main-navbar .get-started-btn {
  background-color: yellow; /*var(--light-heading-clr);*/
  /* color: var(--primary-clr); */
  color: #00008b;
  font-weight: 500;
}
/* .main-navbar .get-started-btn:hover{
	background-color: var(--primary-clr);
	color: var(--light-heading-clr);
	border: 1px solid var(--light-heading-clr);
} */

/* Media Queries */

.get-started-btn:hover {
  background-color: #003580; /* Slightly darker shade of cobalt blue */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.get-started-btn:active {
  background-color: #002855; /* Even darker shade for active state */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: scale(0.98);
}

.main-navbar .menu-btn {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  display: none;
}
.main-navbar .menu-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--light-heading-clr);
  border-radius: 5px;
  transition: all 0.4s;
}
.main-navbar .menu-btn span::before,
.main-navbar .menu-btn span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: var(--light-heading-clr);
  transition: all 0.4s;
}
.main-navbar .menu-btn span::before {
  transform: translateY(-9px);
}
.main-navbar .menu-btn span::after {
  transform: translateY(9px);
}
.home .banner {
  width: 100%;
  min-height: 100vh;
  padding: 100px 8% 70px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.home .banner .banner-desc {
  position: relative;
  flex-basis: 50%;
  max-width: 700px;
  z-index: 2;
}
.banner .banner-desc h2 {
  font-size: 48px;
  color: var(--dark-heading-clr);
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.banner .banner-desc p {
  color: var(--dark-text-clr);
  line-height: 1.4;
  margin-bottom: 50px;
}

/* CSS for Contact Us Button Starts here */
.contact-us-btn {
  background-color: #0047ab; /* Cobalt Blue */
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-us-btn:hover {
  background-color: #003580; /* Slightly darker shade of cobalt blue */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.contact-us-btn:active {
  background-color: #002855; /* Even darker shade for active state */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: scale(0.98);
}
/* CSS for Contact Us Button Ends here */

/* CSS for Social Media Icons Starts Here */
.banner .banner-desc .social-media-icons {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.banner .banner-desc .social-media-icons .social-icon {
  font-size: 30px;
  color: var(--primary-clr);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}
.banner .banner-desc .social-media-icons .social-icon:hover {
  color: #0073b1; /* Example hover color (LinkedIn blue) */
  transform: scale(1.4); /* Scales the icon smoothly */
}

/* CSS for Social Media Icons Ends Here */

.home .banner .banner-img {
  position: relative;
  flex-basis: 50%;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
.banner-img .banner-img-container {
  position: relative;
  width: 400px;
  z-index: 2;
}
.banner-img .banner-img-container img {
  width: 100%;
  height: auto;
}
.banner-img .banner-img-container .states {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-img-container .states .whatsapp-contact {
  position: absolute;
  padding: 10px 15px 10px 15px;
  background-color: var(--light-heading-clr);
  border-radius: 5px;
  bottom: 15%;
  left: -80px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.states .whatsapp-contact .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366; /* WhatsApp green */
  margin-right: 7px;
}
.states .whatsapp-contact .icon i {
  font-size: 22px;
  color: var(--light-heading-clr);
}
.states .whatsapp-contact .desc {
  display: flex;
  flex-direction: column;
}
.states .whatsapp-contact .desc span:nth-child(1) {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.states .whatsapp-contact .desc span:nth-child(2) {
  font-size: 15px;
  color: var(--dark-text-clr);
}
.banner-img-container .states .courses-ratings {
  position: absolute;
  width: 90px;
  height: 90px;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--light-heading-clr);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 80px;
  right: 5px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.states .courses-ratings span:nth-child(1) {
  color: var(--dark-heading-clr);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.states .courses-ratings span:nth-child(1) i {
  color: gold;
  font-size: 14px;
}
.states .courses-ratings span:nth-child(2) img {
  color: var(--dark-text-clr);
  /* font-size: 15px; */
  width: 100%;
  text-align: center;
}
.banner-img .banner-img-container .pattern {
  position: absolute;
  top: 20px;
  left: -40px;
  z-index: -1;
}
.banner-img-container .pattern img {
  width: 150px;
  height: auto;
  opacity: 0.4;
}
/*   === Home Section Styling Ends ===   */

/*   === Partners Section Styling Starts ===   */
section.partners {
  width: 100%;
  padding: 30px 8%;
  background-color: var(--primary-medium-clr);
}
.partners h3 {
  margin-bottom: 40px;
  color: var(--dark-heading-clr);
  font-size: 22px;
}
.partners .partners-slider .brand-item {
  text-align: center;
  background-color: var(--light-heading-clr);
  padding: 5px;
}
.partners .partners-slider .brand-item img {
  width: 120px;
  display: inline-block;
}
.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
}
.owl-carousel .owl-nav button {
  border-radius: 5px !important;
}
.owl-carousel .owl-nav .owl-prev i,
.owl-carousel .owl-nav .owl-next i {
  padding: 8px 14px !important;
  border-radius: 5px;
  font-size: 16px !important;
  background-color: var(--primary-clr) !important;
  color: var(--light-heading-clr);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 2s;
}
.owl-carousel .owl-nav .owl-prev i:hover,
.owl-carousel .owl-nav .owl-next i:hover {
  background-color: var(--light-heading-clr) !important;
  color: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}
.owl-carousel .owl-dots {
  margin-top: 20px;
}
.owl-carousel .owl-dots .owl-dot span {
  padding: 4px !important;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-clr) !important;
}
/*   === Partners Section Styling Ends ===   */

/*   === Services Section Styling Starts ===   */
section.services {
  width: 100%;
  padding: 100px 8% 20px;
}
.services .services-contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.services-contents .service-box {
  flex-basis: calc(calc(100% / 3) - 2%);
  padding: 25px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary-light-clr);
  border: 1px solid #0047ab;
  border-radius: 10px;
}
.services-contents .service-box:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.service-box .service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-clr);
  outline: 1px solid var(--primary-medium-clr);
  outline-offset: 10px;
}
.service-box .service-icon i {
  font-size: 24px;
  color: var(--light-heading-clr);
}
.service-box .service-desc {
  margin-top: 25px;
}
.service-box .service-desc h2 {
  margin-bottom: 10px;
  color: var(--dark-heading-clr);
  font-size: 22px;
}
.service-box .service-desc p {
  line-height: 1.4;
  color: var(--dark-text-clr);
}
/* .service-box:nth-child(1) .service-icon{
	background-color: #fef0ef;
	outline-color: #fef0ef;
}
.service-box:nth-child(1) .service-icon i{
	color: #f76250;
}
.service-box:nth-child(2) .service-icon{
	background-color: #e8f9ef;
	outline-color: #e8f9ef;
}
.service-box:nth-child(2) .service-icon i{
	color: #2f9355;
}
.service-box:nth-child(3) .service-icon{
	background-color: #f1f0fe;
	outline-color: #f1f0fe;
}
.service-box:nth-child(3) .service-icon i{
	color: #5a49f3;
} */
/*   === Services Section Styling Ends ===   */

/*   === Courses Section Styling Starts ===   */
section.courses {
  width: 100%;
  padding: 100px 8% 20px;
}
.courses .section-header {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.courses .section-header .courses-btn {
  position: absolute;
  right: 0;
  bottom: 40px;
  padding: 10px 26px;
}
.courses .course-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.courses .course-contents .course-card {
  flex-basis: calc(calc(100% / 3) - 1.2%);
  background-color: var(--primary-light-clr);
  border: 1px solid #0047ab;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.courses .course-contents .course-card:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.course-contents .course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}
.course-contents .course-card .category {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}
.course-card .category img {
  position: absolute;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  right: 15px;
  top: -50%;
  outline: 1px solid var(--primary-clr);
  outline-offset: 3px;
}
.course-card .category .subject {
  padding: 8px 10px;
  background-color: var(--primary-light-clr);
  border-radius: 5px;
}
.course-card .category .subject h3 {
  font-size: 17px;
  font-weight: bold;
  color: var(--primary-clr);
}
.course-card .course-title {
	padding: 8px 10px;
  font-size: 20px;
  color: var(--dark-heading-clr);
}
.course-card .course-desc {
  margin: 5px 0px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
}
.course-card .course-desc span {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text-clr);
}
.course-card .course-desc span i {
  color: var(--primary-clr);
}
.course-card .course-ratings {
  padding: 15px 0px 0px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
}
.course-card .course-ratings span {
  color: var(--primary-clr);
  font-size: 16 px;
  font-weight: bold;
  padding: 8px 10px;
}
.course-card .course-ratings span:nth-child(1) i {
  color: gold;
  font-size: 14px;
}
.course-card .course-ratings span b {
  font-size: 24px;
}

.course-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/*   === Courses Section Styling Ends ===   */

/*   === Courses Categories Section Styling Starts ===   */
section.categories {
  width: 100%;
  padding: 100px 8% 20px;
}
.categories .categories-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.categories-contents .category-item {
  flex-basis: calc(calc(100% / 4) - 1%);
  background-color: var(--primary-light-clr);
  border: 1px solid #0047ab;
  padding: 25px 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.categories-contents .category-item:hover {
  box-shadow: 0px 0px 10px rgba(32, 130, 69, 0.2);
  transform: translateY(-3px);
}
.category-item .category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-clr);
}
.category-item .category-icon i {
  color: var(--light-heading-clr);
  font-size: 20px;
}
.category-item .category-desc {
  margin-top: 20px;
  text-align: center;
}
.category-item .category-desc h3 {
  color: var(--dark-heading-clr);
  font-size: 20px;
  margin-bottom: 10px;
}
.category-item .category-desc p {
  color: var(--dark-text-clr);
  font-size: 15px;
  line-height: 1.4;
}
/*   === Courses Categories Section Styling Ends ===   */

/*   === Teacher Section Styling Starts ===   */
section.instructor {
  width: 100%;
  padding: 100px 8% 20px;
}
.instructor .instructor-container {
  width: 100%;
  padding: 70px 8%;
  background-color: var(--primary-light-clr);
  border: 1px solid #0047ab;
  border-radius: 0px 100px 0px 100px;
}
.instructor-container h2 {
  font-size: 24px;
  color: var(--dark-heading-clr);
}
.instructor-container p {
  margin: 20px 0px 35px;
  color: var(--dark-text-clr);
}
.instructor-container {
  display: flex;
  gap: 30px;
  align-items: center;
  background-color: #0047ab;
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.instructor-photo {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
  /* border: 4px solid #ffffff; */
  border: 1px solid #0047ab;
}

.instructor-info {
  flex-grow: 1;
}

.instructor-info h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.instructor-info p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.5;
}
.instructor .instructor-container i {
  color: var(--primary-clr);
}
.instructor .instructor-container h2 {
  color: var(--primary-clr);
}


/*   === Teacher Section Styling Ends ===   */

/*   === Testimonials Section Styling Starts ===   */
section.testimonials {
  width: 100%;
  padding: 100px 8%;
}
.testimonials .section-header {
  width: 70%;
  max-width: 700px;
}
.testimonials-slider .testimonials-item {
  position: relative;
  padding: 20px 25px;
  background-color: var(--primary-light-clr);
}
.testimonials-item .profile {
  display: flex;
  align-items: center;
}
.testimonials-item .profile .profile-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.testimonials-item .profile .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials-item .profile .profile-desc {
  display: flex;
  flex-direction: column;
}
.profile .profile-desc span:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-clr);
}
.profile .profile-desc span:nth-child(2) {
  font-size: 15px;
  color: var(--dark-heading-clr);
}
.testimonials-item p {
  margin: 15px 0px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-text-clr);
}
.testimonials-item .quote {
  text-align: center;
}
.testimonials-item .quote i {
  font-size: 25px;
  color: var(--dark-text-clr);
  margin-right: 20px;
}
.testimonials-item .ratings {
  margin-top: 20px;
}
.testimonials-item .ratings i {
  font-size: 17px;
  color: gold;
  cursor: pointer;
}
.testimonial-content {
  display: flex;
  gap: 10px;
}

.testimonial-video {
  flex: 0 0 300px;
  max-width: 100%;
}

.testimonial-video iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}
/*   === Testimonials Section Styling Ends ===   */

/*   === Footer Section Styling Starts ===   */
section.footer {
  width: 100%;
  padding: 70px 8% 30px;
  background-color: var(--primary-clr);
}
.footer .footer-contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer-contents .footer-col {
  flex-basis: calc(calc(100% / 4) - 20px);
}
.footer-contents .footer-col .col-title {
  min-height: 60px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
}
.footer-col .col-title h3 {
  font-size: 24px;
  color: var(--light-heading-clr);
}
.footer-col .col-contents {
  display: flex;
  flex-direction: column;
}
.footer-col-1 .col-title img {
  width: 120px;
}
.footer-col-1 .col-contents p {
  color: var(--light-text-clr);
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.footer-col-2 .col-contents .contact-row {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.footer-col-2 .col-contents .contact-row span {
  color: var(--light-text-clr);
  font-size: 16px;
}
.footer-col-2 .col-contents .contact-row span:nth-child(1) {
  color: var(--light-heading-clr);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer-col-3 .col-contents a {
  text-decoration: none;
  color: var(--light-text-clr);
  margin-bottom: 20px;
  align-self: flex-start;
  transition: all 0.3s;
}
.footer-col-3 .col-contents a:hover {
  letter-spacing: 2px;
}
.footer-col-4 .col-contents input {
  width: 100%;
  padding: 15px;
  background-color: var(--light-heading-clr);
  color: var(--dark-text-clr);
  border: none;
  border-radius: 5px;
}
.footer-col-4 .col-contents .newsletter-btn {
  background-color: var(--light-heading-clr);
  color: var(--primary-clr);
  margin-top: 20px;
}
.footer-col-4 .col-contents .newsletter-btn:hover {
  background-color: transparent;
  color: var(--light-heading-clr);
  border: 1px solid var(--light-heading-clr);
}
.footer .copy-rights {
  padding: 30px 0px 0px;
  border-top: 1px solid var(--light-text-clr);
  text-align: center;
}
.footer .copy-rights p {
  color: var(--primary-light-clr);
}
.footer .copy-rights p b {
  color: yellow;
}
/*   === Footer Section Styling Ends ===   */

/*   === Media Query Starts ===   */
/* Base Styles (for larger screens) */
.instructor-container {
	display: flex;
	align-items: center;
	gap: 20px;
    }
    
    .instructor-photo {
	width: 200px;
	height: 200px;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
    }
    
    .instructor-info {
	max-width: 600px;
    }
    
    /* Tablet Screens (768px and below) */
    @media (max-width: 768px) {
	.instructor-container {
	  flex-direction: column;
	  text-align: center;
	}
    
	.instructor-photo {
	  width: 180px;
	  height: 180px;
	}
    
	.instructor-info {
	  max-width: 90%;
	}
    
	.instructor-info h2 {
	  font-size: 1.5rem;
	}
    
	.instructor-info p {
	  font-size: 1rem;
	  text-align: left;
	}
	.main-navbar .logo img {
	    width: 80px;
	    margin-top: 4px;
	    height: auto;
	  }
	
	  #company-name {
	    color: white;
	    font-size: x-large;
	    font-family: "Poppins", serif;
	    font-weight: 400;
	    font-style: normal;
	  }  
	.main-navbar .get-started-btn {
	    background-color: yellow;
	    color: #00008b;
	    font-weight: 500;
	    font-size: small;
	    width: 120px;
	  }
    }
    
    
@media (max-width: 968px) {
  /* Home Section */
  .main-navbar .menu-btn {
    display: flex;
    margin-left: 40px;
    z-index: 101;
  }
  .main-navbar .menu-btn.active span,
  .main-navbar .menu-btn.active span::before,
  .main-navbar .menu-btn.active span::after {
    width: 100%;
  }
  .main-navbar .menu-btn.active span::before {
    transform: rotate(45deg) translateY(0px);
  }
  .main-navbar .menu-btn.active span::after {
    transform: rotate(-45deg) translateY(0px);
  }
  .main-navbar .menu-btn.active span {
    background-color: transparent;
  }
  .main-navbar .nav-list {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    /*right: 0;*/
    right: -100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-clr);
    transition: right 0.3s cubic-bezier(0.15, 0.61, 0.94, 0.25);
    z-index: 100;
  }
  .main-navbar .nav-list.active {
    right: 0;
  }
  .main-navbar .nav-list li {
    margin: 25px 0px 0px;
  }
  .main-navbar .nav-list li:nth-child(1) {
    margin-top: 180px;
  }
  .main-navbar .nav-list li a {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .main-navbar .get-started-btn-container {
    margin-left: auto;
  }

  .home .banner {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .home .banner .banner-desc,
  .home .banner .banner-img {
    flex-basis: 100%;
  }
  .home .banner .banner-img {
    align-self: center;
    margin-bottom: 50px;
  }
  /* Services Section */
  .services-contents .service-box {
    flex-basis: calc(calc(100% / 2) - 2%);
  }
  .services-contents .service-box:not(:last-child) {
    margin-bottom: 20px;
  }
  /* Courses Section */
  .courses .course-contents .course-card {
    flex-basis: calc(calc(100% / 2) - 1.2%);
  }
  .courses .section-header {
    flex-direction: column;
  }
  .courses .section-header .courses-btn {
    position: relative;
    align-self: flex-start;
    margin-top: 20px;
  }
  /* Courses Categories Section */
  .categories-contents .category-item {
    flex-basis: calc(calc(100% / 2) - 1%);
    margin-bottom: 15px;
  }
  /* Footer Section */
  .footer-contents .footer-col {
    flex-basis: calc(calc(100% / 2) - 20px);
  }
}

@media (max-width: 768px) {
  /* Home Section */
  .banner-img-container .states .whatsapp-contact {
    left: 5px;
    bottom: 10%;
  }
  .banner .banner-desc h2 {
    font-size: 42px;
  }
  /* Testimonials Section */
  .testimonials .section-header {
    width: 100%;
    margin-bottom: 70px;
  }

  /* Additional CSS */
  .main-navbar {
    padding: 8px 15px;
  }

  .logo img {
    width: 100px;
  }

  #company-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 668px) {
  /* Partners Section */
  .partners h3 {
    margin-right: 150px;
  }
  /* Services Section */
  .services-contents .service-box {
    flex-basis: 100%;
  }
  /* Courses Section */
  .courses .course-contents .course-card {
    flex-basis: 100%;
  }
}

@media (max-width: 568px) {
  /* Courses Categories Section */
  .categories-contents .category-item {
    flex-basis: 100%;
  }
  /* Footer Section */
  .footer-contents .footer-col {
    flex-basis: 100%;
  }
}


/* Mobile Screens (480px and below) */
@media (max-width: 480px) {
	.main-navbar .logo{
		display: flex;
		flex-direction: row;
	}

  .header-text h1 {
    font-size: 1.8rem;
  }

  .header-text p {
    font-size: 1rem;
  }

  .instructor-photo {
    width: 150px;
    height: 150px;
  }

  .instructor-info h2 {
    font-size: 1.4rem;
  }

  .instructor-info p {
    font-size: 0.9rem;
    margin: 5px 0;
    text-align: left;
  }

  .main-navbar .logo img {
    width: 80px;
    margin-top: 4px;
    height: auto;
  }

  #company-name {
    color: white;
    font-size: x-large;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
  }
  .main-navbar .get-started-btn {
    background-color: yellow;
    color: #00008b;
    font-weight: 500;
    font-size: small;
    width: 120px;
  }
}


@media (max-width: 468px) {
	.banner-img .banner-img-container {
	  width: 100%;
	}
	.banner .banner-desc .contact-us-bar {
	  width: 100%;
	}
	.banner-img-container .states .courses-ratings {
	  top: 30px;
	  right: -10px;
	}
	.banner .banner-desc h2 {
	  font-size: 32px;
	}
	.main-navbar .get-started-btn-container {
	  display: none;
	}
    
	/* Partners Section */
	.partners h3 {
	  margin-right: 0px;
	  margin-bottom: 80px;
	}
	.main-navbar {
	  flex-direction: row;
	  text-align: center;
	  padding: 10px 0;
	}
    
	.logo {
	  flex-direction: column;
	}
    
	.logo img {
	  width: 90px;
	  margin-bottom: 5px;
	}
    
	#company-name {
	  font-size: 1.2rem;
	}
    }

    
/* Smaller than Mobile Screens (450px and below) */
@media (max-width: 450px) {
	.main-navbar .logo{
		display: flex;
		flex-direction: row;
	}

  .main-navbar .logo img {
    width: 80px;
    margin-top: 4px;
    height: auto;
  }

  #company-name {
    color: white;
    font-size: 1rem;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
  }
  .main-navbar .get-started-btn {
    background-color: yellow;
    color: #00008b;
    font-weight: 500;
    font-size: small;
    width: 120px;
  }
}

@media (max-width: 370px) {
	#company-name {
		color: white;
		font-size: 1rem;
		font-family: "Poppins", serif;
		font-weight: 400;
		font-style: normal;
	}
}
/*   === Media Query Ends ===   */

/* Additional CSS */
/* body {
	font-family: 'Montserrat', sans-serif;
	background: #1e293b;
	color: #f8fafc;
    } */

.app {
  font-family: "Montserrat", sans-serif;
  /* background: #1e293b; */
  background: var(--primary-clr);
  color: #f8fafc;
  /* min-width: 100vw; */
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
  text-align: center;

  h1 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;

    @media (min-width: 768px) {
      font-size: 3rem;
    }
  }

  p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
  }

  a {
    color: #7393c1;
  }
}

.tag-list {
  width: 60rem;
  max-width: 90vw;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  padding: 1.5rem 0;
  overflow: hidden;
}

.loop-slider {
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }
}

.tag {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  /* background-color: #334155; */
  background-color: var(--primary-clr);
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem; /*Must used margin-right instead of gap for the loop to be smooth */
  box-shadow: 0 0.1rem 0.2rem rgb(0 0 0 / 20%), 0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);

  span {
    font-size: 1.2rem;
    color: #64748b;
  }
}

.fade {
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #004aad,
    transparent 30%,
    transparent 70%,
    #004aad
  );
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CSS for WhatsApp Contact at Page Bottom */
.bottom-contact {
  z-index: 100;
  display: none;
}

.bottom-contact .whatsapp-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px 10px 15px;
  background-color: var(--light-heading-clr);
  border-radius: 5px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.bottom-contact .whatsapp-contact .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366; /* WhatsApp green */
  margin-right: 7px;
}
.bottom-contact .whatsapp-contact .icon i {
  font-size: 22px;
  color: var(--light-heading-clr);
}
.bottom-contact .whatsapp-contact .desc {
  display: flex;
  flex-direction: column;
}
.bottom-contact .whatsapp-contact .desc span:nth-child(1) {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.bottom-contact .whatsapp-contact .desc span:nth-child(2) {
  font-size: 15px;
  color: var(--dark-text-clr);
}

/* CSS for Blinking the WhatsApp Contact div at the bottom */
.blinking {
  animation: blink 4s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
