.hero-area {
    position: relative;
    padding: 120px 0 130px;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(65%);
    z-index: -1;
}
.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 70, 0.65); 
}


.hero-left {
    z-index: 5;
}

.hero-badge {
    background: #3a3a3c;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-badge .dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 25px;
    color: #fff;
    max-width: 500px;
}

.hero-text {
    color: #e2e2e2;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 520px;
}


.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-btn {
    background: #3a3a3c;
    padding: 14px 34px;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    background: #218838;
}

.arrow-circle {
    background: #00324a;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-link {
    color: #fff;
    font-size: 18px;
    text-decoration: underline;
}


.hero-right {
    position: relative;

    text-align: center;
    margin-bottom: -220px;
    z-index: 2;
}

.hero-man {
    width: 100%;
    max-width: 100%;
    height: 700px;
    position: relative;
    object-fit: cover !important;
    aspect-ratio: 1 / 1.05;
}


.hero-area {
    min-height: 780px;
}


@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-man {
        margin-top: 40px;
        max-width: 420px;
    }
    .hero-area {
        padding: 120px 0 140px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}



@media (max-width: 768px) {
    .hero-man {
        display: none !important;
    }
    .circle-img.circle-top{
        display: none !important;
    }
      .circle-img.circle-bottom{
        display: none !important;
    }
}







/* ==============================
   Why Choose Section
================================ */
.why-choose-section {
    padding: 40px 0;
    background: #fff;
}

.why-box {
    display: flex;
    gap: 22px;
    padding: 20px 10px;
    border-right: 1px solid #e5e5e5;
    transition: 0.3s;
    align-items: center;
}

.why-box.no-border {
    border-right: none;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: #3a3a3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.why-text h4 {
    font-size: 14px;
    color: #0a2a43;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    transition: 0.3s;
}

.why-box:hover .why-icon {
    background: #1f7c3e;
}

.why-box:hover .why-text h4 {
    color: #06304a;
}


@media(max-width: 991px){
    .why-box {
        flex-direction: row;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px 15px;
    }

    .why-box:last-child {
        border-bottom: none;
    }

    .why-text h4 {
        font-size: 18px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


@media(max-width: 575px){
    .why-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .why-box:last-child {
        border-bottom: none;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .why-text h4 {
        font-size: 18px;
        line-height: 1.3;
    }
}


/* ==============================
   Why Choose Section Close
================================ */










.about-section {
    padding: 20px 0;
    position: relative;
}


.about-tag {
    background: #3a3a3c;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 30px;
}


.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #082c45;
    margin: 20px 0;
    line-height: 1.2;
}

.about-title span {
    color: #1f7c3e;
}


.about-desc {
    font-size: 18px;
    color: #4d4d4d;
    margin-bottom: 30px;
}

/* LIST ITEMS */
.about-list ul {
    list-style: none;
    padding: 0;
}

.about-list ul li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #083047;
}

.about-list ul li i {
    color: #1f7c3e;
    font-size: 18px;
}


.about-images .main-curve-img img {
  
    border-radius: 20%;
}

@media (max-width: 767px){
  .about-images .main-curve-img img{
    width: 100% !important;
   
  }
}

.circle-img {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
}

.circle-top {
    top: 0px;
    right: 0px;
}

.circle-bottom {
    bottom: 40px;
    left: -30px;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIDEO BOX */
.video-box {
    margin-top: 20px;
    position: relative;
    width: 300px;
    border-radius: 14px;
    overflow: hidden;
}

.video-box img {
    width: 100%;
    border-radius: 14px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

/* STATS */
.about-stats {
    margin-top: 30px;
}

.about-stats h3 {
    font-size: 36px;
    font-weight: 800;
    color: #082c45;
}

.about-stats p {
    font-size: 17px;
    color: #4d4d4d;
}

/* INSECT FLOATING IMAGE */
.insect-floating {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 180px;
}

/* RESPONSIVE */
@media(max-width: 991px){
    .about-title {
        font-size: 34px;
    }
    .video-box {
        width: 100%;
        max-width: 280px;
    }
    .circle-img {
        width: 120px;
        height: 120px;
    }
}















.services-slider-section {
    padding: 30px 0;
    background: #f7f9f2;
    text-align: center;
}


.services-tag {
    background: #3a3a3c;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    color: #083047;
    margin: 25px 0 50px;
}

.services-title span {
    color: #1f7c3e;
}


.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 40px;
    transition: 0.4s ease;
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    display: block;
}


.service-icon {
    width: 95px;
    height: 95px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: -50px auto 15px;  
    z-index: 10;               
    border: 8px solid #fff;   
}
.service-icon img{
    color: #fff !important;
}
.service-icon.dark {
    background: #083047;
}

.service-icon img {
    width: 46px;
    height: 46px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding-bottom: 40px;
    overflow: visible;        
    position: relative;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #083047;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 15px;
    padding: 0 20px;
    height: 50px;
}


.service-link {
    margin-top: 35px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #3a3a3c;
    transition: 0.3s ease;
}

.arrow-circle {
    width: 34px;
    height: 34px;
    background: #3a3a3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover .service-icon {
    background: #083047;
}

.service-card:hover .service-link {
    color: #083047;
}

.service-card:hover .arrow-circle {
    background: #083047;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .services-title {
        font-size: 28px;
    }
        .services-slider-section .container {
        padding-left: 0;
        padding-right: 0;
    }

        .servicesSwiper .swiper-slide {
        width: 100% !important;
    }

    .service-card {
        width: 92%;
        margin: 0 auto;
    }
}



/* ===========================
   MOBILE OPTIMIZATION
=========================== */
@media (max-width: 768px) {

    .services-slider-section {
        padding: 20px 0;
    }

    .services-title {
        font-size: 26px;
        margin: 20px 0 30px;
        padding: 0 10px;
    }

    .service-card {
        padding-bottom: 25px;
    }

    .service-img {
        height: 160px; /* smaller image */
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: -35px auto 12px;
        border-width: 6px;
    }

    .service-icon img {
        width: 34px;
        height: 34px;
    }

    .service-card h4 {
        font-size: 18px;
        margin-bottom: 8px;
        padding: 0 12px;
    }

    .service-card p {
        font-size: 14px;
        padding: 0 14px;
        height: auto; /* REMOVE fixed height */
    }

    .service-link {
        margin-top: 18px !important;
        font-size: 16px;
    }

    .arrow-circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .services-title {
        font-size: 24px;
    }
}


.servicesSwiper {
    overflow: hidden; /* hide half slides */
}

.servicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}





/* SECTION WRAPPER */
.features-section {
    padding: 20px 0;
    position: relative;
}

/* TAG */
.features-tag {
    background: #3a3a3c;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.features-title {
    font-size: 42px;
    font-weight: 800;
    color: #083047;
    margin: 20px 0;
    line-height: 1.2;
}

.features-title span {
    color: #28a745;
}

/* DESCRIPTION */
.features-desc {
    font-size: 18px;
    color: #4d4d4d;
    margin-bottom: 30px;
}

.features-desc-2 {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
}


/* FEATURE BOXES */
.feature-items {
    margin-top: 20px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.feature-icon img {
    width: 30px;
    color: #fff !important;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #092c45;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 13px;
    color: #4d4d4d;
    margin: 0;
}

/* MAIN IMAGE */
.features-image-wrapper {
    position: relative;
}

.features-main-img {
    width: 100%;
    border-radius: 22px;
    margin-top: 30px !important;
}

/* CONTACT BADGE */
.contact-badge {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 180px;
    height: 180px;
}

.contact-badge img {
    width: 100%;
    animation: rotateBadge 8s linear infinite;
}

/* Badge Rotation */
@keyframes rotateBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FLOATING BUG */
.bug-float {
    width: 200px;
    margin-top: 30px;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .features-title {
        font-size: 32px;
    }
    .contact-badge {
        left: 0;
        bottom: -30px;
        width: 150px;
    }
    .bug-float {
        width: 150px;
    }
}







.why-choose-us {
    padding: 40px 20px;
    background: #f5f9f3;
    
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .badge {
    display: inline-block;
    padding: 6px 14px;
    background: #3a3a3c;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #022a3a;
    margin: 15px 0;
}

.section-title h2 span {
    color: #2ea44f;
}

.section-title p {
    max-width: 600px;
    margin: auto;
    color: #445;
    font-size: 16px;
}


/* GRID */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.choose-grid-2 {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-gap: 20px;
}




/* CARDS */
.choose-card {
    background: white;
    padding: 40px 30px;
    border-radius: 22px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #eef1f0;
}

/* Bottom green dot effect (coming from bottom) */
.choose-card::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #2ea44f;
    border-radius: 50%;
    bottom: -20px;
    right: 45px;
    opacity: 0;
    transition: 0.4s ease;
}

/* Hover effect */
.choose-card:hover {
    background: #002d41;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.choose-card:hover h3,
.choose-card:hover p {
    color: white;
}

/* Dot comes up */
.choose-card:hover::after {
    bottom: 25px;
    opacity: 1;
}

/* Icon circle */
.icon-wrap {
    width: 60px;
    height: 60px;
    background: #27a947;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrap img {
    width: 40px;
    filter: brightness(0) invert(1);
}

/* Card text */
.choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #002d41;
    margin-bottom: 10px;
}

.choose-card p {
    color: #445;
    font-size: 15px;
    line-height: 1.5;
}


/* CONTACT BOX */
.contact-box {
    background: #0f3b4a;
    border-radius: 22px;
    padding: 40px 30px;
    color: white;
}

.contact-box h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.call-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-icon {
    background: #fff;
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.call-text {
    font-size: 22px;
    font-weight: bold;
}


/* RESPONSIVE */
@media(max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .contact-box {
        text-align: center;
    }

    .call-row {
        justify-content: center;
    }
}












.faq-section {
    padding: 40px 20px;
    background: #3a3a3c;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.faq-images {
    display: grid;
  
    gap: 20px;
}

.faq-img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}



.faq-badge {
    display: inline-block;
    background: #fff;
    color: #3a3a3c;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.faq-title {
    margin: 20px 0;
    color: white;
    font-size: 42px;
    line-height: 1.3;
}

.faq-title span {
    color: #27AE60;
}

.faq-items {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 12px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    text-align: left;
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 22px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #D8E6EB;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.4s ease;
}

/* Open state styling */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 30px;
    }
}




.testimonials {
    padding: 80px 20px;
    background: #F8FCFA;
    text-align: center;
}

.testimonials-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #022B41;
}

.testimonials-header span {
    color: #27AE60;
}

.testi-badge {
    padding: 6px 18px;
    background: #E6F6E9;
    color: #1E7C2F;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.7s ease-in-out;
}

.testi-card {
    min-width: 33.33%;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
}

.testi-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testi-role {
    font-size: 14px;
    color: #6B7C85;
    margin-bottom: 10px;
}

.stars {
    color: #27AE60;
    font-size: 20px;
    margin: 10px 0;
}

.testi-text {
    color: #345064;
    font-size: 16px;
    line-height: 1.6;
}

/* Dots */
.slider-dots {
    margin-top: 25px;
}

.slider-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background: #AFC8B5;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    width: 22px;
    background: #1E7C2F;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .testi-card {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .testi-card {
        min-width: 100%;
    }
}






/* MAIN SECTION */
.pest-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Background Image */
.pest-banner-bg {
    background-image: url('../images/hero-bg-bugs.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Overlay */
.pest-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 50, 0.75);
    z-index: 2;
}

/* Inner Container */
.pest-banner-container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT IMAGE */
.pest-banner-left img {
    max-width: 520px;
    width: 100%;
    object-fit: contain;
}

/* RIGHT CONTENT */
.pest-banner-right {
    flex: 1;
    color: #fff;
}

.pest-banner-right h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.pest-banner-right h1 span {
    color: #34a853;
}

/* Features List */
.pest-banner-features {
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.pest-banner-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    margin-bottom: 12px;
}

.pest-banner-features li i {
    color: #34a853;
}

/* Button */
.pest-banner-btn {
    background: #34a853;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.pest-banner-btn:hover {
    background: #2e8b46;
    transform: translateY(-3px);
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 991px) {
    .pest-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .pest-banner-right h1 {
        font-size: 36px;
    }

    .pest-banner-features li {
        justify-content: center;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .pest-banner-right h1 {
        font-size: 30px;
    }

    .pest-banner-features li {
        font-size: 16px;
    }

    .pest-banner-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}









/* Section wrapper */
.premium-blog-slider {
    padding: 20px 0;
    text-align: center;
    background: #ffffff;
}

/* Header */
.blog-badge {
    background: #3a3a3c;
    color: #fff;
    padding: 7px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0C2A31;
}

.blog-title span {
    color: #2DAC4A;
}

/* Slider card */
.blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Image animation */
.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-info {
    padding: 20px !important;
    text-align: left;
}


.blog-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
    color: #062A34;
}


.blog-link {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3a3a3c;
    transition: 0.3s ease;
}

.blog-link:hover {
    color: #15792F;
}


.blog-info h3 a {
    color: #23A44A; 
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-info h3 a:hover {
    color: #15792F; 
}


/* Pagination dots */
.swiper-pagination-bullet {
    background: #23A44A;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 30px;
    }
    .blog-info {
    padding: 45px !important;
    text-align: left;
}

}










/* =========================================
   NEW PROFESSIONAL DESIGN (PROCESS + AREAS)
   Prefix: pn-
========================================= */

.pn-process-areas{
  padding: 40px 0;
  background: #ffffff;
}

/* Header */
.pn-head{
  margin-bottom: 28px;
}
.pn-badge{
  background: #3a3a3c;
  padding: 7px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pn-title{
  margin: 14px 0 10px;
  font-size: 42px;
  font-weight: 800;
  color: #083047;
  line-height: 1.2;
}
.pn-title span{ color: #27a947; }
.pn-sub{
  margin: 0 auto;
  max-width: 820px;
  font-size: 16px;
  color: #4d4d4d;
  line-height: 1.7;
}

/* Cards */
.pn-card{
  height: 100%;
  background: #fff;
  border: 1px solid #eef1f0;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.pn-card::before{
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width: 220px;
  height: 220px;
  background: rgba(39,169,71,0.10);
  border-radius: 50%;
}
.pn-card::after{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-120px;
  width: 260px;
  height: 260px;
  background: rgba(0,45,65,0.06);
  border-radius: 50%;
}

/* Card top */
.pn-card-top{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.pn-card-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #27a947;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  flex: 0 0 52px;
  box-shadow: 0 12px 22px rgba(39,169,71,0.25);
}
.pn-card-icon--dark{
  background:#083047;
  box-shadow: 0 12px 22px rgba(8,48,71,0.22);
}

.pn-card-title{
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color:#083047;
}
.pn-card-desc{
  margin: 0;
  font-size: 14px;
  color:#4d4d4d;
  line-height: 1.6;
}

/* Steps */
.pn-steps{
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.pn-step{
  display:flex;
  gap: 16px;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid #edf1ea;
  background: #f7f9f2;
  transition: 0.25s ease;
  margin-bottom: 12px;
}
.pn-step:hover{
  background:#ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.pn-step-left{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  padding-top: 2px;
}
.pn-step-num{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:#27a947;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 12px 22px rgba(39,169,71,0.25);
}
.pn-step-line{
  width: 3px;
  height: 38px;
  border-radius: 10px;
  background: rgba(39,169,71,0.35);
}
.pn-step--last .pn-step-line{ display:none; }

.pn-step-body h4{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color:#083047;
}
.pn-step-body p{
  margin: 0;
  font-size: 14px;
  color:#4d4d4d;
  line-height: 1.7;
}

/* Actions */
.pn-actions{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
  position: relative;
  z-index: 2;
}
.pn-call{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  color:#083047;
  text-decoration: none;
  border-bottom: 2px solid rgba(8,48,71,0.25);
  padding-bottom: 3px;
}
.pn-call:hover{
  border-bottom-color: #27a947;
}
.pn-call-ic{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:#083047;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
}

/* Areas grid */
.pn-areas-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
  position: relative;
  z-index: 2;
}
.pn-area{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background:#f7f9f2;
  border:1px solid #edf1ea;
  font-size: 14px;
  font-weight: 700;
  color:#083047;
}
.pn-area i{
  color:#27a947;
  font-size: 18px;
}
.pn-area--full{
  grid-column: 1 / -1;
}

/* Map */
.pn-map{
  margin-top: 16px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid #eef1f0;
  background:#fff;
  position: relative;
  z-index: 2;
}
.pn-map img{
  width:100%;
  height: 250px;
  object-fit: cover;
  display:block;
}
.pn-map-caption{
  padding: 12px 14px;
  font-size: 14px;
  color:#4d4d4d;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 991px){
  .pn-title{ font-size: 32px; }
  .pn-card{ padding: 22px; }
  .pn-areas-grid{ grid-template-columns: 1fr; }
  .pn-map img{ height: 220px; }
}
@media(max-width: 575px){
  .pn-title{ font-size: 28px; }
  .pn-step{ padding: 14px 12px; }
  .pn-step-num{ width: 40px; height: 40px; }
}


/* ✅ Add/keep this so iframe matches your design */
.pn-map iframe{
  width: 100%;
  height: 250px;
  display: block;
  border: 0;
}
@media(max-width: 991px){
  .pn-map iframe{ height: 220px; }
}