@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html,
body {
    font-family: "Lato", sans-serif;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}

.logo img {
    height: 3.62rem;
}

p,
span {
    font-family: "Roboto", sans-serif;
}

.nav-item {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.nav-link {
    font-size: 1.1rem;
    color: white;
}

.active-nav-item {
    border-bottom: 1px solid #0F265C;
}

.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0F265C;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: -2px;
    background-color: #0F265C;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-item.join-button .nav-link::after {
    content: none;
}

/* Hero Section */
.hero-section {
    background: url('img/hero-image.png') no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    text-align: center;
    position: relative;
    top: 4.68rem;
    overflow: hidden;
}

.hero-section-gallery {
  background: url('img/gallery-hero.png') no-repeat center/cover;
  top:0;
  height: 65vh;
  /* background-position: 20% 68%; */
}

.hero-section .hero-content {
    position: relative;
}

.hero-section .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 0 5%;
}

.hero-section .hero-content h2 {
    font-size: 3rem;
    font-weight: 600;
}

.hero-section .hero-content h4 {
    font-size: 2rem;
    font-weight: 600;
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    padding: 0 16%;
}

/* Button Customization */
.theme-btn {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-left: 8px;
}

.btn-custom {
    padding: 8px 15px;
    font-size: 1.1rem;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-join-now {
    color: white;
    background-color: #0F265C;
    border: 1px solid #0F265C;
}

.btn-watch-video {
    color: white;
    border: 1px solid;
}

.download-btn {
    padding: 8px 15px;
    font-size: 1.1rem;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #003f73;
    border: 2px solid #0F265C;
}

.download-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.btn-hero {
    background-color: rgb(238, 241, 255);
    color: #0F265C;
    border: white;
}

.btn-custom:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.btn-join-now:hover {
    color: white;
}

.btn-watch-video:hover {
    background-color: #003f73;
    color: white;
 border-color: #003f73;
    text-decoration: none;
}

/* -------------------------------- */
section {
  margin-bottom: 5.62rem;
}

/* -------------------------------- */
/* Course Highlights */
.course-highlights {
  padding: 120px 0;
  text-align: center;
}

.course-highlights .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.course-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.course-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  flex: 1;
}

.course-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.course-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.course-card .btn-secondary {
  padding: 10px 20px;
  background-color: #0F265C;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.course-card .btn-secondary:hover {
  background-color: #0d204d;
}

/* --------------------------- */
.network-section {
  margin: 60px 10px;
  padding-top: 75px;
}

.connect-clients {
  padding: 50px 0;
}

.card-box {
  height: 100%;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.hero-card .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card .card-box .card-btn {
  padding: 8px 15px;
  font-size: 1.1rem;
  border-radius: 22px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  color: white;
  background-color: #0F265C;
  border: none;
}

.card-box:hover {
  transform: translateY(-10px);
}

.card-box h4 {
  margin-top: 10px;
  color: #333;
}

/* ------------------------------- */

.video-zaminzaidad {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section {
  text-align: center;
  padding: 20px;
}

.image-container {
  position: relative;
  display: inline-block;
}

/* Wave Button Styling */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff6347;
  color: white;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  cursor: pointer;
  animation: wave 1.5s infinite;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 99, 71, 1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 99, 71, 0);
  }
}

/* Modal Styling */
.hero-card-modal .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

.hero-card-modal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 60%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;
  margin-top: 100px;
}

.hero-card-modal .card-btn {
  padding: 8px 15px;
  font-size: 1.1rem;
  border-radius: 22px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  border: none;
  background-color: #0F265C;
  color: white;
}
* Card Button Hover */
.card-btn:hover {
  background-color: #3700b3;
}

/* Webinar Section */
.webinar-header {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.webinar-banner {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.webinar-header h4 {
  font-size: 1.8em;
  color: #333;
}

.webinar-header p {
  font-size: 1rem;
  color: #666;
  margin: 5px 0 15px;
}

.webinar-body form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  text-align: left;
}

.webinar-body label {
  font-weight: bold;
  color: #444;
}

.webinar-body input[type="text"],
.webinar-body input[type="email"],
.webinar-body input[type="date"] {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.webinar-body input[type="submit"] {
  padding: 12px 20px;
  background-color: #0F265C;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.webinar-body input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Webinar Info */
.webinar-info {
  margin-top: 15px;
}

.webinar-info p {
  font-weight: bold;
  font-size: 1.2rem;
  color: #444;
}

.webinar-info ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.webinar-info ul li {
  margin-bottom: 8px;
}
/* Modal Styling */
/* .modal {
  display: none; 
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
} */

.modal.open {
  display: block;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  position: relative;
}

/* Close Button */
.close,
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}

/* Tools and Products List */
.tools-list,
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.tools-item,
.product-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.tools-item h5,
.product-item h5 {
  font-size: 1.2em;
  color: var(--primary-color, #0F265C);
}

.tools-item p,
.product-item p {
  color: #666;
  font-size: 1rem;
}

/* Recommended Videos Section */
.recommended-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.recommended-videos iframe {
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: none;
}

/* Video Block (Optional Separate Section) */
.video-zz iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ---------------------------------------- */
/* General Styling */
.funfact {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.funfact-one__single {
  text-align: center;
  padding: 20px;
  margin: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.funfact-one__single:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Fun Fact Icon Styling */
.funfact-one__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  position: relative;
}

.funfact-one__single:nth-child(1) .funfact-one__icon {
  background-color: #32CD32;
}

.funfact-one__single:nth-child(2) .funfact-one__icon {
  background-color: #1E90FF;
}

.funfact-one__single:nth-child(3) .funfact-one__icon {
  background-color: #FF8C00;
}

.funfact-one__single:nth-child(4) .funfact-one__icon {
  background-color: #FFD700;
}

/* Pulse Animation */
.funfact-one__icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(167, 212, 182, 0.4);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Fade In Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.funfact-one__content h3 {
  font-size: 2.5rem;
  color: #333;
  font-weight: bold;
}

.funfact-one__content p {
  margin-top: 5px;
  color: #777;
  font-size: 1rem;
}


/* --------------------------------- */
/* Instant Access Section */
.instant-access {
  padding: 60px 0;
  position: relative;
}

/* Add keyframes if not defined */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Text and animations */
.instant-access h2,
.instant-access p {
  opacity: 1;
  /* Set to 1 to ensure visibility */
  animation: fadeIn 1s forwards;
}

.instant-access h2 {
  color: #333;
  margin-bottom: 20px;
}

.instant-access p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* App Store and Google Play button container */
.app-instal {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* App Store and Google Play button styles */
.app-store,
.google-play {
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  width: 220px;
  margin-bottom: 20px;
  opacity: 1;
  /* Ensure visibility */
  animation: fadeIn 1s 0.5s forwards;
}

/* Icon styling */
.app-store-icon,
.google-play-icon {
  color: #000;
}

.app-store .app-store-icon {
  color: #000;
}

.google-play .google-play-icon {
  color: #34a853;
}

/* Hover effects */
.app-store:hover,
.google-play:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  background-color: #f1f1f1;
}

.app-store:hover .app-store-icon,
.google-play:hover .google-play-icon {
  color: #007bff;
  /* Light blue on hover for app store */
}

.google-play:hover .google-play-icon {
  color: #ff4c00;
  /* Orange-like shade for Google Play */
}

/* Text styling */
.app-store h5,
.google-play h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.app-store span,
.google-play span {
  font-size: 1rem;
  color: #777;
}

/* ---------------------------------- */
.testimonials .card-box img {
  width: 150px;
  height: 150px;
}

.testimonials .card-box {
  text-align: center;
  /* Centers text inside each box */
  padding: 20px;
}

.testimonials img {
  display: block;
  margin: 0 auto 15px auto;
}

.testimonials h4 {
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}

.testimonials i {
  color: #FFD700;
  margin: 0 2px;
}

.find-agent {
  background-color: #0F265C;
  color: white;
  padding: 33px 0;
}

/* ------------------------------------ */
.contact-support {
  background-color: #f8f9fa;
  padding: 128px 0 58px 0;
}

.form-control {
  background-color: #f2f7fb;
}

.form-group input {
  padding: 30px 0 30px 10px;
}

.address .location,
.email,
.phone {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.address .location {
  background-color: #ecf8e6;
  color: #53b024;
}

.address .email {
  background-color: #fcedde;
  color: #fe9c39;
}

.address .phone {
  background-color: #ffeaeb;
  color: #ee464b;
}

.address .location:hover,
.email:hover,
.phone:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* --------------------------- */
.theme-btn:hover {
  color: #fff;
}

/* -------------card--------------- */
.card-body {
  position: relative;
  overflow: hidden;
}

.hover-effect-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
}

.card-body:hover .hover-effect-img {
  transform: scale(1.1);
  opacity: 0.8;
}

.details-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #fff;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card h2 {
  font-size: 1.5rem;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #666;
  margin: 15px 0;
}

.card-button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #0F265C;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.card button:hover {
  background: #0056b3;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  text-align: center;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  margin-bottom: 20px;
}

.modal-content button {
  border: none;
  text-align: center;
  border-radius: 99px;
  outline: none;
}

/* ---------------Fix-social-icons-------------------------- */
.social-icons {
  position: fixed;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link.fb:hover {
  background-color: #4267B2;
  color: white;
}

.social-link.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 50%, #d6249f 70%, #285AEB 100%);
  color: white;
}

.social-link.wa:hover {
  background-color: #25D366;
  color: white;
}

.social-link.yt:hover {
  background-color: #FF0000;
  color: white;
}

.social-link.tw:hover {
  background-color: #1DA1F2;
  color: white;
}

.social-link.li:hover {
  background-color: #0077B5;
  color: white;
}

/* -----------FAQ------------------- */
.faq-section {
  background: #fdfdfd;
  min-height: 50vh;
  padding: 10vh 0 10vh 0;
}

.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}

.faq-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #0F265C;
  bottom: -25px;
  margin-left: -30px;
}

.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  width: 100%;
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: #edf2fc;
  padding-left: 10px;
}

.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #0F265C;
  color: #fff;
  font-size: 0.75rem;
  margin-right: 20px;
}

.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 1rem;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
  margin-bottom: 14px;
  text-align: left;
}

footer a {
  font-weight: 300;
  color: white;
}

footer a:hover {
  color: #c6d7ff;
}

footer .list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icon-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.scroll-to-top-btn {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0F265C;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  outline: none;
  /* Hidden by default */
  transition: opacity 0.3s ease-in-out;
}
.scroll-to-top-btn:hover {
  background-color: #0d204d;
}

/* -------------responsive--------------- */
@media (max-width: 1024px) {
  .hero-item h1 {
    font-size: 4rem;
  }

  .hero-item p {
    font-size: 1rem;
  }

  .hero-section .hero-content h1 {
    font-size: 4.4rem;
    padding: 0;
  }

  .btn-custom {
    padding: 8px 14px;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-collapse.collapse ul {
    display: flex;
    flex-direction: column;
  }

  .faq {
    margin-bottom: 30px;
  }

  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
 section {
    margin-bottom: 2.5rem;
  }

  .hero-section .hero-content h2 {
    font-size: 2.5rem;
  }

  .theme-btn {
    width: 130px;
    margin: 0 auto !important;
    text-align: center;
  }

  .modal-content {
    width: 95%;
    padding: 20px;
  }

  .webinar-header h4 {
    font-size: 1.5em;
  }

  .webinar-header p {
    font-size: 0.9rem;
  }

  .webinar-body input[type="submit"] {
    font-size: 1rem;
  }
  .theme-btn {
    flex-direction: column;
    margin-left: 0;
  }

  .hero-section {
    padding: 0 0 32px;
  }

  .instant-access h2 {
    font-size: 2rem;
  }

  .instant-access p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .app-instal {
    gap: 20px;
  }

  .app-store,
  .google-play {
    width: 180px;
    padding: 15px;
  }
/* ---------funfact-------------------- */
  .funfact-one__single {
    margin-bottom: 20px;
  }

  .funfact-one__icon i {
    font-size: 1.5rem;
  }

  .hero-section .hero-content h1 {
    font-size: 3rem;
  }

  .course-list {
    flex-direction: column;
    max-width: 100%;
  }

  .contact-us,
  address {
    width: 100%;
    padding: 0 10px;
  }

  .faq-cont {
    flex: 0 0 100%;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-icon-footer {
    gap: 4px;
  }
}

@media (max-width: 425px) {
  .hero-section .hero-content h1 {
    font-size: 3rem;
  }

  .hero-section .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-section .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 11%;
  }
}