:root {
    --primary: #348A3D;
    --secondary: #E0AC00;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
    font-family: "Anton", sans-serif;
}

h6 {
    font-weight: 500;
    font-family: "Bai Jamjuree", sans-serif;
}

body {
    position: relative;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s ease-in-out;
}

.form-control {
    box-shadow: none !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button:focus {
    box-shadow: none;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-20 {
    padding-top: 20px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Button */
.primary-btn {
    background-color: var(--primary);
    border-radius: 8px;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.primary-btn:hover {
    background-color: #000;
    color: #fff;
    box-shadow: inset 0px 0px 10px #f9f9f95c;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
}

.section-title .main-title {
    color: #00003E;
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title .sub-title {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .section-title .main-title {
        font-size: 35px;
    }

    .section-title .sub-title {
        font-size: 16px;
    }
}

/* List Style */
.custom-list ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.custom-list ul li::before {
    position: absolute;
    content: "\f061";
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
}

/* ========================================
- Header Section
=========================================== */
.main-header {
    position: relative;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
     border-bottom: 1px solid rgb(54 54 54 / 10%);
}

.main-header.fixed {
    position: fixed;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -moz-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.main-header .header-info{
     padding: 10px 0 0 0;
     background-color: var(--primary);
    border-bottom: 1px solid #e6e6e6;
 }
.main-header .header-info .news-feed{
    padding: 5px 0 0 0;
}
.main-header .header-info .news-feed a{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
    margin-bottom: 0;
}
.main-header .header-info .news-feed i{
    color: #fff;
}
.main-header .header-info .social-links a{
    display: inline-block;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    margin: 0 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
 }
.main-header .header-info .social-links a:hover{
    color: var(--secondary);
  }

.main-header .navbar .nav-link {
    position: relative;
    display: inline-block;
    color: #111;
    font-weight: 600;
    text-transform: capitalize;
    padding: 8px 25px;
    font-size: 18px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.main-header .navbar .nav-link:hover,
.main-header .navbar .nav-link:focus,
.main-header .navbar .nav-link.active {
    color: var(--primary, #348A3D); /* fallback */
}

.main-header .navbar .nav-link::before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -2px;
    height: 3px;
    width: 65%;
    opacity: 0;
    background-color: var(--primary, #348A3D);
}

.main-header .navbar .nav-link.active::before {
    opacity: 1;
}

.main-header .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -2px;
    height: 3px;
    width: 65%;
    background-color: var(--primary, #348A3D);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    animation: line-out 0.4s forwards;
    -webkit-animation: line-out 0.4s forwards;
}

.main-header .navbar .nav-link:hover::after {
    animation: line-in 0.4s forwards;
    -webkit-animation: line-in 0.4s forwards;
}

.main-header .navbar .navbar-toggler {
    padding: 10px 10px;
    border-radius: 0;
}

.main-header .navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.main-header .navbar .offcanvas.show .navbar-nav .nav-link {
    padding: 10px 20px;
}

.main-header .navbar .header-btn {
    padding: 0 20px;
}

.main-header .navbar .header-btn .primary-btn {
    border: 1px solid #00003E;
    border-bottom: 4px solid #00003E;
    text-transform: uppercase;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .main-header .navbar .nav-link::before,
    .main-header .navbar .nav-link::after {
        display: none;
    }
}

/* Keyframe Animations */
@keyframes line-in {
    from {
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
    }
}

@keyframes line-out {
    from {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
    }
}

/* ====================================
- Banner Section
======================================= */
.banner-section {
    position: relative;
    padding-top: 30px;
    overflow: hidden;
}

.banner-section .banner-wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 50px 80px 50px;
    border-radius: 20px;
    z-index: 1;
}

.banner-section .banner-wrapper .title {
    font-size: 50px;
    margin-bottom: 20px;
}

.banner-section .banner-wrapper .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.banner-section .banner-wrapper .description {
    margin-bottom: 20px;
}

.banner-section .banner-wrapper .play-btn {
    color: var(--secondary, #E0AC00); /* Fallback for older browsers */
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    gap: 10px;
    text-decoration: none;
}

.banner-section .banner-wrapper .play-btn img {
    width: 20px;
}

.banner-section .banner-wrapper .play-btn span {
    position: relative;
    display: inline-block;
}

.banner-section .banner-wrapper .play-btn span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background-color: var(--secondary, #E0AC00);
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
       -moz-transform-origin: left;
        -ms-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
    -webkit-animation: line-out 0.4s forwards;
       -moz-animation: line-out 0.4s forwards;
         -o-animation: line-out 0.4s forwards;
            animation: line-out 0.4s forwards;
}

.banner-section .banner-wrapper .play-btn:hover span::after {
    -webkit-animation: line-in 0.4s forwards;
       -moz-animation: line-in 0.4s forwards;
         -o-animation: line-in 0.4s forwards;
            animation: line-in 0.4s forwards;
}

/* Keyframes */
@-webkit-keyframes line-in {
    0% {
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
                transform-origin: left;
    }
    100% {
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: left;
                transform-origin: left;
    }
}
@keyframes line-in {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@-webkit-keyframes line-out {
    0% {
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: right;
                transform-origin: right;
    }
    100% {
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: right;
                transform-origin: right;
    }
}
@keyframes line-out {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

/* Responsive */
@media screen and (max-width: 568px) {
    .banner-section .banner-wrapper {
        padding: 80px 30px;
        text-align: center;
    }

    .banner-section .banner-wrapper .play-btn {
        -webkit-box-pack: center;
           -ms-flex-pack: center;
               justify-content: center;
    }
}

/* ====================================
- Information Section
======================================= */
.information-section {
    position: relative;
    overflow: hidden;
}
.information-section .section-title {
    margin-bottom: 40px;
}
/* Overlay Shapes */
.information-section .overlay-shape .shape-01,
.information-section .overlay-shape .shape-02,
.information-section .overlay-shape .shape-03,
.information-section .overlay-shape .shape-04 {
    position: absolute;
    z-index: -1;
}

.information-section .overlay-shape .shape-01 {
    top: 0;
    right: 0;
    width: 100%;
}

.information-section .overlay-shape .shape-02 {
    top: 5%;
    left: 2%;
    width: 10%;
}

.information-section .overlay-shape .shape-03 {
    top: 18%;
    right: -5%;
}

.information-section .overlay-shape .shape-04 {
    bottom: 0;
    right: -4%;
}

/* Ordered List */
.information-section .list ol {
    padding-left: 20px;
    font-weight: 600;
    font-size: 18px;
}

.information-section .list ol li {
    padding-left: 8px;
    margin-bottom: 5px;
}

/* Section Title */
.information-section .section-title .sub-title {
    font-size: 20px;
}

/* Video Container */
.information-section .video-container {
    padding-top: 80px;
}

.information-section .video-container .bg-layer {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 32px;
    z-index: 1;
    overflow: hidden;
}

/* Background Overlay */
.information-section .video-container .bg-layer::before {
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 32px;
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}

/* Play Button */
.information-section .video-container .bg-layer .link .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: var(--primary, #348A3D);
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 300ms ease;
       -moz-transition: all 300ms ease;
         -o-transition: all 300ms ease;
            transition: all 300ms ease;
}

.information-section .video-container .bg-layer .link .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary, #348A3D);
    border-radius: 50%;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: wave-effect 1.5s ease-out infinite;
       -moz-animation: wave-effect 1.5s ease-out infinite;
         -o-animation: wave-effect 1.5s ease-out infinite;
            animation: wave-effect 1.5s ease-out infinite;
}

/* Hover Overlay */
.information-section .video-container .bg-layer:hover::before {
    opacity: 0.4;
}

/* Keyframes */
@-webkit-keyframes wave-effect {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
                transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.5);
                transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes wave-effect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
.information-section .owl-carousel {
    position: relative;
    z-index: 1;
}
.information-section .owl-carousel .owl-stage {
    display: flex;
    height: 100%;
}
.information-section .info-item {
    padding: 20px 30px;
    border: 3px solid var(--primary);
    border-radius: 5px;
    height: 100%;
}
.information-section .info-item h4 {
    font-size: 22px;
    color: #000035;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .information-section .overlay-shape .shape-02,
    .information-section .overlay-shape .shape-03,
    .information-section .overlay-shape .shape-04 {
        width: 10%;
    }
}

@media screen and (max-width: 568px) {
    .information-section .overlay-shape .shape-02 {
        top: 4%;
    }
    .information-section .video-container .bg-layer,
    .information-section .video-container .bg-layer::before {
        border-radius: 15px;
    }
}

/* ===================================
- Pain points Section
==================================== */
.pain-point-section {
    position: relative;
    overflow: hidden;
}

.pain-point-section .accordion-button:focus {
    box-shadow: none;
}

.pain-point-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: #fff;
    box-shadow: none;
}

.pain-point-section .accordion-button {
    font-size: 18px;
}

.pain-point-section .accordion-button:hover {
    color: var(--primary);
    background-color: #fff;
}

.pain-point-section .accordion-item {
    margin-bottom: 10px;
    border: 0;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);

}

.pain-point-section .accordion-button:not(.collapsed)::after {
    color: var(--primary);
    background-image: none;
    content: '\f078';
    transform: rotate(180deg);
    font-family: 'FontAwesome';
    font-size: 20px;
}

.pain-point-section .accordion-button.collapsed::after {
    color: var(--primary);
    background-image: none;
    content: '\f078';
    font-family: 'FontAwesome';
    font-size: 20px;
}

.pain-point-section .accordion-body {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}
/* ====================================
- About Section
======================================= */
.about-section {
    position: relative;
    background-color: var(--primary, #348A3D); /* Fallback for primary color */
}

/* Heading */
.about-section .about-content h4 {
    position: relative;
    color: #fff;
    display: inline-block;
}

.about-section .about-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    background-color: var(--secondary, #E0AC00); /* Fallback for secondary color */
}

/* Paragraph */
.about-section .about-content .bottom-text p {
    color: #fff;
    font-size: 22px;
    padding-top: 30px;
}

/* Course Item Block */
.about-section .about-content .course-item {
    border: 0.3px solid rgba(255, 255, 255, 0.6);
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    border-radius: 15px;
}

.about-section .about-content .course-item h6 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-section .about-content .course-item p{
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
}
.about-section .about-content .course-item ul li {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}
.about-section .about-content .course-item .icon-box{
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.about-section .about-content .course-item .icon-box img {
    width: 50px;
    height: 50px;
    transition: all 0.5s ease-in-out;
}
.about-section .about-content .course-item .icon-box:hover img {
        transform: rotateY(180deg);
}
/* ====================================
- Why Choose Section
======================================= */
.why-choose-section {
    position: relative;
}

/* Overlay Shapes */
.why-choose-section .overlay-shape .shape-01,
.why-choose-section .overlay-shape .shape-02,
.why-choose-section .overlay-shape .shape-03 {
    position: absolute;
    z-index: -1;
}

.why-choose-section .overlay-shape .shape-01 {
    top: 16%;
    left: 0;
    width: 100%;
}

.why-choose-section .overlay-shape .shape-02 {
    top: 40%;
    left: 0;
}

.why-choose-section .overlay-shape .shape-03 {
    top: 12%;
    right: 0;
}

/* Content Box */
.why-choose-section .content-box {
    padding-left: 100px;
}

.why-choose-section .content-box .section-title .sub-title {
    font-weight: 600;
}

/* List Items */
.why-choose-section .content-box ul li h5 {
    color: var(--primary, #348A3D); /* fallback added */
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.why-choose-section .content-box ul li p {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .why-choose-section .overlay-shape .shape-02,
    .why-choose-section .overlay-shape .shape-03 {
        display: none;
    }

    .why-choose-section .content-box {
        padding-left: 0;
    }
}


/* ====================================
- Testimonial Section
======================================= */
.testimonial-section {
    position: relative;
    background-color: #FFF9E5;
}

/* Overlay Shapes */
.testimonial-section .overlay-shape .shape-01,
.testimonial-section .overlay-shape .shape-02 {
    position: absolute;
    z-index: 1;
}

.testimonial-section .overlay-shape .shape-01 {
    top: 12%;
    left: 4%;
}

.testimonial-section .overlay-shape .shape-02 {
    top: -14%;
    right: -4%;
}

/* Owl Carousel */
.testimonial-section .owl-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-section .owl-carousel .owl-stage {
    padding: 50px 0;
}

.testimonial-section .owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid #00003E;
    display: inline-block;
    -webkit-transition: background-color 0.3s ease;
       -moz-transition: background-color 0.3s ease;
         -o-transition: background-color 0.3s ease;
            transition: background-color 0.3s ease;
}

.testimonial-section .owl-carousel .owl-dot.active span {
    background-color: #00003E;
    border: 1px solid #00003E;
}

/* Testimonial Item */
.testimonial-section .testimonial-item {
    position: relative;
}

.testimonial-section .testimonial-item .image-box {
    padding: 30px 0;
}

.testimonial-section .testimonial-item .image-box img {
    width: 150px;
    max-width: 100%;
    display: block;
    border: 1px solid #00003E;
    border-radius: 50%;
}


/* Content Box */
.testimonial-section .testimonial-item .content-box {
    position: relative;
    bottom: 0;
    left: -65px;
    padding: 40px 20px 20px 20px;
    background-color: #fff;
    border: 1px solid #00003E;
    border-radius: 24px; 
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* Quote Icon */
.testimonial-section .testimonial-item .content-box .quotes-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary, #348A3D); /* fallback added */
    border: 1px solid #00003E;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.testimonial-section .testimonial-item .content-box .quotes-icon img {
    width: 25px;
    max-width: 100%;
}

/* Text */
.testimonial-section .testimonial-item .content-box h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}
.testimonial-section .testimonial-item .content-box .testimonial-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.testimonial-section .testimonial-item .content-box .testimonial-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.testimonial-section .testimonial-item .content-box .read-more-btn {
  color: #348A3D;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}
/* ================================
   Responsive Design
================================= */
@media screen and (max-width: 1024px) {
    .testimonial-section .overlay-shape .shape-01 {
        top: 2%;
        width: 15%;
    }

    .testimonial-section .overlay-shape .shape-02 {
        display: none;
    }

    .testimonial-section .testimonial-item .content-box {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 20px;
    }
}


/* ============================================
- CTA Section
=============================================== */
.cta-section {
    position: relative;
    background-color: #979CD4;
    overflow: hidden;
}

/* Overlay Shapes */
.cta-section .overlay-shape .shape-01,
.cta-section .overlay-shape .shape-02 {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.cta-section .overlay-shape .shape-01 {
    left: 0;
}

.cta-section .overlay-shape .shape-02 {
    right: 0;
}

/* Content Box with List */
.cta-section .content-box ol {
    color: #fff;
    padding-left: 20px;
    font-weight: 600;
    font-size: 18px;
    list-style-type: decimal;
}

.cta-section .content-box ol li {
    padding-left: 8px;
    margin-bottom: 5px;
}

/* Image Box */
.cta-section .image-box {
    position: absolute;
    left: 15%;
    bottom: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.cta-section .image-box img {
    width: 80%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Responsive Design
================================= */
@media screen and (max-width: 1024px) {
    .cta-section .overlay-shape .shape-01,
    .cta-section .overlay-shape .shape-02 {
        width: 10%;
    }

    .cta-section .image-box {
        left: 10%;
    }
}

@media screen and (max-width: 768px) {
    .cta-section .image-box {
        left: 0;
        width: 100%;
        text-align: center;
    }

    .cta-section .image-box img {
        width: 90%;
        margin: 0 auto;
    }
}


/* ============================================
- Benefits Section
=============================================== */
.benefits-section {
    position: relative;
    background-color: var(--primary, #348A3D); /* Fallback for primary */
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* List Styling */
.benefits-section .custom-list ul {
    margin: 0;
    padding: 0 20px;
    list-style-position: inside;
}

.benefits-section .custom-list ul li {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Image Box */
.benefits-section .image-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 50%;
}

.benefits-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
       -moz-user-drag: none;
        -ms-user-drag: none;
            user-drag: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .benefits-section .image-box {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }

    .benefits-section .image-box img {
        width: 100%;
        height: auto;
    }
}


.footer-section {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.footer-section .footer-logo {
    text-align: center;
}

.footer-section .widget-list ul li {
    margin-bottom: 10px;
}

.footer-section .widget-list ul li a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

.footer-section .widget-list ul li a:hover {
    color: var(--primary, #348A3D);
    padding-left: 5px;
}

.footer-section .title {
    color: #00003E;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section .widget-list .social-links {
    padding: 20px 0;
}

.footer-section .widget-list .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    background-color: var(--primary, #348A3D);
    border-radius: 8px;
    font-size: 18px;
    margin: 0 2px;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

.footer-section .widget-list .social-links a:hover {
    background-color: #000035;
}

.footer-section .contact-list .contact-item {
    margin-bottom: 10px;
}

.footer-section .contact-list .contact-item p a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    color: inherit;
    -webkit-transition: color 0.3s ease;
            transition: color 0.3s ease;
}

.footer-section .contact-list .contact-item p a:hover {
    color: var(--primary, #348A3D);
}
/* ============================================
- Copyright Section 
=============================================== */
.copyrights-section {
    position: relative;
    padding: 15px 0;
    background-color: #00003E;
}

.copyrights-section .copyrights p {
    color: #fff;
    margin-bottom: 0;
}

.copyrights-section .copyrights-links ul li {
    display: inline-block;
    margin: 0 20px;
}

.copyrights-section .copyrights-links ul li p {
    margin-bottom: 0;
}

.copyrights-section .copyrights-links ul li p a {
    color: #fff;
}

.copyrights-section .copyrights-links ul li a:hover {
    color: var(--primary);
}

@media screen and (max-width: 768px) {
    .copyrights-section {
        text-align: center;
    }

    .copyrights-section .copyrights-links ul li {
        display: inline-block;
        margin: 0 10px;
    }

}


/* FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-size: 24px;
    font-weight: 400;
    background-color: #fff;
    color: #000;
    -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

.faq-section .accordion-button span {
    font-size: 16px;
    margin-right: 20px;
    color: #000000;
}

.faq-section .accordion-button:focus {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary, #368b3f);
    background-color: #fff;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.faq-section .accordion-item {
    background-color: #fff;
    border: none;
    border-bottom: 1px solid rgba(86, 86, 86, 0.82);
    padding: 20px 25px;
    margin-bottom: 10px;
}

.faq-section .accordion-button:not(.collapsed)::after,
.faq-section .accordion-button.collapsed::after {
    background-image: none;
    font-family: 'FontAwesome', sans-serif;
    font-size: 20px;
    content: '\f061';
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
}

.faq-section .accordion-button:not(.collapsed)::after {
    color: var(--primary, #368b3f);
}

.faq-section .accordion-button.collapsed::after {
    color: #000;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.faq-section .accordion-body {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
}
.faq-section .accordion-body p {
    font-size: 18px;
}
.faq-section .accordion-body h6 {
    font-size: 20px;
    color: #000035;
    font-weight: 700;
    margin-bottom: 10px;
}
.faq-section .accordion-body.custom-list ul li::before {
    color: var(--primary);
}

/* Offer-Section */
.offer-section {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.offer-section .offer-wrapper h3 {
    color: var(--primary, #368b3f);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;

}

.offer-section .offer-wrapper del {
    color: #cfcfcf;
    font-size: 24px;
}
.offer-section .offer-wrapper .price-info{
    border: 1px solid var(--primary);
    padding: 20px;
    text-align: center;
    background-color: var(--primary);
    border-radius: 20px;
}
.offer-section .offer-wrapper [class*="col-"]:nth-child(even) .price-info{
background-color: var(--secondary);
 border: 1px solid var(--secondary);
}


.offer-section .offer-wrapper .price-info h4{
 color: #fff;
 margin-bottom: 20px;
}
.offer-section .offer-wrapper .price-info h5 {
    color: #fff;
    margin-bottom: 0;
}

/* Timer */
.offer-section .timer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-gap: 20px;
            gap: 20px;
    margin: 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.offer-section .timer-container .timer-box {
    background-color: #f7f4f2;
    padding: 10px;
    border-radius: 10px;
    width: 80px;
    text-align: center;
}

.offer-section .timer-container .timer-box span {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary, #368b3f);
}

.offer-section .timer-container .timer-box .timer-label {
    font-size: 16px;
    font-weight: 700;
}
.form-modal .btn-close:focus,
.form-modal .btn-close:focus-visible {
    box-shadow: none;
}
.form-modal .contact-form-wrap .col-md-6{
width: 100%;
}
.news-feed{
    background-color: var(--primary);
    padding: 5px 0 0 0;
}
.news-feed a{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
    margin-bottom: 0;
}
.news-feed i{
    color: #fff;
}