* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f5f5;
}

/* Navbar */
.navbar {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff, #e9e9e9);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #dcdcdc;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 50px;
    /* margin-right: 10px; */
}

.logo-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: -4px;
    letter-spacing: .5px;
}

.logo-text span {
    color: #00bf63;
}

.logo-text p {
    font-size: 11px;
    color: #555;
}

/* Menu Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #00bf63;
}

/* Button */
.nav-btn {
    padding: 8px 22px;
    border: 1px solid #00bf63;
    border-radius: 30px;
    text-decoration: none;
    color: #00bf63;
    transition: .3s;
    font-size: 15px;
}

.nav-btn:hover {
    background: #00bf63;
    color: white;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #222;
    margin: 5px 0;
    transition: 0.3s;
}

/* HOME SECTION Layout */
.home-section {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 25px;
    max-width: 1300px;
    margin: 20px auto;
    padding: 20px;
}

/* Right Side Form Container */
.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: auto;
    min-height: 100%;
}

.form-container h2 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

/* Zoho Form iframe */
.zoho-form {
    width: 100%;
    height: auto;
    min-height: 650px; /* desktop height */
    border: none;
}

/* Images Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 6px;
    padding:5px;
}

.card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 6px;
}

.card p {
    font-weight: 600;
    padding: 5px 3px;
    text-align: center;
}

/* home section - company success */
.stats-section {
    background-color: #0a8f4c;
    padding: 35px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    justify-content: center;
}

.stat-item img {
    width: 40px;
    height: auto;
}

.stat-text p {
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 400;
}

.stat-text h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-text span {
    font-size: 12px;
    opacity: 0.9;
}

/* celebrity slide and about section */
.about-section {    
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 1300px;
    margin: 0px auto;
    padding: 20px;
}

.about-video{
    flex: 1;    
    text-align: left;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.about-video video{
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.about-content{
    flex: 1;    
    /* padding: 20px; */
}

.about-content h2 {
    font-size: 43px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-content p {
    font-size: 21px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 14px;
    color: #333;
}


/* about video slider */
.videoSwiper video {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.videoSwiper {
    position: relative;
    width: 100%;
}

.videoSwiper .swiper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.videoSwiper .swiper-button-next,
.videoSwiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    transition: all 0.3s ease-in-out;
}

/* Arrow Icons */
.videoSwiper .swiper-button-next:after,
.videoSwiper .swiper-button-prev:after {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

/* Hover Effect */
.videoSwiper .swiper-button-next:hover,
.videoSwiper .swiper-button-prev:hover {
    background: #088e4e;
    /* transform: scale(1.15); */
    box-shadow: 0px 0px 12px rgba(8,142,78,0.6);
}

/* Position Fix */
.videoSwiper .swiper-button-next {
    right: 10px;
}
.videoSwiper .swiper-button-prev {
    left: 10px;
}

/* Pagination Dots */
.videoSwiper .swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.videoSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #dcdcdc;
    opacity: 1;
}

.videoSwiper .swiper-pagination-bullet-active {
    background: #088e4e;
    width: 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* in the media */
.media-section {
    padding: 20px 20px;
    /* background: #fff; */
    background-color: #0a8f4c;
}

.media-container {
    max-width: 1260px;
    margin: auto;
    text-align: center;
    padding: 20px 0px;
}

.media-title {
    font-size: 35px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 25px;
    color: #fff;
}

/* MARQUEE WRAPPER */
.logo-marquee {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.logo-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

/* LOGO SET */
.logo-set {
    display: flex;
    gap: 80px;
    padding-right: 80px; /* SAME SPACE AS GAP */
}

/* LOGOS */
.logo-set a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-set img {
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* Hover */
.logo-set a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* client review */
.client-review-section {
    padding: 30px 20px;
    background: #f5f5f5;
    text-align: center;
}

.client-review-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0a8f4c;
    margin-bottom: 30px;
}

/* Swiper */
.clientReviewSwiper {
    max-width: 1260px;
    margin: auto;
    padding-bottom: 60px;
}

/* Slide inner wrapper */
.review-slide-inner {
    position: relative;
    padding-top: 45px; /* avatar space */
}

/* Avatar */
.client-avatar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    z-index: 5;
}

.client-avatar img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid #0a8f4c;
    object-fit: cover;
}

/* Card */
.client-review-card {
    background: #fff;
    padding: 60px 30px 35px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
    height: 100%;
}

.client-review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.client-review-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.client-review-card span {
    font-size: 14px;
    color: #777;
}

/* Pagination */
.client-review-pagination {
    margin-top: 30px;
}

.client-review-pagination .swiper-pagination-bullet {
    background: #52ae80;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.client-review-pagination .swiper-pagination-bullet-active {
    background: #0a8f4c;
    width: 26px;
    border-radius: 12px;
}


/* settlement process step */
.settlement-process-section {
    padding: 40px 20px;
    background: #ffffff;
}

.process-container {
    max-width: 900px;
    margin: auto;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: #0a8f4c;
    font-weight: 600;
    letter-spacing: 1px;
}

.process-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 8px;
}

.process-timeline {
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 60px 1fr;
    gap: 20px;
    /* align-items: flex-start; */
    /* margin-bottom: 50px; */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
    min-height: 120px;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-icon img {
    width: 60px;
}

.process-line {
    position: relative;
    display: flex;
    justify-content: center;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 2px;
    height: 100%;
    z-index: -1;
    background: #dcdcdc;
}

.process-step:last-child .process-line::after {
    display: none;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #0a8f4c;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.process-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding-bottom: 30px;
}

/* work benefits */
.work-benefits-section {
    padding: 40px 20px;
    /* background: linear-gradient(180deg, #fff, #f7f7f7); */
}

.benefits-container {
    max-width: 1260px;
    margin: auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 35px;
}

.benefits-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0a8f4c;
    text-transform: uppercase;
}

.benefits-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 8px;
    color: #222;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-card {
    background: #fff;
    padding: 10px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.benefit-card img {
    width: 100px;
    margin-bottom: 18px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    /* display: none; */
}

/* trusted section */
.trusted-section {
    padding: 40px 20px;
    background: #f4f7fb;
    text-align: center;
}

.trusted-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a8f4c;
    margin-bottom: 30px;
}

/* Cards Layout */
.trusted-logos {
    max-width: 1260px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.trusted-card {
    background: #fff;
    padding: 10px 25px;
    /* border-radius: 22px; */
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.trusted-card:hover {
    transform: translateY(-6px);
}

.trusted-card img {
    /* height: 40px; */
    width: 70%;
    /* margin-bottom: 20px; */
}

/* Rating Row */
.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* Number */
.rating-number {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    min-width: 50px;
}

/* Stars */
.stars {
    display: flex;
    gap: 8px;
}

.star {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: block;
}

.star svg {
    width: 100%;
    height: 100%;
}

/* Animation */
.star.animate svg {
    animation: starZoom 0.45s ease forwards;
}

/* why choose us section */
.why-choose-us {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

.why-container {
    max-width: 1260px;
    margin: auto;
}

.why-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    font-family: 'Josefin Sans', sans-serif;
}

.why-subtitle {
    margin-top: 8px;
    font-size: 24px;
    color: #838383;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

.why-cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.why-card {
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-card img {
    width: 120px;
    margin-bottom: 16px;
}

.why-card p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
}

.why-card:hover {
    transform: translateY(-6px);
}

/* our services section */
.our-services {
    padding: 40px 20px;
    background: #f4f7fb;
    text-align: center;
}

.services-container {
    max-width: 1260px;
    margin: auto;
}

.services-heading {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0a8f4c;
    margin-bottom: 30px;
}

/* Grid */
.services-grid {
    display: flex;
    gap: 40px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

/* Card */
.service-card {
    width: 370px;
    text-align: left;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Buttons */
.service-buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.apply-btn {
    background: #4CAF50;
    color: #fff;
}

.apply-btn:hover {
    background: #3e9e45;
}

.video-btn {
    background: #4CAF50;
    color: #fff;
}

.video-btn:hover {
    background: #3e9e45;
}

/* Copyright */
.copyright-text {
    margin-top: 40px;
    font-size: 14px;
    color: #fff;
    background-color: #00bf63;
    padding:10px;
}

/* Mobile Fixed Register Button */
.mobile-register-btn {
    display: none;
}



/* in the media keyframe */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* trusted section */
@keyframes starZoom {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* RESPONSIVE */
@media (max-width: 1299px) {
    /* in the media */
    .media-container {
        padding: 20px 0px;
    }

    /* trusted section */
    .trusted-card img {
        width: 80%;
    }

    /* service section */
    .services-grid {
        gap: 20px;
    }
    .service-card {
        width: 350px;
    }
}

@media (max-width: 1200px) {
    /* about section */
    .about-content h2 {
        font-size: 35px;
    }

    .about-content p {
        font-size: 20px;
    }

    /* service section */
    .service-card {
        width: 320px;
    }
}

@media (max-width: 1199px) and (min-width: 991px) {
    /* home section */
    .card img {
        height: 140px;
    }

    .zoho-form {
        min-height: 600px;
    }
}

@media (max-width: 1121px) {
    /* about section */
    .about-content h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .about-content p {
        font-size: 19px;
        line-height: 1.6;
    }

    /* service section */
    .service-card {
        width: 300px;
    }
}

@media (max-width: 1024px) {
    /* work benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 800px) {
    /* home section */
    .card img {
        height: 120px;
    }

    .zoho-form {
        min-height: 580px;
    }
}

@media (max-width: 991px) {
    /* about section */
    .about-container {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 27px;
        text-align: center;
    }

    /* trusted section */
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    /* why choose section */
    .why-cards {
        gap: 30px;
    }

    .why-card {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }
}

@media (max-width: 950px) {
    /* navbar section */
    .logo img {
        height: 40px;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        width: 200px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    /* home section - company success */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:800px) {
    /* home section */
    .home-section {
        grid-template-columns: 1fr;
    }

    /* form comes first */
    .form-container {
        order: -1;
        min-height: 600px;
    }

    .zoho-form {
        min-height: 550px;
    }
}

@media (max-width:768px) {
    /* about section */
    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 18px;
    }

    /* in the media */
    .logo-set {
        gap: 40px;
        padding-right: 40px;
    }

    .logo-set img {
        height: 60px;
    }

    /* client review */
    .client-review-heading {
        font-size: 26px;
        margin-bottom: 15px;
    }

    /* settlement process step */
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-step:last-child .process-line::after {
        display: block;
    }

    .process-line {
        position: absolute;
    }

    .process-icon img {
        margin: auto;
    }

    /* service section */
    .service-card {
        width: 300px;
    }
}

@media (max-width:700px) and (min-width:600px) {
    /* trusted */
    .star {
        height: 22px;
        width: 22px;
        min-width: 22px;
        min-height: 22px;
    }
    .rating-number {
        font-size: 25px;
    }
}


@media (max-width:700px) {
    /* trusted */
    .star {
        height: 22px;
        width: 22px;
        min-width: 22px;
        min-height: 22px;
    }
    .rating-number {
        font-size: 25px;
    }

    /* service section */
    .service-card {
        width: 100%;
    }

    .service-card img {
        height: 300px;
    }

    .services-grid {
        gap: 40px;
    }

    .services-heading {
        font-size: 25px;
    }
}

@media (max-width: 600px) {
    /* home section */
    .card img {
        height: 250px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .zoho-form {
        min-height: 520px;
    }

    /* work benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-header h2 {
        font-size: 26px;
    }

    /* trusted section */
    .trusted-logos {
        grid-template-columns: 1fr;
    }

    .trusted-title {
        font-size: 28px;
    }

    /* service section */
    .our-services {
        padding: 40px 20px 80px;
    }

    /* mobile fixed register button */
    .mobile-register-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #0a8f4c;
        text-align: center;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.25);
    }

    .mobile-register-btn a {
        display: block;
        padding: 14px 10px;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 501px) {
    /* home section */
    .card img {
        height: 200px;
    }

    /* home section - company success */
    .stats-container {
        grid-template-columns: 1fr;
    }

    /* about section */
    .about-content h2 {
        font-size: 21px;
    }

    .about-content p {
        font-size: 17px;
    }

    /* in the media */
    .logo-set img {
        height: 50px;
    }

    /* why choose section */
    .why-title {
        font-size: 23px;
    }

    .why-subtitle {
        font-size: 18px;
    }

    /* service section */
    .service-card img {
        height: 200px;
    }
}

@media (max-width: 391px) {
    /* about section */
    .about-content p {
        font-size: 16px;
    }

    /* why choose section */
    .why-card {
        width: 100%;
        max-width: 262px;
        margin: auto;
    }
}
