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

:root {
    --color-green-800: #166534;
    --color-green-900: #15803d;
    --color-green-950: #052e16;
    --color-orange-400: #fb923c;
    --color-orange-500: #f97316;
    --color-orange-50: #fff7ed;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-gray-950: #030712;
    --color-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--color-orange-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

/* =========================
   GLOBAL SECTION TITLE FIX
========================= */

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    line-height: 1.2;
    color: #0f172a !important;
}

/* White section titles only on dark backgrounds */
.hero .section-title,
.testimonials .section-title,
.newsletter .section-title,
.footer .section-title {
    color: #ffffff !important;
}

/* Orange top labels */
.section-label {
    display: inline-block;
    color: #f97316 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Paragraph under headings */
.section-desc {
    color: #64748b !important;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

/* Beautiful underline */
.section-title::after {
    content: '';
    width: 90px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #166534);
    display: block;
    margin: 16px auto 0;
}

/* =========================
   FORCE VISIBLE TITLES
========================= */

.how-we-work .section-title,
.partners-carousel .section-title,
.services .section-title,
.about .section-title,
.directors .section-title,
.testimonials .section-title,
.newsletter .section-title,
.projects .section-title {
    opacity: 1 !important;
    visibility: visible !important;
}

/* =========================
   SECTION BACKGROUND FIX
========================= */

.how-we-work {
    background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%);
}

.partners-carousel {
    background: #ffffff;
}

.directors {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.testimonials {
    background: #0f172a;
}

.newsletter {
    background: linear-gradient(135deg, #166534, #15803d);
}

/* =========================
   TESTIMONIALS TITLE WHITE
========================= */

.testimonials .section-title,
.testimonials .section-desc {
    color: #ffffff !important;
}

.newsletter .section-title,
.newsletter .section-desc {
    color: #ffffff !important;
}

.section-desc {
    color: var(--color-gray-700);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: all 0.4s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 3.5rem;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 3rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    color: var(--color-white);
}

.header.scrolled .nav-link {
    color: var(--color-gray-700);
}

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

.phone-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-orange-500);
    color: var(--color-white);
    transition: all 0.2s;
}

.header.scrolled .phone-btn {
    background: var(--color-green-800);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .phone-btn {
        display: flex;
    }
}

.phone-icon {
    font-size: 0.75rem;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-white);
    transition: color 0.2s;
}

.header.scrolled .menu-toggle {
    color: var(--color-gray-700);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.nav-mobile {
    display: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-100);
    padding: 1rem 0;
}

.nav-mobile.active {
    display: flex;
    flex-direction: column;
}

.nav-mobile .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray-700);
}

.nav-mobile .nav-link:hover {
    color: var(--color-orange-500);
    background: var(--color-orange-50);
}

/* ================= PREMIUM HERO SECTION ================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 80px;
    overflow: hidden;
    isolation: isolate;
    background: #020617;
}

/* Cinematic project background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image: url('Project Photo/Invicta1.jpg');
    background-size: cover;
    background-position: center;
    animation: heroLuxurySlider 32s infinite ease-in-out;
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.08);
}

/* Dark green luxury overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            115deg,
            rgba(2, 6, 23, 0.96) 0%,
            rgba(5, 46, 22, 0.86) 42%,
            rgba(0, 0, 0, 0.42) 100%
        );
}

/* Gold glow + premium grid */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 28%, rgba(251, 191, 36, 0.18), transparent 30%),
        radial-gradient(circle at 18% 80%, rgba(249, 115, 22, 0.12), transparent 30%);
}

/* Bottom fade */
.hero .hero-content::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: -1;
    background: linear-gradient(to top, rgba(2,6,23,0.88), transparent);
    pointer-events: none;
}

/* Background image animation */
@keyframes heroLuxurySlider {
    0%, 16% {
        background-image: url('Project Photo/Invicta1.jpg');
        transform: scale(1.05);
    }

    18%, 34% {
        background-image: url('Project Photo/IRIS SS.jpeg');
        transform: scale(1.12);
    }

    36%, 52% {
        background-image: url('Project Photo/iqra.jpg');
        transform: scale(1.06);
    }

    54%, 70% {
        background-image: url('Project Photo/INARA.jpeg');
        transform: scale(1.13);
    }

    72%, 88% {
        background-image: url('Project Photo/IRA.jpeg');
        transform: scale(1.07);
    }

    90%, 100% {
        background-image: url('Project Photo/CHAPNA_DRAFT.jpg.jpeg');
        transform: scale(1.12);
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1080px;
    text-align: center;
    color: #fff;
    animation: heroContentFade 1.1s ease forwards;
}

@keyframes heroContentFade {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(251,191,36,0.38);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.28);
}

.hero-badge::before {
    content: '◆';
    font-size: 10px;
    color: #f97316;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 6.4rem);
    line-height: 1.02;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 16px 50px rgba(0,0,0,0.55);
}

.hero-title .text-orange {
    color: #fbbf24;
    background: linear-gradient(90deg, #f97316, #fbbf24, #fff7ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 24px;
    color: #f97316;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    display: inline-block;
    width: 44px;
    height: 1px;
    background: rgba(251,191,36,0.8);
    vertical-align: middle;
    margin: 0 14px;
}

.hero-desc {
    max-width: 760px;
    margin: 0 auto 44px;
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    line-height: 1.85;
}

/* Buttons */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 62px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: 0.35s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: #fff;
    box-shadow: 0 18px 45px rgba(249,115,22,0.38);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(249,115,22,0.48);
}

.btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.18);
}

/* Stats glass box */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 720px;
    margin: 0 auto;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.stat {
    position: relative;
    text-align: center;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -11px;
    top: 15%;
    width: 1px;
    height: 70%;
    background: rgba(255,255,255,0.18);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.55rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 140px 18px 70px;
    }

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

    .hero-tagline {
        letter-spacing: 3px;
        font-size: 0.78rem;
    }

    .hero-tagline::before,
    .hero-tagline::after {
        width: 24px;
        margin: 0 8px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .stat:not(:last-child)::after {
        display: none;
    }
}

/* Projects Section */
.project-link{
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.project-link:hover{
    color: #f97316;
}
.projects {
    padding: 6rem 0;
    background: var(--color-gray-50);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.project-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.project-image {
    width: 100%;
    height: 13rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 46, 22, 0.6), transparent);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-image {
    transition: transform 0.5s;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.project-status.completed {
    background: rgba(243, 244, 246, 0.9);
    color: var(--color-gray-700);
}

.project-status.ongoing {
    background: rgba(220, 252, 231, 0.9);
    color: var(--color-green-800);
}

.project-status.upcoming {
    background: rgba(254, 243, 224, 0.9);
    color: var(--color-orange-700);
}

.project-info {
    padding: 1.5rem;
}

.project-meta {
    color: var(--color-gray-400);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.project-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-tagline {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
/* Section Heading Fix */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a; /* changed from white */
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.2;
}

.projects .section-title,
.services .section-title,
.about .section-title,
.directors .section-title {
    color: #0f172a !important;
}

.testimonials {
    padding: 90px 0;
    background: linear-gradient(135deg, #062b1f, #0f5132);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: #ffffff !important;
}

.testimonial-wrapper {
    position: relative;
    margin-top: 45px;
}

.testimonials-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 28px;
    min-height: 280px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.testimonial-dp {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0f5132;
    padding: 3px;
    background: #fff;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: #12372a;
    margin: 0;
}

.testimonial-role {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.testimonial-stars {
    color: #f5b301;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0f5132;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.testimonial-btn:hover {
    background: #d4af37;
    color: #fff;
}

.testimonial-btn.prev {
    left: -22px;
}

.testimonial-btn.next {
    right: -22px;
}

@media (max-width: 992px) {
    .testimonials-carousel {
        grid-auto-columns: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-carousel {
        grid-auto-columns: 100%;
    }

    .testimonial-btn.prev {
        left: 5px;
    }

    .testimonial-btn.next {
        right: 5px;
    }

    .testimonial-card {
        padding: 24px;
    }
}
.testimonials .section-title,
.newsletter .section-title,
.hero .section-title {
    color: #ffffff !important;
}
/* Optional modern effect */
.projects .section-title::after {
    content: '';
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #166534);
    display: block;
    margin: 14px auto 0;
    border-radius: 999px;
}

/* How We Work */
.how-we-work {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.how-we-work .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.step-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 28px;
    min-height: 280px;
    border: 1px solid rgba(22, 101, 52, 0.12);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.step-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(22, 101, 52, 0.08);
}

.step-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f97316, #166534);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 28px;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.25);
}

.step-title {
    font-size: 22px;
    margin-bottom: 14px;
    color: #0f172a;
}

.step-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* Carousel */
.partners-carousel {
    padding: 5rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    width: 10rem;
    height: 8rem;
    padding: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.carousel-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--color-orange-500);
    transform: translateY(-4px);
    color: var(--color-green-800);
}

.carousel-item.bank-item {
    width: 12rem;
    height: 10rem;
    font-size: 1rem;
    font-weight: 700;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 4rem;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.partners-carousel[style*="background: linear-gradient"]::before {
    background: linear-gradient(to right, rgba(240, 253, 244, 1), rgba(240, 253, 244, 0));
}

.partners-carousel[style*="background: linear-gradient"]::after {
    background: linear-gradient(to left, rgba(255, 247, 237, 1), rgba(255, 247, 237, 0));
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--color-gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 11rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 46, 22, 0.7), transparent);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image {
    transition: transform 0.5s;
}

.service-title {
    font-size: 1rem;
    padding-top: 1.5rem;
}

.service-card .service-title {
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-desc {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

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

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-text .section-label {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-desc {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-700);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.about-list li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--color-orange-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
    }
}

.vision-card {
    background: rgba(22, 101, 52, 0.05);
    border: 1px solid rgba(22, 101, 52, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.mission-card {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.vm-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-text {
    color: var(--color-gray-600);
    line-height: 1.8;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    color: var(--color-gray-600);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.vm-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-orange-500);
}

/* =========================
   DIRECTORS SECTION FIX
========================= */

.directors {
    padding: 110px 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    overflow: hidden !important;
}

.directors .section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.directors-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 40px !important;
    margin-top: 60px !important;
}

.director-card {
    background: #ffffff !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.director-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.16) !important;
}

.director-image-wrap {
    position: relative !important;
    width: 100% !important;
    height: 420px !important;
    overflow: hidden !important;
    background: #e5e7eb !important;
}

.director-image {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    transition: transform 0.6s ease !important;
    display: block !important;
}

.director-card:hover .director-image {
    transform: scale(1.05) !important;
}

.director-badge {
    position: absolute !important;
    left: 24px !important;
    bottom: 24px !important;
    background: linear-gradient(135deg, #166534, #15803d) !important;
    color: #ffffff !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 25px rgba(22, 101, 52, 0.25) !important;
    z-index: 3 !important;
}

.director-info {
    padding: 34px !important;
    background: #ffffff !important;
}

.director-name {
    font-size: 38px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    color: #0f172a !important;
}

.director-role {
    color: #f97316 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    margin-bottom: 22px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.director-bio {
    color: #64748b !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
    margin-bottom: 28px !important;
}

.director-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
}

.director-socials a {
    text-decoration: none !important;
    padding: 12px 22px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.director-socials a:hover {
    background: linear-gradient(135deg, #f97316, #166534) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 992px) {
    .directors-grid {
        grid-template-columns: 1fr !important;
    }

    .director-image-wrap {
        height: 360px !important;
    }
}

@media (max-width: 576px) {
    .directors {
        padding: 80px 0 !important;
    }

    .director-name {
        font-size: 30px !important;
    }

    .director-info {
        padding: 26px !important;
    }

    .director-image-wrap {
        height: 300px !important;
    }

    .director-socials a {
        width: 100% !important;
        text-align: center !important;
    }
}

/* ===== TESTIMONIAL FINAL FIX ===== */

.testimonials{
    padding:100px 0;
    background:linear-gradient(135deg,#052e16,#166534);
}

.testimonials .section-title,
.testimonials .section-desc{
    color:#fff !important;
}

.testimonials-carousel{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:#ffffff !important;
    border-radius:24px;
    padding:30px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:.4s ease;
    border:none !important;
    opacity:1 !important;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card::before{
    content:'';
    position:absolute;
    top:-50px;
    right:-50px;
    width:150px;
    height:150px;
    background:rgba(249,115,22,.08);
    border-radius:50%;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.testimonial-dp{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #f97316;
}

.testimonial-author{
    color:#111827 !important;
    font-size:20px;
    font-weight:700;
}

.testimonial-role{
    color:#64748b !important;
    font-size:14px;
}

.testimonial-stars{
    color:#fbbf24;
    margin-bottom:15px;
    font-size:18px;
}

.testimonial-text{
    color:#374151 !important;
    line-height:1.8;
    font-size:15px;
    opacity:1 !important;
}

@media(max-width:768px){
.testimonials-carousel{
grid-template-columns:1fr;
}
}
/* Section Heading Fix */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-label {
    display: inline-block;
    color: #c89b63;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--color-green-900);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent);
    border-radius: 50%;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent);
    border-radius: 50%;
}

.container {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.newsletter-desc {
    color: rgba(229, 231, 235, 0.9);
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(229, 231, 235, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-orange-400);
    background: rgba(255, 255, 255, 0.15);
}

/* OLD Footer (duplicate - removed) */



/* Responsive */
@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .projects-grid,
    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .carousel-track {
        animation: scroll 60s linear infinite;
    }
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

  .animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
  }

  .animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out;
  }

  .animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
  }

  .animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
  }

  .animate-scale-in {
    animation: scaleIn 0.5s ease-out;
  }

  .animate-slide-in-up {
    animation: slideInUp 0.7s ease-out;
  }

  .animate-pulse-glow {
    animation: pulse-glow 2s infinite;
  }

  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
.logo-item {
    background: #ffffff;
    min-width: 180px;
    height: 110px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.logo-item img {
    max-width: 130px;
    max-height: 65px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}
.project-card {
    position: relative;
    overflow: hidden;
}

.project-status {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}
/* Footer full width fix */
.footer {
    width: 100% !important;
    margin: 0 !important;
    padding: 70px 0 30px !important;
    background: #030712 !important;
}

.footer .container {
    max-width: 1280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr !important;
    gap: 50px !important;
    align-items: start !important;
}

.footer-logo {
    max-width: 190px !important;
    height: auto !important;
}

.footer-bottom {
    margin-top: 45px !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #9ca3af !important;
}
.footer-bottom a{
    color: #22c55e !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.footer-bottom a:hover{
    color: #ffffff !important;
    text-decoration: underline !important;
}
.footer-col {
    padding: 10px 0 !important;
}

.footer-title {
    font-size: 0.95rem !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.footer-desc {
    font-size: 0.95rem !important;
    color: #d1d5db !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 10px !important;
}

.footer-links a {
    color: #d1d5db !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
}

.footer-links a:hover {
    color: #f97316 !important;
}

.footer-contact {
    font-size: 0.95rem !important;
}

.footer-contact p {
    margin: 10px 0 !important;
    color: #d1d5db !important;
    line-height: 1.6 !important;
}

.footer-contact strong {
    color: #ffffff !important;
}

.footer-contact a {
    color: #d1d5db !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-contact a:hover {
    color: #f97316 !important;
}

.footer-socials {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.footer-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
}

.footer-socials a:hover {
    background: #f97316 !important;
    transform: translateY(-3px) !important;
}

body {
    overflow-x: hidden;
}

/* Bug fix: make inline bank logos fit */
.logo-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* Animation + Responsive Fix */
.reveal,
.animated-step,
.project-card,
.service-card,
.director-card,
.stat {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active,
.animated-step.active,
.project-card.active,
.service-card.active,
.director-card.active,
.stat.active {
  opacity: 1;
  transform: translateY(0);
}

.animated-step:hover,
.project-card:hover,
.service-card:hover,
.director-card:hover {
  transform: translateY(-8px);
}

/* Mobile friendly */
@media (max-width: 768px) {
  .header-container {
    gap: 1rem;
  }

  .logo-img {
    height: 3rem;
  }

  .nav-mobile .nav-link {
    font-size: 1rem;
  }

  .footer-logo {
    max-width: 160px;
  }

  .footer-title,
  .footer-desc,
  .footer-links a,
  .footer-contact {
    font-size: 1rem;
  }

  .footer-socials a {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
  }

  .hero {
    min-height: 90vh;
    padding-top: 6rem;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

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

  .projects-grid,
  .services-grid,
  .steps-grid,
  .directors-grid {
    grid-template-columns: 1fr !important;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
/* FIXED Animation */
.reveal,
.animated-step,
.project-card,
.service-card,
.director-card,
.stat {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

.js-enabled .reveal,
.js-enabled .animated-step,
.js-enabled .project-card,
.js-enabled .service-card,
.js-enabled .director-card,
.js-enabled .stat {
  opacity: 0;
  transform: translateY(35px);
}

.js-enabled .reveal.active,
.js-enabled .animated-step.active,
.js-enabled .project-card.active,
.js-enabled .service-card.active,
.js-enabled .director-card.active,
.js-enabled .stat.active {
  opacity: 1;
  transform: translateY(0);
}
/* FINAL BUG FIX */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

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

.carousel-track {
    width: max-content;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
}

.logo-item img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.project-image,
.service-image,
.director-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .carousel-item {
        width: 150px;
        height: 90px;
    }

    .logo-item {
        min-width: 150px;
        height: 90px;
        padding: 14px;
    }

    .logo-item img {
        max-width: 110px;
        max-height: 50px;
    }
}

/* =========================
   FINAL MODERN ANIMATION
========================= */

.project-card,
.service-card,
.director-card,
.testimonial-card,
.step-card,
.vision-card,
.mission-card,
.stat,
.section-header,
.about-image,
.about-text,
.carousel-item {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

/* Animation for elements when js-enabled and need animation */
.js-enabled .project-card:not(.active),
.js-enabled .service-card:not(.active),
.js-enabled .director-card:not(.active),
.js-enabled .testimonial-card:not(.active),
.js-enabled .step-card:not(.active),
.js-enabled .vision-card:not(.active),
.js-enabled .mission-card:not(.active),
.js-enabled .stat:not(.active),
.js-enabled .section-header:not(.active),
.js-enabled .carousel-item:not(.active) {
    opacity: 0;
    transform: translateY(60px);
}

.js-enabled .project-card.active,
.js-enabled .service-card.active,
.js-enabled .director-card.active,
.js-enabled .testimonial-card.active,
.js-enabled .step-card.active,
.js-enabled .vision-card.active,
.js-enabled .mission-card.active,
.js-enabled .stat.active,
.js-enabled .section-header.active,
.js-enabled .carousel-item.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Different animations for variety */

.js-enabled .project-card:nth-child(odd):not(.active),
.js-enabled .service-card:nth-child(odd):not(.active) {
    transform: translateX(-70px);
}

.js-enabled .project-card:nth-child(even):not(.active),
.js-enabled .service-card:nth-child(even):not(.active) {
    transform: translateX(70px);
}

.js-enabled .director-card:not(.active) {
    transform: scale(0.92);
}

.js-enabled .director-card.active {
    transform: scale(1) !important;
}

.js-enabled .testimonial-card:not(.active) {
    transform: translateY(80px);
}

.js-enabled .stat:not(.active) {
    transform: scale(0.8);
}

.js-enabled .stat.active {
    transform: scale(1) !important;
}

/* Hover animations */

.project-card:hover,
.service-card:hover,
.director-card:hover,
.testimonial-card:hover,
.step-card:hover {
    transform: translateY(-12px) !important;
}

/* Smooth Image Zoom */

.project-image,
.service-image,
.director-image img,
.about-image img {
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.project-card:hover .project-image,
.service-card:hover .service-image,
.director-card:hover .director-image img,
.about-image:hover img {
    transform: scale(1.08);
}

/* Mobile */

@media (max-width: 768px) {

    .js-enabled .project-card,
    .js-enabled .service-card,
    .js-enabled .director-card,
    .js-enabled .testimonial-card,
    .js-enabled .step-card {
        transform: translateY(50px);
    }

    .project-card:hover,
    .service-card:hover,
    .director-card:hover,
    .testimonial-card:hover,
    .step-card:hover {
        transform: translateY(-6px) !important;
    }
}

/* =========================
   TESTIMONIAL CAROUSEL FIX
========================= */
.project-card {
    position: relative;
}

.testimonials {
    padding: 90px 0;
    background: linear-gradient(135deg, #062b1f, #0f5132) !important;
    position: relative;
    overflow: hidden;
}

.testimonials .section-title,
.testimonials .section-desc {
    color: #ffffff !important;
}

.testimonial-wrapper {
    position: relative;
    margin-top: 45px;
    padding: 0 34px;
}

.testimonials-carousel {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 2px 25px;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 28px;
    min-height: 280px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.7s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.testimonial-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0f5132;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.testimonial-btn:hover {
    background: #d4af37;
    color: #ffffff;
}

.testimonial-btn.prev {
    left: 0;
}

.testimonial-btn.next {
    right: 0;
}

@media (max-width: 992px) {
    .testimonials-carousel {
        grid-auto-columns: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .testimonial-wrapper {
        padding: 0 12px;
    }

    .testimonials-carousel {
        grid-auto-columns: 100%;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .testimonial-btn.prev {
        left: 2px;
    }

    .testimonial-btn.next {
        right: 2px;
    }
}
/* =========================
   IPHONE FINAL VERSION
========================= */

/* iPhone safe area support */
body{
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* iPhone / Safari */
@supports (-webkit-touch-callout: none){

.hero{
    min-height:100svh !important; /* better than 100vh on iPhone */
    padding-top:calc(100px + env(safe-area-inset-top)) !important;
    padding-bottom:40px !important;
}

.header{
    padding-top: max(12px, env(safe-area-inset-top));
}

.hero-content{
    width:100%;
    padding:0 14px;
}

.hero-title{
    font-size:clamp(2.4rem,12vw,3.8rem)!important;
    line-height:1.05!important;
}

.hero-desc{
    font-size:.95rem!important;
    line-height:1.7!important;
}

.hero-tagline{
    letter-spacing:2px!important;
    font-size:.7rem!important;
}

.hero-tagline::before,
.hero-tagline::after{
    width:14px!important;
    margin:0 5px!important;
}

.hero-ctas{
    flex-direction:column!important;
    gap:12px!important;
}

.btn{
    width:100%!important;
}

.hero-stats{
    grid-template-columns:1fr!important;
    max-width:100%!important;
    gap:12px!important;
    padding:18px!important;
}

.stat:not(:last-child)::after{
    display:none!important;
}

.footer-grid,
.directors-grid,
.projects-grid,
.services-grid,
.steps-grid,
.vision-mission{
    grid-template-columns:1fr!important;
}

.phone-btn{
    display:none!important;
}

.logo-img{
    height:42px!important;
}

}

/* iPhone SE */
@media screen and (max-width:390px){

.hero{
    padding-top:95px!important;
}

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

.hero-desc{
    font-size:.88rem!important;
}

.stat-value{
    font-size:1.7rem!important;
}

}
/* =========================
 DESKTOP + MOBILE + IPHONE TESTIMONIAL FINAL
========================= */

.testimonials{
    overflow:hidden !important;
}

.testimonial-wrapper{
    max-width:1280px;
    margin:auto;
}

/* Desktop + Tablet = 2 cards */

@media (min-width:601px){

.testimonials-carousel{
    display:grid !important;
    grid-auto-flow:column;
    grid-auto-columns:calc((100% - 20px)/2) !important;
    gap:20px !important;

    overflow-x:auto;
    scrollbar-width:none;
}

.testimonials-carousel::-webkit-scrollbar{
display:none;
}

.testimonial-card{
    min-height:280px;
}

}

/* Mobile + iPhone = 1 card swipe */

@media (max-width:600px){

.testimonials{
padding:70px 0 !important;
}

.testimonial-wrapper{
padding:0 14px !important;
overflow:hidden;
}

.testimonials-carousel{
display:flex !important;
overflow-x:auto !important;
overflow-y:hidden;

gap:14px;

scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;

scrollbar-width:none;
}

.testimonials-carousel::-webkit-scrollbar{
display:none;
}

.testimonial-card{
flex:0 0 100% !important;
min-width:100% !important;
max-width:100% !important;

padding:22px !important;

scroll-snap-align:center;
}

.testimonial-btn{
display:none !important;
}

}

/* iPhone Safe Area */

@supports (-webkit-touch-callout:none){

.testimonials{
padding-left:env(safe-area-inset-left);
padding-right:env(safe-area-inset-right);
}

}
/* =========================
 FINAL GLOBAL FIX
 Desktop + Mobile + iPhone
========================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
    margin:0;
    padding:0;
}

/* remove side gap everywhere */
section,
.hero,
.projects,
.container{
    width:100%;
    box-sizing:border-box;
}

/* container alignment */
.container{
    max-width:1280px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

/* hero fix */
.hero{
    overflow:hidden;
    margin:0 auto !important;
}

/* stats glass card */
.hero-stats{
    width:100%;
    max-width:900px;
    margin:auto;
}

/* remove blue link underline */
.project-link,
.project-link:link,
.project-link:visited,
.projects a,
.projects a:hover{
    text-decoration:none !important;
    color:inherit !important;
}

/* title fix */
.project-name,
.section-title{
    text-decoration:none !important;
}

/* iPhone safe */
@supports (-webkit-touch-callout:none){

body{
padding-left:env(safe-area-inset-left);
padding-right:env(safe-area-inset-right);
}

}

/* desktop */
@media(min-width:1200px){
.container{
max-width:1280px;
}
}

/* tablet */
@media(max-width:992px){
.container{
padding:0 18px;
}
}

/* mobile */
@media(max-width:768px){

.hero{
padding-left:15px !important;
padding-right:15px !important;
}

.hero-stats{
max-width:100%;
}

.container{
padding-left:16px;
padding-right:16px;
}

}

/* =========================================================
   FINAL GLOBAL BUG FIX - Desktop + Tablet + Mobile + iPhone
   Add/keep this block at the very bottom of standalone.css
========================================================= */

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

body {
    background: #ffffff !important;
}

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

section,
.header,
.footer,
.hero,
.projects,
.services,
.about,
.directors,
.testimonials,
.newsletter,
.how-we-work,
.partners-carousel {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.container,
.header-container {
    width: 100% !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Header / Navigation */
.header {
    z-index: 9999 !important;
}

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

.logo,
.project-link,
.project-link:link,
.project-link:visited,
.project-link:hover,
.projects a,
.projects a:link,
.projects a:visited,
.projects a:hover,
.section-title a,
.section-title a:visited,
.section-title a:hover {
    text-decoration: none !important;
}

.project-link,
.project-link:link,
.project-link:visited,
.projects a,
.projects a:link,
.projects a:visited,
.section-title a {
    color: inherit !important;
}

.project-link:hover,
.projects a:hover {
    color: #f97316 !important;
}

.menu-toggle {
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.14) !important;
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 10001 !important;
}

.header.scrolled .menu-toggle,
.header.nav-open .menu-toggle {
    color: #111827 !important;
    background: #f3f4f6 !important;
}

.nav-mobile {
    display: none !important;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex !important;
        align-items: center !important;
    }

    .menu-toggle,
    .nav-mobile {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .nav-desktop,
    .phone-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .header.nav-open,
    .header.scrolled {
        background: #ffffff !important;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12) !important;
    }

    .nav-mobile {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        padding: 14px 20px 20px !important;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16) !important;
        border-top: 1px solid #e5e7eb !important;
        z-index: 10000 !important;
    }

    .nav-mobile.active {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .nav-mobile .nav-link {
        display: block !important;
        color: #111827 !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        padding: 13px 10px !important;
        border-radius: 10px !important;
    }

    .nav-mobile .nav-link:hover {
        background: #fff7ed !important;
        color: #f97316 !important;
    }
}

/* Hero alignment and black-side-gap fix */
.hero {
    margin: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow: hidden !important;
}

.hero::before,
.hero::after,
.hero-overlay {
    width: 100% !important;
    max-width: 100% !important;
}

.hero-content {
    width: 100% !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.hero-stats {
    width: 100% !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Projects */
.projects-grid {
    align-items: stretch !important;
}

.project-card {
    position: relative !important;
}

/* Testimonials: Desktop = 2 cards, Tablet = 2 cards, Mobile/iPhone = 1 swipe card */
.testimonials {
    overflow: hidden !important;
}

.testimonial-wrapper {
    position: relative !important;
    max-width: 1180px !important;
    margin: 45px auto 0 !important;
    padding: 0 64px !important;
    overflow: hidden !important;
}

.testimonials-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 22px) / 2) !important;
    gap: 22px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    padding: 12px 2px 28px !important;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none !important;
}

.testimonial-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    scroll-snap-align: start !important;
    min-height: 280px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 4 !important;
}

.testimonial-btn.prev {
    left: 8px !important;
}

.testimonial-btn.next {
    right: 8px !important;
}

/* Touch-slide partner/bank carousel */
.carousel-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: none !important;
}

.carousel-container::-webkit-scrollbar {
    display: none !important;
}

.carousel-track {
    display: flex !important;
    width: max-content !important;
    max-width: none !important;
    gap: 24px !important;
}

.carousel-item,
.logo-item {
    flex: 0 0 auto !important;
    scroll-snap-align: center !important;
}

/* Footer */
.footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr !important;
    gap: 42px !important;
}

.footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.footer-socials a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .testimonial-wrapper {
        padding: 0 46px !important;
    }

    .testimonials-carousel {
        grid-auto-columns: calc((100% - 18px) / 2) !important;
        gap: 18px !important;
    }
}

/* Mobile + iPhone */
@media (max-width: 600px) {
    .container,
    .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero {
        min-height: 100svh !important;
        padding: 118px 16px 56px !important;
    }

    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3.15rem) !important;
        line-height: 1.08 !important;
    }

    .hero-desc {
        font-size: 0.96rem !important;
        line-height: 1.7 !important;
    }

    .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 34px !important;
    }

    .btn {
        width: 100% !important;
        min-width: 0 !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 18px !important;
        max-width: 100% !important;
    }

    .stat:not(:last-child)::after {
        display: none !important;
    }

    .projects-grid,
    .services-grid,
    .steps-grid,
    .directors-grid,
    .vision-mission,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonial-wrapper {
        width: 100% !important;
        padding: 0 14px !important;
        margin-top: 32px !important;
        overflow: hidden !important;
    }

    .testimonials-carousel {
        display: flex !important;
        gap: 14px !important;
        grid-auto-flow: unset !important;
        grid-auto-columns: unset !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 8px 0 24px !important;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        padding: 22px !important;
        scroll-snap-align: center !important;
    }

    .testimonial-top {
        align-items: center !important;
        gap: 12px !important;
    }

    .testimonial-dp {
        width: 58px !important;
        height: 58px !important;
        flex-shrink: 0 !important;
    }

    .testimonial-author {
        font-size: 17px !important;
    }

    .testimonial-role {
        font-size: 13px !important;
    }

    .testimonial-text {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .testimonial-btn {
        display: none !important;
    }

    .carousel-track {
        animation: none !important;
    }

    .carousel-item,
    .logo-item {
        width: 160px !important;
        min-width: 160px !important;
        height: 100px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* iPhone safe-area */
@supports (-webkit-touch-callout: none) {
    body {
        padding-left: env(safe-area-inset-left) !important;
        padding-right: env(safe-area-inset-right) !important;
    }

    .header {
        padding-top: max(10px, env(safe-area-inset-top)) !important;
    }

    .hero {
        min-height: 100svh !important;
    }
}
