.hero-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background-color: #C4D7D2;
          
        }
        .hero-section::before {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
            border-radius: 50%;
            z-index: 0;
        }
        .hero-section::after {
    content: '';
    position: absolute;
    top: -100px;       
    right: -150px;     
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
    border-radius: 50%;
    z-index: 0;
}

        .hero-content {
            z-index: 1;
        }
        .sub-heading {
            color: #008672;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .sub-heading::before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #fff;
            border-radius: 50%;
            margin-right: 10px;
        }
        h1 {
            color: #000;
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .hero-text {
            font-size: 18px;
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 30px;
            color: #000;
        }
        .btn-apply {
            background-color: #f25c34;
            color: #ffffff;
            border: none;
            padding: 15px 35px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .btn-apply:hover {
            background-color: #d94f2a;
            color: #ffffff;
        }
        .hero-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image {
            max-width: 100%;
            height: auto;
            z-index: 1;
        }
        @media (max-width: 991.98px) {
            .hero-section {
                text-align: center;
            }
            .sub-heading {
                justify-content: center;
            }
            .hero-text {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-image-container {
                margin-top: 50px;
            }
        }
        @media (max-width: 767.98px) {
            h1 {
                font-size: 36px;
            }
            .hero-text {
                font-size: 16px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
















        
        /* Logo Section */
        .logo-section {
            background: #C4D7D2;

            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .logo-text {
            color: #000;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 400;
            margin-bottom: 40px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo-slider {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .logo-track {
            display: inline-flex;
            animation: scroll 25s linear infinite;
            align-items: center;
        }

        .logo-item {
            margin: 0 80px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-item img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }


        @media (max-width: 768px) {
           
           

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .floating-element {
                display: none;
            }

            .logo-item {
                margin: 0 50px;
            }

            .logo-item img {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
          

            .hero-subtitle {
                font-size: 1rem;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .logo-item {
                margin: 0 40px;
            }

            .logo-item img {
                height: 35px;
            }
        }

        .floating-element img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        
        }



        .logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #C4D7D2, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #C4D7D2, transparent);
}




.section-padding {
            padding: 80px 0;
        }
        .author-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .author-image {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 2rem;
        }
        .section-title span {
            color: #2c9a7a;
            text-decoration: underline;
            text-decoration-thickness: 3px;
        }
        .section-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        @media (max-width: 991.98px) {
            .author-image-container {
                margin-bottom: 40px;
            }
            .section-title {
                text-align: center;
            }
            .section-text {
                text-align: center;
            }
        }
        @media (max-width: 767.98px) {
            .author-image {
                width: 250px;
                height: 250px;
            }
            .section-title {
                font-size: 1.5rem !important;
            }
            .section-text {
                font-size: 1rem;
            }
            .section-padding {
                padding: 60px 0;
            }
        }



          .author-section {
            background-color: #f8f9fa;
            padding: 60px 0;
            border-radius: 12px;
        }
        .author-section h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 4rem;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        .feature-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 2px solid #008672;
            border-radius: 50%;
            color: #008672;
            font-weight: 700;
            font-size: 1.25rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        .feature-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .feature-content p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
        }
        .cta-section {
            padding: 60px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            max-width: 800px;
            margin: 0 auto;
        }
        @media (max-width: 991.98px) {
            .author-section h2 {
                font-size: 2rem;
            }
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 767.98px) {
            .author-section {
                padding: 40px 20px;
            }
            .author-section h2 {
                font-size: 1.75rem;
                margin-bottom: 3rem;
            }
            .cta-section {
                padding: 40px 20px;
            }
            .cta-section h2 {
                font-size: 1.75rem;
            }
        }








.ht4{
    color: #008672;
}


        .port-section {
            background-color: #C4D7D2;
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .port-section h1 {
            font-size: 3rem;
            font-weight: 700;
        }
        .port-section p {
            color: #000;
            font-size: 1.125rem;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .introducing-text {
            color: #000 !important;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .hero-image-container {
            position: relative;
            margin-top: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image-container img {
            max-width: 100%;
            height: auto;
        }
        .apply-now-btn {
            background-color: #ff4d00;
            border: none;
            border-radius: 8px;
            color: #ffffff;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 40px;
            transition: background-color 0.3s ease;
        }
        .apply-now-btn:hover {
            background-color: #e64400;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1rem;
            }
        }




 .random{
            background-color:#C4D7D2 ;
            padding: 70px;
        }
 
         .main-heading {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .intro-paragraph {
            font-size: 1.125rem;
            color: #000;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }
        .service-item-card {
            background-color: #ffffff;
            color: #0d1e2e;
            border-radius: 1rem;
            padding: 2.5rem;
            width: 500px;
            margin-bottom: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
         @media (max-width: 768px) {
         
           .random{
            padding: 20px;
           }
           
        
        }

        .service-item-card .icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 70px;
            height: 70px;
            background-color: #f8f9fa;
            border-radius: 0.75rem;
            margin: 0 auto 1.5rem auto;
        }
        .service-item-card .material-icons {
            font-size: 2.5rem;
            color: #0d1e2e;
        }
        .service-item-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
        }
        .service-item-card p {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 1.5rem;
            text-align: center;
            flex-grow: 1;
        }
        .service-item-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        .service-item-card ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: #495057;
        }
        .service-item-card ul li .material-icons {
            color: #28a745;
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }






        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #111827;
        }
        .section-title span {
            color: #008672;
        }
        .phone-frame {
            width: 280px;
            height: 570px;
            background-image: url('https://storage.googleapis.com/gemini-prod-us-west1-assets/original_images/image-1718873760858.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
        }
        .phone-screen {
            width: 255px;
            height: 550px;
            border-radius: 30px;
            overflow: hidden;
        }
        .phone-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-name {
            font-size: 18px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
        }
        .testimonials-text {
            font-size: 16px;
            line-height: 1.6;
            color: #4b5563;
        }
        .testimonial-cards {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .testimonial-cards p {
            text-align: left;
        }



     .why-section-container {
  background-color: #EEEEEE;
  border-radius: 16px;
  padding: 60px 80px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.why-section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 50px;
}

.why-section-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}

.why-section-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
}

.why-section-item:last-child {
  margin-bottom: 0;
}

.why-section-icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;

  -webkit-font-smoothing: antialiased;
  color: #e74c3c;
  background-color: #EDD9D8;
  border-radius: 50%;
  padding: 4px;
  margin-right: 20px;
  min-width: 32px;
  text-align: center;
}

.why-section-solution {
  font-size: 20px;
  font-weight: 400;
  color: #003028;
  text-align: center;
}

.why-section-solution span {
  font-weight: 700;
}




.testimonial-section {
    background-color: #C4D7D2;
    color: #000 !important;
            padding: 60px 0;
        }
        .testimonial-card {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }
        .testimonial-card:last-child {
            margin-bottom: 0;
        }
        .testimonial-image-container {
            position: relative;
            flex: 0 0 300px;
            height: 300px;
        }
        .testimonial-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        .testimonial-book {
            position: absolute;
            bottom: 10px;
            left: -30px;
            width: 150px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-radius: 5px;
        }
        .testimonial-content {
            flex: 1;
            padding-left: 60px;
        }
        .testimonial-quote {
            color: #008672;
            font-size: 2.25rem;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .testimonial-text {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #000;
        }
        .testimonial-author {
            color: #008672;
            font-weight: bold;
            font-style: italic;
        }
        .testimonial-card.reverse {
            flex-direction: row-reverse;
        }
        .testimonial-card.reverse .testimonial-content {
            padding-left: 0;
            padding-right: 60px;
        }
        .testimonial-card.reverse .testimonial-book {
            left: auto;
            right: -30px;
        }@media (max-width: 991.98px) {
            .testimonial-card, .testimonial-card.reverse {
                flex-direction: column;
                text-align: center;
            }
            .testimonial-image-container {
                margin-bottom: 30px;
            }
            .testimonial-content, .testimonial-card.reverse .testimonial-content {
                padding: 0;
            }
            .testimonial-book {
                left: 50%;
                transform: translateX(-50%);
                bottom: -50px;
            }
            .testimonial-card.reverse .testimonial-book {
                right: 50%;
                transform: translateX(50%);
                left: auto;
            }
             .testimonial-card {
                margin-bottom: 120px;}
        }
        @media (max-width: 767.98px) {
             .testimonial-quote {
                font-size: 1.75rem;
            }
        }



        
.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: auto;
  font-style: italic;
}










 .section-container {
            padding: 60px 0;
        }
        .section-title {
            font-size: 3rem;
            font-weight: bold;
            color: #212529;
            text-align: center;
            margin-bottom: 1rem;
        }
        .section-title .highlight {
            text-decoration: none;
            color: #008672;
        }
        .section-subtitle {
            font-size: 1.125rem;
            color: #6c757d;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }
        .bestseller-header {
            background-color: #0d1e2e;
            color: #fff;
            padding: 1rem 1.5rem;
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
        }
        .bestseller-header h3 {
            color: #F2D9BB;
            font-size: 1.25rem;
            margin-bottom: 0;
        }
        .bestseller-header p {
            margin-bottom: 0;
            color: #adb5bd;
        }
        .training-list {
            list-style: none;
            padding: 0;
            margin: 0;
            border: 1px solid #dee2e6;
            border-top: none;
            border-bottom-left-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
        }
        .training-list-item {
            display: flex;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #dee2e6;
            align-items: flex-start;
        }
        .training-list-item:last-child {
            border-bottom: none;
        }
        .training-list-item .check-icon {
            color: #008672;
            margin-right: 1.5rem;
            font-size: 1.5rem;
        }
        .item-content {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .item-content h4 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.25rem 0;
            color: #212529;
        }
        .item-content p {
            font-size: 0.95rem;
            margin: 0;
            color: #6c757d;
        }
        @media (min-width: 768px) {
            .training-list-item {
                align-items: center;
            }
            .item-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .item-content h4 {
                margin: 0;
                width: 30%;
            }
            .item-content p {
                width: 65%;
            }
        }






         .sectionss-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #343a40;
            text-align: center;
            margin-bottom: 4rem;
        }
        .sectionss-title .highlight {
            color: #008672;
        }
        .comparison-card {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .comparison-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #343a40;
            margin-bottom: 2rem;
        }
        .comparison-list {
            list-style: none;
            padding-left: 0;
        }
        .comparison-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }
        .comparison-list .icon {
            margin-right: 1rem;
            font-size: 1.5rem;
            margin-top: 2px;
        }
        .icon-check {
            color: #1abc9c;
        }
        .icon-close {
            color: #e74c3c;
        }







        .testimonial-section-two {
    background-color: #ffffff;
    padding: 60px 0;
}
.testimonial-card-two {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.testimonial-card-two:last-child {
    margin-bottom: 0;
}
.testimonial-image-container-two {
    position: relative;
    flex: 0 0 300px;
    height: 300px;
}
.testimonial-image-two {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-book-two {
    position: absolute;
    bottom: 10px;
    left: -30px;
    width: 150px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.testimonial-content-two {
    flex: 1;
    padding-left: 60px;
}
.testimonial-quote-two {
    color: #008672;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}
.testimonial-text-two {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555555;
}
.testimonial-author-two {
    color: #008672;
    font-weight: bold;
    font-style: italic;
}
.testimonial-card-two.reverse-two {
    flex-direction: row-reverse;
}
.testimonial-card-two.reverse-two .testimonial-content-two {
    padding-left: 0;
    padding-right: 60px;
}
.testimonial-card-two.reverse-two .testimonial-book-two {
    left: auto;
    right: -30px;
}

@media (max-width: 991.98px) {
    .testimonial-card-two,
    .testimonial-card-two.reverse-two {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-image-container-two {
        margin-bottom: 30px;
    }
    .testimonial-content-two,
    .testimonial-card-two.reverse-two .testimonial-content-two {
        padding: 0;
    }
    .testimonial-book-two {
        left: 50%;
        transform: translateX(-50%);
        bottom: -50px;
    }
    .testimonial-card-two.reverse-two .testimonial-book-two {
        right: 50%;
        transform: translateX(50%);
        left: auto;
    }
    .testimonial-card-two {
        margin-bottom: 120px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-quote-two {
        font-size: 1.75rem;
    }
}








.ht3{
    color: #008672 !important;
}



.faq-container {
            max-width: 90%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        
        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .faq-item.active {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(32, 178, 170, 0.2);
            border-color: rgba(32, 178, 170, 0.3);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .faq-question:hover::before {
            left: 100%;
        }

        .faq-question:hover {
            color: #008672;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
           
           
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(-10px);
        }

        .faq-answer.show {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
        }

        .faq-answer-content {
            padding: 0 30px 30px 30px;
            color: #555;
            line-height: 1.6;
            font-size: 1rem;
        }

        .faq-answer-content p {
            margin: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pulse-animation {
            animation: pulse 0.3s ease;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .faq-question {
                padding: 20px 20px;
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 20px 25px 20px;
                font-size: 0.95rem;
            }

            .faq-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 1.8rem;
            }

            .faq-question {
                padding: 18px 15px;
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 15px 20px 15px;
            }
        }

        .faq-item {
            animation: slideInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }




        
.person-section {
    padding: 5rem 0;
}
.person-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
}
.person-heading .highlight {
    color: #28a745;
}
.person-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.person-image-container img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 50%;
}
.person-quote {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #006A6A;
    border-left: 4px solid #28a745;
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.person-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #212529;
    margin-bottom: 2rem;
}
.person-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
}
@media (max-width: 991.98px) {
    .person-image-container {
        margin-bottom: 3rem;
    }
    .person-quote {
        font-size: 1.75rem;
    }
}
@media (max-width: 767.98px) {
    .person-heading {
        font-size: 2rem;
    }
    .person-quote {
        font-size: 1.5rem;
    }
}
