/* Recruitment Modern Cards */
.recruit-about {
    background: #f5f7fa;
}

.recruit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s;
    border: 1px solid #e8edf3;
}

.recruit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* Image Section */
.recruit-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.recruit-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.recruit-card:hover img {
    transform: scale(1.04);
}

/* Badge */
.badge-role {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(22, 93, 49, 0.9);
    padding: 8px 18px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 20px;
}

/* RTL Fix */
[dir="rtl"] .badge-role {
    left: auto;
    right: 12px;
}

/* Info List */
.recruit-info {
    margin-top: 18px;
}

.recruit-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.recruit-info li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #49515f;
}

.recruit-info li i {
    color: #165d31;
    background: #e6f5ed;
    padding: 6px;
    border-radius: 50%;
    font-size: 18px;
    margin-right: 10px;
}

/* RTL Fix */
[dir="rtl"] .recruit-info li i {
    margin-right: 0;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .recruit-img img {
        height: 300px;
    }
    .badge-role {
        font-size: 14px;
        padding: 6px 14px;
    }
}


/* Ultra Modern Vision & Mission */
.vm-ultra {
    background: #f6f9fc;
}

/* Card */
.vm-ultra-card {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.vm-ultra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 38px rgba(0,0,0,0.10);
}

/* Decorative Top Background */
.vm-ultra-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #165d31 0%, #74c791 100%);
    opacity: 0.15;
    border-radius: 50%;
}

/* Icon Circle */
.vm-ultra-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #e8ecf5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px;
}

.vm-ultra-icon img {
    width: 50px;
}

/* Blue & Green variants */
.vm-ultra-icon.blue {
    background: linear-gradient(135deg, #345b9a 0%, #6f91c7 100%);
}

.vm-ultra-icon.green {
    background: linear-gradient(135deg, #0d8c3f 0%, #3cc56b 100%);
}

/* Title */
.vm-ultra-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a243a;
    margin-bottom: 12px;
}

/* Description */
.vm-ultra-desc {
    font-size: 18px;
    color: #4c5568;
    line-height: 1.7;
    font-style: italic;
}

/* RTL Fix */
[dir="rtl"] .vm-ultra-card::before {
    left: -60px;
    right: auto;
}

@media (max-width: 768px) {
    .vm-ultra-title {
        font-size: 24px;
    }

    .vm-ultra-card {
        padding: 24px;
    }

    .vm-ultra-icon {
        width: 70px;
        height: 70px;
    }

    .vm-ultra-icon img {
        width: 42px;
    }
}

/* Elegant Values Section */
.values-elegant {
    background: #f8f9fb;
}

/* Title */
.val-title-area h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1c1f27;
}

/* Value Box */
.val-box {
    background: #fff;
    padding: 35px 20px;
    border-radius: 20px;
    border: 1px solid #eceff3;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    text-align: center;
    transition: .35s ease;
    height: 100%;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.val-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Soft glow line on hover */
.val-box::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 4px;
    background: #165d31;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    border-radius: 5px;
    transition: .35s ease;
}

.val-box:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Icon */
.val-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    transition: .3s ease;
}

.val-box:hover .val-icon img {
    transform: scale(1.08);
}

/* Text */
.val-text {
    font-size: 17px;
    font-weight: 600;
    color: #424955;
    line-height: 1.6;
}

/* RTL Fix */
[dir="rtl"] .val-text {
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .val-box {
        padding: 30px 15px;
    }

    .val-icon img {
        width: 65px;
        height: 65px;
    }

    .val-text {
        font-size: 16px;
    }
}


   /* Section Background */
.workflow-section {
    background: #f7fafc;
}

/* Title */
.workflow-title h2 {
    text-align: center;
    font-size: 38px; /* Increased */
    font-weight: 800;
    color: #1a1f36;
    margin-bottom: 55px;
}

/* Grid */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); /* Slightly wider */
    gap: 35px;
}

/* Cards */
.workflow-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px; /* More spacing */
    text-align: center;
    border: 1px solid #e4e7ee;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
}

/* Hover effect */
.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Step Number Circle */
.workflow-step-number {
    width: 65px;  /* Bigger */
    height: 65px; /* Bigger */
    background: #165d31;
    color: #fff;
    border-radius: 50%;
    font-size: 22px; /* Bigger */
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(22,93,49,0.4);
}

/* Icon */
.workflow-icon img {
    width: 80px; /* Bigger */
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

/* Text */
.workflow-card h3 {
    font-size: 18px;   /* Increased from 15px */
    font-weight: 700;
    color: #2b3448;
    line-height: 1.5;
}

/* Wide Cards */
.workflow-card.wide {
    grid-column: span 2;
}

/* Responsive */
@media (max-width: 768px) {

    .workflow-title h2 {
        font-size: 32px;
    }

    .workflow-card h3 {
        font-size: 17px; /* Bigger for mobile */
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .workflow-card {
        padding: 25px;
    }

    .workflow-step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .workflow-icon img {
        width: 70px;
        height: 70px;
    }

    .workflow-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-title h2 {
        font-size: 28px;
    }

    .workflow-card h3 {
        font-size: 18px; /* Perfect for Arabic text */
    }

    .workflow-card.wide {
        grid-column: span 1;
    }
}

	/* Modern Source Section */
.source-section {
    background: #f8fafc;
}

/* Source Card */
.source-box {
    display: block;
    position: relative;
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.35s ease-in-out;
}

/* Zoom Hover */
.source-box:hover {
    transform: translateY(-8px) scale(1.03);
}

/* Dark Gradient Overlay */
.source-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.75));
    z-index: 1;
}

/* Text */
.source-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
}

.source-content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

/* RTL Fix */
[dir="rtl"] .source-content {
    right: 25px;
    left: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .source-box {
        height: 300px;
    }
    .source-content h2 {
        font-size: 26px;
    }
}


	/* ===========================
   GLOBAL SECTIONS
=========================== */
.block-section {
    padding: 90px 0;
    background: #f9fafc;
}

.section-heading {
    font-size: 32px;
    font-weight: 900;
    color: #165d31;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.block-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.block-img {
    width: 100%;
    border-radius: 16px;
}

/* ===========================
   HERO HEADER
=========================== */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(140deg,#eef4f8 0%, #ffffff 90%);
}

.about-hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-badge {
    background: #165d3120;
    color: #165d31;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    color: #165d31;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
}

.breadcrumb-premium {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 0;
}

.breadcrumb-premium li {
    list-style: none;
    font-weight: 700;
}

.breadcrumb-premium li a {
    color: #165d31;
}

.hero-image img {
    width: 90%;
}


/* ===========================
   WHY CHOOSE US
=========================== */
.why-premium {
    padding: 90px 0;
    background: #f1f6f4;
}

.why-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

/* ===========================
   TEXT LIST
=========================== */
.text-list {
    padding-left: 20px;
}

.text-list li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #444;
}


/* ===========================
   PREMIUM CONTACT CARD
=========================== */
.contact-section-premium {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-wrapper-premium {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, #165d31 0%, #1a7e42 100%);
    padding: 35px;
    text-align: center;
    color: white;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 900;
}

.contact-body {
    padding: 35px;
}


/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .about-hero-wrapper,
    .block-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 70%;
        margin-top: 25px;
    }
}

/* Single Certificate Section */
.single-cert-section {
    background: #f7fafc;
    padding: 80px 0;
}

.single-cert-title {
    text-align: center;
    margin-bottom: 35px;
}

.single-cert-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: #165d31;
}

.single-cert-title p {
    font-size: 17px;
    color: #444;
    margin-top: 10px;
}

/* Card Wrapper */
.single-cert-wrapper {
    display: flex;
    justify-content: center;
}

.single-cert-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.single-cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.15);
}

.single-cert-card img {
    width: 100%;
    border-radius: 12px;
}

    /* Elite Section */
.elite-team {
    background: #f4f7fb;
}

.elite-title {
    font-size: 42px;
    font-weight: 900;
    color: #165d31;
}

.elite-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

/* Card */
.elite-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Hover Glow */
.elite-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(22, 93, 49, 0.25);
}

/* Profile Image */
.elite-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #eaf2ee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.elite-card:hover .elite-photo {
    border-color: #165d31;
}

/* Image */
.elite-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section */
.elite-info {
    margin-top: 20px;
}

.elite-role {
    font-size: 14px;
    font-weight: 700;
    color: #165d31;
    background: #165d3120;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.elite-name {
    font-size: 22px;
    font-weight: 800;
    color: #1d1f30;
}

/* RTL Fix */
[dir="rtl"] .elite-name,
[dir="rtl"] .elite-title {
    direction: rtl;
}

/* Mobile */
@media (max-width: 768px) {
    .elite-photo {
        width: 130px;
        height: 130px;
    }
    .elite-name {
        font-size: 20px;
    }
}

/* about us license code  */

 /* Main Section */
.license-contact-pro {
    padding: 90px 0;
    background: #f4f6fa;
}

/* Wrapper with modern grid */
.lc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* Left License Box */
.lc-license-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    border: 1px solid #eef0f3;
}

.lc-title {
    font-size: 30px;
    font-weight: 900;
    color: #165d31;
    margin-bottom: 5px;
}

.lc-sub {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* License Card */
.lc-card {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #e7eaf0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.lc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.lc-card img {
    width: 100%;
    border-radius: 12px;
}

/* Registration Number */
.lc-number {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 700;
    color: #1f2b3e;
}

/* Right Contact Box */
.lc-contact-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eef0f3;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.contact-title {
    font-size: 30px;
    font-weight: 900;
    color: #165d31;
}

.contact-sub {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e7eaf0;
}

/* Responsive */
@media (max-width: 768px) {
    .lc-wrapper {
        grid-template-columns: 1fr;
    }
}

/* INTERNAL SOURCE CSS CODE  */
/* ----------------------------------------------------------
   GLOBAL DESIGN IMPROVEMENTS
----------------------------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
}

/* ----------------------------------------------------------
   Page Header
----------------------------------------------------------- */
.page-header-area {
    background: linear-gradient(135deg, #e6f7ef, #f4fbf6);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.page-header-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e4a35;
}

.page-header-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-header-content ul li {
    display: inline-block;
    margin-right: 8px;
    color: #555;
    font-weight: 500;
    font-size: 15px;
}

.page-header-content ul li a {
    color: #1e4a35;
    font-weight: 600;
}

/* ----------------------------------------------------------
   Cards (Professional Design)
----------------------------------------------------------- */
.custom-card {
    padding: 30px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eef1f4;
    text-align: center;
    transition: all .3s ease;
    height: 100%;
    position: relative;
}

.custom-card:hover {
    box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.custom-card img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin-bottom: 18px;
}

.custom-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e4a35;
}

.custom-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* ----------------------------------------------------------
   Section Title
----------------------------------------------------------- */
.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e4a35;
}

.section-title {
    margin-bottom: 50px;
}

/* ----------------------------------------------------------
   Responsive Fixes
----------------------------------------------------------- */
@media (max-width: 767px) {
    .custom-card {
        margin-bottom: 25px;
    }

    .page-header-content h1 {
        font-size: 28px;
    }
}

/* EXTERNAL CSS CODE */
.page-header-area {
    position: relative;
}

.page-header-shape img {
    position: absolute;
    width: 60px;
    opacity: 0.2;
}

.service-card {
    border-radius: 12px;
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.service-icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.service-title {
    font-weight: 600;
}

.bg-f4fbf6 {
    background-color: #f4fbf6 !important;
}
/* RECRUITMENT CSS CODE */
.heading-main {
    font-size: 36px;
    line-height: 1.3;
    color: #222;
}

.sub-heading {
    font-size: 18px;
    color: #555;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.service-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.service-list {
    padding-left: 20px;
    line-height: 1.8;
    font-size: 17px;
}
.service-list li {
    margin-bottom: 6px;
}

.page-image {
    max-width: 90%;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.sub-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.service-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.step-box {
    border-radius: 10px;
}

.process-wrapper {
    background-color: #f1f6f9 !important;
}

/* BLOGS */

/* Page Title */
.blog-page-title {
    font-size: 36px;
    font-weight: 800;
    color: #0c213a;
}

/* Card Wrapper */
.premium-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 26px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.premium-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Image */
.premium-blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .35s ease;
}

.premium-blog-card:hover .premium-blog-img img {
    transform: scale(1.06);
}

/* Content */
.premium-blog-content {
    padding: 20px 22px;
}

/* Title */
.premium-blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #12263f;
    min-height: 55px;
    margin-bottom: 8px;
}

/* Description */
.premium-blog-desc {
    font-size: 15px;
    color: #555;
    min-height: 50px;
    margin-bottom: 14px;
}

/* Read More Button */
.premium-read-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #0077ff;
    transition: .3s ease;
}

.premium-read-btn:hover {
    color: #0057c7;
}

.arrow-icon {
    margin-left: 5px;
    transition: transform .3s ease;
}

.premium-read-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Fix */
@media(max-width:768px){
    .blog-page-title { font-size: 28px; }
    .premium-blog-title { font-size: 18px; }
    .premium-blog-img img { height: 180px; }
}

   /* Swiper container fix */
.blogSwiper {
    width: 100%;
    padding: 10px 5px 40px;
}

/* Blog card container */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Fix image height */
.blog-card-image img {
    width: 100%;
    height: 200px; /* FIXED: no collapse */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.blog-card-content {
    padding: 18px;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 44px; /* 2-line height fix */
}

.blog-card-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    max-height: 60px;
    overflow: hidden;
    margin-bottom: 12px;
}

.read-btn {
    font-weight: 600;
    color: #00a859;
    font-size: 14px;
}

/* Hover animation */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Swiper Fixes */
.swiper-slide {
    height: auto !important;   /* FIX broken row height */
}

.swiper-button-next,
.swiper-button-prev {
    color: #00a859;
}

.swiper-pagination-bullet-active {
    background: #00a859 !important;
}
/* Heading */
.client-heading {
    font-size: 34px;
    font-weight: 800;
    color: #1c2b48;
}

.client-subtitle {
    font-size: 18px;
    color: #5f6b7a;
}

/* Logo Card */
.client-logo-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #e6e9ee;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: all .3s ease;
}

.client-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

/* LOGO IMAGE — NO CROPPING */
.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* THE KEY FIX */
}

/* Group photo (multiple clients inside one image) */
.client-logo-card img[src*="client4"] {
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive */
@media(max-width: 768px){
    .client-logo-card {
        height: 140px;
        padding: 15px;
    }
}

/* Grayscale effect default */
.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all .35s ease-in-out;
}

/* Hover = Color + Brighter */
.client-logo-card:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.client-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}


    /* MAIN FOOTER */
.footer-section-green {
    background: #165d31;
    padding: 80px 0 20px;
    color: #e8f5e9;
}

/* LOGO */
.footer-logo-green img {
    width: 170px;
    margin-bottom: 18px;
}

/* ABOUT TEXT */
.footer-about-green {
    font-size: 15px;
    color: #d9f0df;
    margin-bottom: 20px;
}

/* SOCIAL ICONS */
.footer-social-green a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    color: #e0efe4;
    transition: .3s ease;
}

.footer-social-green a:hover {
    background: #fff;
    color: #165d31;
    transform: translateY(-3px);
}

/* TITLES */
.footer-title-green {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* CONTACT LIST */
.footer-list-green {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-green li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-list-green li i {
    font-size: 22px;
    color: #ffffff;
}

.footer-list-green a {
    color: #f1f8f3;
    font-size: 15px;
    transition: .3s;
}

.footer-list-green a:hover {
    color: #c4ffd7;
}

/* USEFUL LINKS */
.footer-links-green {
    list-style: none;
    padding: 0;
}

.footer-links-green li a {
    display: block;
    padding: 6px 0;
    color: #f1f8f3;
    font-size: 15px;
    transition: .3s;
}

.footer-links-green li a:hover {
    color: #c4ffd7;
    padding-left: 6px;
}

/* COPYRIGHT */
.footer-bottom-green {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.footer-bottom-green p {
    color: #d1ead7;
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-section-green {
        padding: 60px 0 20px;
    }
}


.contact-section {
    background: #f9fafb;
}

/* Section Title */
.contact-title {
    font-size: 34px;
    font-weight: 800;
    color: #0c213a;
}

.contact-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-top: 8px;
}

/* Location Card */
.location-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: .3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Location Title */
.location-title {
    font-size: 22px;
    font-weight: 700;
    color: #0c213a;
    margin-bottom: 15px;
}

/* Map Box */
.map-box iframe {
    border-radius: 12px;
}

/* Contact Info List */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: #374151;
    margin-bottom: 10px;
}

.contact-info-list li i {
    font-size: 20px;
    color: #1e8b48;
}

/* Links */
.contact-info-list a {
    color: #1e8b48;
    transition: .3s ease;
}

.contact-info-list a:hover {
    color: #145f30;
    text-decoration: underline;
}

/* Contact form box */
.contact-form-box {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    /* =============================
   FIX MOBILE DROPDOWN SUBMENU
   (MeanMenu Submenu Visibility)
============================= */

/* Level-1 Links (just styling) */
.mean-container .mean-nav ul li a {
    color: #1b2336 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 16px !important;
}

/* Level-2 (dropdown inside dropdown) */
.mean-container .mean-nav ul li ul li a {
    color: #1b2336 !important;       /* make text visible */
    background: #f8f9fa !important;  /* light grey bg */
    padding-left: 30px !important;   /* indentation */
    display: block !important;
    opacity: 1 !important;
}

/* FIX: MeanMenu often sets visibility hidden */
.mean-container .mean-nav ul li ul {
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

/* Arrow icon position fix ( + / - ) */
.mean-container .mean-nav ul li a.mean-expand {
    color: #1b2336 !important;
    background: transparent !important;
}