
/* styles.css */

/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header styling */
header {
    background-color: #333;
    color: #fff;
    padding: 30px 50px 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #ff6347; /* Tomato color for hover effect */
}

/* Toggle button styling */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 2.5rem;
    right: 4rem;
    z-index: 20;
}

.hamburger, .hamburger::before, .hamburger::after {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

.nav-toggle.active .hamburger {
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(90deg);
    top: 0;
    opacity: 0;
}

/* About Us page styling */
.about-hero {
    background-image: url('../images/about-hero-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.about-content {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: left;
}
.about-content-3 {
    background-color: #fff;
    color: #333;
    padding: 0rem 1rem;
    text-align: left;
}

.about-content-3 .container {
    max-width: 1200px;
    margin: 0 auto;
}
.about-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Hero section styling */
.hero {
    background-image: url('../images/hero-background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ff6347; /* Tomato color */
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e5533d; /* Darker tomato color */
}

/* Introduction section styling */
.introduction {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.introduction .container {
    max-width: 1200px;
    margin: 0 auto;
}

.introduction h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.introduction p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-item {
    background-color: #f4f4f4;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    flex: 1 1 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
}

.feature-item li{
    list-style-type: none;
}

.feature-item li::before {
    content: "✔"; /* Unicode check mark */
    color: green; /* Check mark color */
    display: inline-block; 
    width: 1em; 
    margin-left: -1em;
    font-weight: bold;
    font-size: 22px;
}

/* .feature-item ul{
    list-style-image: url('../images/checked.png');
    position: left; 
    text-align: left; 
    padding-left: 20px;
} */

/* .feature-item .container ul li{
    list-style-image: "../images/check.png";
} */
/* Services section styling */
.services {
    background-color: #f9f9f9;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background-color: #fff;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 1rem;
}

/* Testimonials section styling */
.testimonials {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-item {
    background-color: #f4f4f4;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-item p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 1rem;
    color: #666;
}

/* Resources section styling */
.resources {
    background-color: #f9f9f9;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.resources .container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.resource-item {
    background-color: #fff;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.resource-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.resource-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #ff6347; /* Tomato color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #e5533d; /* Darker tomato color */
}

/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 200px;
    margin: 1rem;
}

.footer-section h3 {
    font-size: 1.25rem;
   -bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6347; /* Tomato color for hover effect */
}

.social-media {
    display: flex;
    justify-content: center;
}

.social-media li {
    margin: 0 0.5rem;
}

.social-media li a img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s;
}

.social-media li a img:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 0.875rem;
}

/* Services page styling */
.services-hero {
    background-image: url('../images/services-hero-background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.services-content {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.services-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #f4f4f4;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 1rem;
}

/* Testimonials hero section styling */
.testimonials-hero {
    background-image: url('../images/testimonials-hero-background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.testimonials-hero .container {
    position: relative;
    z-index: 2;
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Testimonials content styling */
.testimonials-content {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.testimonials-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-entry {
    background-color: #f4f4f4;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-entry p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-entry cite {
    font-size: 1rem;
    color: #666;
}

/* Resources hero section styling */
.resources-hero {
    background-image: url('../images/resources-hero-background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.resources-hero .container {
    position: relative;
    z-index: 2;
}

.resources-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.resources-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Resources content styling */
.resources-content {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.resources-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.resource-entry {
    background-color: #f4f4f4;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.resource-entry h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.resource-entry p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #ff6347; /* Tomato color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #e5533d; /* Darker tomato color */
}

/* pricing hero section styling */
.pricing-hero {
    background-image: url('../images/pricing-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 1rem 1rem;
    position: relative;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.pricing-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    display: block;
    margin: 0 auto;
}


.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Contact hero section styling */
.contact-hero {
    background-image: url('../images/pricing-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    display: block;
    margin: 0 auto;
}


.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Contact content styling */
.contact-content {
    background-color: #fff;
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
}

.contact-content .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info, .contact-form {
    flex: 1 1 45%;
    margin: 1rem;
}

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-form input, .contact-form textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #ff6347; /* Tomato color */
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e5533d; /* Darker tomato color */
}


/* Responsive styling */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 4rem; /* Adjust this value if needed */
        left: 0;
        background-color: #333;
        padding: 3rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        flex: 1 1 100%;
        margin: 1rem 0;
    }

    .service-item {
        margin: 1rem 0;
    }

    .testimonial-item {
        margin: 1rem 0;
    }

    .resource-item {
        margin: 1rem 0;
    }

    .footer-section {
        flex: 1 1 100%;
        margin: 1rem 0;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .testimonials-hero h1 {
        font-size: 2rem;
    }

    .testimonials-hero p {
        font-size: 1rem;
    }

    .testimonial-entry {
        margin: 1rem 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-info, .contact-form {
        flex: 1 1 100%;
        margin: 1rem 0;
    }
    /* .introduction .container{
        font-size: 12px;
    }  */
}

/* slider style */

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.text h1{
    color: white;
}


/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.text {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
   /* optional: adds contrast */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 80%;
}


.text h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.text p {
  margin: 0;
  font-size: 16px;
}


/* header */

/* Reset and base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

@media (max-width: 768px) {
    .logo img {
        width: 55% !important;
    }
}
.logo img{
    width: 35px;
}

.main-header {
  background-color: #fff;
  color: white;
  padding: 20px 30px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2em;
}

.logo-box {
  background-color: white;
  color: #0047ab;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 4px;
}

/* Toggle button styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: #e01c27;
  cursor: pointer;
  position: absolute;
  right: 30px;
  z-index: 1100;
}

.menu-toggle .icon {
  transition: opacity 0.3s ease;
}

.menu-toggle .close {
  display: none;
}

.menu-toggle.active .open {
  display: none;
}

.menu-toggle.active .close {
  display: inline;
}

/* Navigation styles */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #00314e;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

/* Contact section */
.contact-section {
  display: flex;
  align-items: center;
  gap: 80px;
}
.phone{
        color: #00314e;
        font-weight: bold;
}
.call-text{
    color: #00314e;
    font-weight: bold;
}

#registerBtn {
  background-color: #e01d28;
    color: #fff;
    border: none;
    padding: 14px 30px;
    /* border-radius: 4px; */
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;

}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #10182F;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.5em;
    padding: 15px 0;
    color: white;
  }

  .contact-section {
    display: none;
  }
  .language-flags {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-right: 70px; /* space between flags and hamburger */
    position: relative;
    left: 0; /* ensures it's aligned left in the header flex */
  }

}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

/* Create three equal columns that sits next to each other */
.column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
}
.column p{
    text-align: justify;
    padding: 0 5px;
    font-size: 14px; 
    margin-top: 10px;
}


@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);
figure.snip1157 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1157 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1157 img {
  max-width: 100%;
  vertical-align: middle;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin: 40px 0 0 10px;
}
figure.snip1157 blockquote {
  display: block;
  border-radius: 8px;
  position: relative;
  background-color: #fafafa;
  padding: 25px 50px 30px 50px;
  font-size: 0.8em;
  font-weight: 500;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
  height: 260px;
}
figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 35px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1157 blockquote:before {
  top: 18px;
  left: 14px;
}
figure.snip1157 blockquote:after {
  content: "\201D";
  right: 38px;
  bottom: 12px;
}
figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fafafa;
  margin: 0;
  position: absolute;
}
figure.snip1157 .author {
  position: absolute;
  bottom: 45px;
  padding: 0 10px 0 120px;
  margin: 0;
  text-transform: uppercase;
  color: #000;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
figure.snip1157 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1157 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
}


/* Demo purposes only */

.testimonial {
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  margin: 0;
  height: 100%;
}

@media (max-width: 800px) {
  .row {
    flex-direction: column;
  }
}

/* pricing-style.css */




.subhead {
    text-wrap: balance;
    max-inline-size: 60ch;
    font-size: 34px;
    font-weight: 500;
    margin-inline: auto;
    color: white;
  }
  
  .hero-sec {
    background-image:linear-gradient(180deg, rgba(0, 53, 198, 0.41) 0%, rgba(0, 27, 66, 0.46) 100%),  url('../images/slide4.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    gap: 2ch;
    place-content: center;
    text-align: center;
    height: 680px;
  }
.hero-sec h1{
    color: white;
    font-size: 56px;
    font-weight: bold;
    max-width: 1280px;
    text-align: center;
}
.hero-sec h2{
    color: white;
    font-size: 36px;
    font-weight: 500;
    max-width: 1280px;
    text-align: center;
}



.welcome-sec{
    font-size: 120px !important; 
    font-weight:800;
    text-transform: uppercase;
    opacity: 0.2;

}
.welcome-des{
    font-size: 34px;
    font-weight: 800;
    margin-top: -70px;
    color: #00314e;
}

@media (max-width: 768px) {
    .hero-sec {
        height: 500px;
       
    }
    .hero-sec h2{
        font-size: 25px;
    }
    .hero-sec h1 {
        font-size: 25px;
        padding: 0 30px;
    }
    .subhead {
        font-size: 24px;
    }
    .welcome-sec{
        font-size: 70px !important;
    }
    .welcome-des{
        font-size: 24px !important;
        margin-top: -60px;
    }

}

/* Testimonial Section Styles */
.testimonial-section {
  background: #f7f9fa;
  padding: 60px 0;
  text-align: center;
}

    /* background-color: #f4f4f4;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    flex: 1 1 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */

.testimonial-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00314e; 
  font-weight: 700;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: #f4f4f4;
  border-radius: 12px;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.08); */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px 24px;
  max-width: 447px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00314e;
}

.testimonial-author span {
  font-weight: 600;
  color: #00314e;
  font-size: 1rem;
}

.testimonial-stars {
  color: #FFD700;
  margin-bottom: 12px;
  font-size: 1.2em;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-section h2 {
    font-size: 2rem;
  }
}

/* Lesson Types Section Styles */

.lesson-types {
  background: #f7f9fa;
  
  text-align: center;
  /* margin-top: 40px; */
}

.lesson-types h2 {
  color: #00314e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

  .lesson-types p {
  color: #4a5568;
  font-size: 1.5rem;
  margin-bottom: 24px;
  max-width: 753px;
  margin-left: auto;
  margin-right: auto;

}

.lesson-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.lesson-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  color: #00314e;
}

.lesson-icons i {
  font-size: 4rem;
  margin-bottom: 8px;
  color: #0077b6;
}

@media (max-width: 768px) {
  .lesson-icons {
    flex-direction: row;
    gap: 20px;
  }
}

.whatsapp-float {
    position: fixed; /* Stays fixed even when scrolling */
    bottom: 20px;    /* Distance from bottom */
    right: 20px;     /* Distance from right */
    z-index: 1000;   /* Ensures it's on top of other elements */
    width: 60px;     /* Icon size */
    height: 60px;
    border-radius: 50%; 
    background-color: #25D366; /* WhatsApp green */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
  }

  .whatsapp-float:hover {
    transform: scale(1.1); /* Slight zoom on hover */
  }

  .whatsapp-float img {
    width: 35px;  /* Image size */
    height: 35px;
  }