/* --- CSS Reset & Variables --- */
:root {
    --teal: #31BC93;
    --teal-light: #ABE3D2;
    --green: #195C59;
    --green-light: #C4DAD7;
    --orange: #FF7900;
    --orange-light: #F5CB9E;
    --brown: #DE9950;
    --brown-light: #E9D7BA;
    --dark-bg: #1c2826;
    --ligtgreen-bg:#DEE9EA;
    --darker-bg: #111a19;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9fbfb;
    --white: #ffffff;
    --border-color: #e2e8e8;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;

    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Layout & Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

section {
    padding: 6rem 0;
}

.section-label {
    display: block;
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.section-desc {
    max-width: 700px;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d17a2a;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Navigation Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 40, 38, 0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d1d5d5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- Trusted By --- */
.trusted-by {
    padding: 3rem 0;
    background-color: #eef1f1;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trusted-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- About Section --- */
.about {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 12px;
}

/* --- Services Section --- */
.services {
    position: relative;
    overflow: hidden;
    background: url('../img/servicesBackground.webp') no-repeat center center/contain;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

/* Moving Golden Border */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(90deg,
            transparent,
            #195C59,
            #C4DAD7,
            #ffffff,
            #C4DAD7,
            #195C59,
            transparent);
    background-size: 300% 100%;
    animation: borderMove 6s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.02) 100%);
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 25px rgba(255, 132, 0, 0.15);
}

@keyframes borderMove {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-teal {
    background-color: var(--teal-light);
    color: var(--teal);
}

.icon-green {
    background-color: var(--green-light);
    color: var(--green);
}

.icon-orange {
    background-color: var(--orange-light);
    color: var(--orange);
}

.icon-brown {
    background-color: var(--brown-light);
    color: var(--brown);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Why Choose Us --- */
.why-us {
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-item {
    padding: 1.5rem;
}

.why-item:hover {
    transform: translateY(-5px) !important;
}

.why-icon,
.why-icon1,
.why-icon2 {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.why-icon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: var(--green);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.why-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon::before {
    transform: scale(1);
    width: 60px;
    height: 60px;
}

.why-item:hover .why-icon svg {
    stroke: #fff;
}

.why-icon1::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: var(--brown);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.why-icon1 svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon1::before {
    transform: scale(1);
    width: 60px;
    height: 60px;
}

.why-item:hover .why-icon1 svg {
    stroke: #fff;
}

.why-icon2::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: var(--orange);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.why-icon2 svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon2::before {
    transform: scale(1);
    width: 60px;
    height: 60px;
}

.why-item:hover .why-icon2 svg {
    stroke: #fff;
}

.why-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    text-align: start;
}

.why-item p {
    color: var(--text-muted);
    text-align: start;
}

/* --- Process Section --- */
.process {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 1rem;
}

.process-step:hover {
    transform: translateY(-5px) !important;
}

.process-graphic {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.pseudo-iso {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.step-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.color-teal {
    color: var(--teal);
}

.color-orange {
    color: var(--orange);
}

.color-brown {
    color: var(--brown);
}

.color-green {
    color: var(--green);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    background: url('../img/cta.webp') center/cover;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 34, 31, 0.15);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem !important;
}

/* --- Blogs Section --- */
.blogs {
    background-color: var(--bg-light);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    padding: 20px;
    color: var(--white);
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/blogs.webp");
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    z-index: 0;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(38, 88, 80, 0.75);
    z-index: 1;
}

.blog-content,
.blog-img {
    position: relative;
    z-index: 2;
}

.blog-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-md);
}

.blog-img {
    border-radius: 0.5rem;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding-top: 20px !important;
    color: var(--white);
}

.blog-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem !important;
}

.blog-content p {
    color: #a0a6a6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.85rem;
}

.date {
    color: #a0a6a6;
}

.read-more {
    color: var(--white);
    font-weight: 600;
}

.read-more:hover {
    color: var(--teal);
}

/* --- Footer --- */
.footer {
    background-color: #8b9998;
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--darker-bg);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: var(--white);
    color: #8b9998;
}

/* --- Logos Slider --- */
.logos-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

.trusted-logo {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .why-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        justify-content: center;
    }

    .d-none-mobile {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {

    .services-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}


/* Animation */

.reveal-fade {
    opacity: 0;
    animation: fadeInHeader 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-stagger>*.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--stagger-delay, 1) * 0.5s);
}

.service-card,
.why-item,
.process-step,
.blog-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-fluid {
    max-width: 100%;
    height: auto;
  }
  .img-fluid2 {
height: 70px;
    width: auto;
  }


  /* --- Inner Pages Navigation & Headers --- */
.inner-hero {
    height: 280px;
    background: url('../img/allpagesbg.webp') no-repeat center center/cover;
    position: relative;
    margin-top: 0;
}
.inner-hero .hero-overlay {
}
.breadcrumb-band {
    background-color: var(--border-color);
    padding: 1rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}
.breadcrumb-band span {
    color: var(--green);
    font-weight: 600;
}

.default-page-content {
    padding: 5rem 0;
}

.default-page-content .entry-content > :first-child {
    margin-top: 0;
}

.default-page-content .entry-content > :last-child {
    margin-bottom: 0;
}

/* --- About Page Utilities --- */
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--bg-light); }
.bg-greenlight { background-color: var(--ligtgreen-bg); }
.text-white { color: var(--white) !important; }

.reverse-grid {
    grid-template-columns: 1fr 1fr;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.mv-card {
    background: linear-gradient(90deg, #ffffff,
    #DDE9E9
);
    border-radius: 12px;
    border: 1px solid var(--bg-light);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-sm);
}
.mv-content h3 { color: var(--dark-bg); margin-bottom: 0.5rem; font-size: 1.5rem; }
.mv-icon { width: auto; flex-shrink: 0; }

.leadership {
    background-color: var(--green);
    padding: 4rem 0;
}
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.leader-card { text-align: center; }
.leader-img { width: 100%; max-width: 280px; margin: 0 auto 0.15rem; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.stat-item h2 { font-size: 6rem; font-weight: 700; line-height: 1; margin-bottom: 1rem; }
.stat-item p { font-size: 1.25rem; color: var(--text-main); font-weight: 600; }
.color-teal { color: var(--teal); }
.color-orange { color: var(--orange); }

/* --- Services Page Utilities --- */
.horizontal-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem; 
    position: relative;
    text-align: left;
}

.horizontal-stepper::before {
    content: '';
    position: absolute;
    top: 50px; 
    left: 5%; 
    right: 5%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.step-item {
    padding: 0;
}

.step-item.glass-card {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.step-item.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.step-icon-float {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    object-fit: contain;
    z-index: 3;
    transition: transform 0.3s ease;
}

.step-item.glass-card:hover .step-icon-float {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1rem;
    background: transparent;
    padding-right: 0;
    display: block;
    line-height: 1;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .horizontal-stepper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .horizontal-stepper::before {
        display: none; 
    }
}

@media (max-width: 768px) {
    .horizontal-stepper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem;
        padding-top: 2rem; 
        gap: 1.5rem;
    }
    .step-item.glass-card {
        min-width: 85%;
        scroll-snap-align: center;
    }
}
.services-bg{
    background: url('../img/servicesbg.webp') no-repeat center center/cover;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
.service-info h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--dark-bg); }
.service-image img { border-radius: 12px; box-shadow: var(--shadow-md); width: 100%; }

/* --- Contact Page Utilities --- */
.contact-bg{
    background: url('../img/contactbg.webp') no-repeat center center/contain !important;
}
.contact-wrapper {
    background: var(--bg-light);
    padding-bottom: 2rem;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: -60px;
    position: relative;
    z-index: 5;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.contact-card .icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--teal-light); color: var(--teal); flex-shrink: 0;
}
.contact-card:nth-child(2) .icon { background: var(--brown-light); color: var(--brown); }
.contact-card:nth-child(3) .icon { background: var(--orange-light); color: var(--orange); }

.contact-form-glass {
    background: rgba(238, 244, 243, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 6rem 4rem 4rem; 
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.gbs-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
.form-group.full { grid-column: span 2; }
.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.form-control:focus { border-color: var(--teal); }
textarea.form-control { border-radius: 15px; height: 120px; resize: none; }
.d-block { display: block; }
.w-100 { width: 100%; }

.faq-section { background: var(--bg-light); padding-bottom: 6rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-item h4 { font-weight: 500; font-size: 1.05rem; }
.faq-item .plus { color: var(--orange); font-size: 1.5rem; font-weight: 700; }

.map-img { width: 100%; max-width: 1000px; margin: 3rem auto; }
.map-legend { display: flex; justify-content: center; gap: 2rem; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; color: var(--text-muted); }
.legend-dot { width: 14px; height: 14px; border-radius: 50%; }
.dot-teal { background: var(--teal); }
.dot-brown { background: var(--brown); }

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .mission-vision-grid, .stats-grid, .service-row { grid-template-columns: 1fr; gap: 2rem; }
    .service-row:nth-child(even) { direction: ltr; }
    .horizontal-stepper { flex-direction: column; gap: 2rem; }
    .horizontal-stepper::before { display: none; }
    .step-item { padding: 0; }
    .contact-cards, .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-form-glass { padding: 6rem 2rem 2rem; }
}

@media (max-width: 768px) {
    .horizontal-stepper {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }
    .horizontal-stepper::before { display: block; top: 25px; }
    .step-item { min-width: 85%; scroll-snap-align: center; }
    .stat-item h2 { font-size: 4rem; }
}
/* --- FAQ Accordion --- */
.faq-accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.faq-header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header:hover h4 {
    color: var(--teal);
}

.faq-header h4 {
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    margin: 0;
}

.faq-icon {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
    margin: 0;
}

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

.faq-accordion-item.active .faq-header h4 {
    color: var(--teal);
}


/* --- Blogs Page: Featured Blog --- */
.pt-0 {
    padding-top: 0 !important;
}

.featured-blog-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    line-height: 1.2;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.featured-read-more {
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.featured-read-more:hover {
    color: var(--teal);
}

/* --- Blogs Page: Toolbar (Filters & Search) --- */
.blog-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.search-btn:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* --- Blogs Page: Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 4rem;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.page-item.active {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.page-item:hover:not(.active) {
    background-color: var(--orange-light);
    color: var(--orange);
    border-color: var(--orange-light);
}

.page-item.arrow {
    color: var(--orange);
    border-color: var(--orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .featured-blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-tools {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-btn {
        justify-content: center;
        width: 100%;
    }

}
/* --- Blogs Page: Search Form --- */
.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid var(--orange);
    transition: var(--transition);
    max-width: 250px;
}

.search-form:focus-within {
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.15);
    background-color: var(--white);
}

.search-icon {
    color: var(--orange);
    flex-shrink: 0;
}

.search-input {
    border: none;
    background: transparent;
    color: var(--orange);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: var(--orange);
    opacity: 0.8;
}

/* Responsive adjustment for the search input */
@media (max-width: 768px) {
    .search-group {
        width: 100%;
    }
    
    .search-form {
        max-width: 100%;
    }
}
/* Blog Single Page Styles */
.blog-single-section {
    padding: 60px 0 100px 0;
}

.blog-single-wrapper {
    margin: 0 auto;
}

.blog-single-title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.blog-single-meta .date {
    color: #6b7280;
    font-size: 14px;
}

.blog-single-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.blog-single-img-container img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .blog-single-title {
        font-size: 28px;
    }
}
