/* ===== PREMIUM CONSTRUCTION WEBSITE STYLING ===== */

/* CSS Variables */
:root {
    --primary: #106a54;
    --primary-dark: #0a4d3d;
    --primary-light: #1a8c70;
    --secondary: #1a1a2e;
    --accent: #daa102;
    --light: #f8f9fa;
    --dark: #121212;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    /* padding-top: 90px; */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

h1{
    /* font-weight: bold !important; */
    font-size: 55px;
    font-weight: bold;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

h2 {
    font-weight: 650 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

h3 {
    font-weight: 650 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Pulse animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    animation: whatsappPulse 1.5s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobile size tweak */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

.display-1 {
    font-size: 4.5rem;
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

.heading_badge {
    background-color: var(--primary-light);
    color: white;
}

.green_container {
    background-color: var(--primary-dark);
}

.green_bullets {
    color: var(--primary-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 106, 84, 0.3);
}

/* ===== PREMIUM NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    border-bottom: 3px solid rgba(105, 148, 137, 0.196);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}



.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .brand-logo {
    height: 45px;
}

.phone-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-dark);
}



/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 106, 84, 0.3);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(16, 106, 84, 0.4);
}

/* ===== LUXURY HERO SECTION ===== */
.luxury-hero {
    position: relative;
    background: linear-gradient(135deg, #0a4d3d 0%, var(--primary) 50%, #1a8c70 100%);
    min-height: 100vh;
    padding-top: 70px;
    overflow: hidden;
    color: white;
}

/* Particles Background */

.hero-content {
    position: relative;
    z-index: 3;
}

/* ===== HERO BADGE (PRO VERSION) ===== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 6px;
    border-radius: 50px;
    background: rgba(16, 106, 84, 0.08);
}

/* Badge Pills */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    box-shadow: 0 8px 20px rgba(16, 106, 84, 0.25);
    white-space: nowrap;
}

/* Outline Style (for second badge) */

/* Divider Dot */
.hero-divider {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* Icon Size */
.hero-pill i {
    font-size: 0.9rem;
}

/* Hover Effect */
.hero-pill:hover {
    transform: translateY(-1px);
    transition: 0.3s ease;
}

/* RESPONSIVE */
@media(max-width:576px) {
    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Hero Title Effects */
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-gradient {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(16, 121, 0, 0.741);
    z-index: -1;
    transform: skew(-15deg);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Hero Actions */
.hero-actions {
    margin-bottom: 4rem;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--primary-dark);
    color: var(--gray-light);
    border-color: white;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Adjust darkness */
    z-index: 1;
}

/* ===== SECTION LABELS ===== */
.green-heading {
    color: var(--primary-light);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.label-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

/* ===== MODERN ABOUT SECTION ===== */
.stats-card {
    top: 100px;
    padding-right: 2rem;
}

.stat-box {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    transition: var(--transition);
    background-color: var(--primary-light);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1);
}

/* About Gallery Modern */
.about-gallery-modern {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
}

.gallery-item-sm {
    height: 150px;
    overflow: hidden;
}

.gallery-item-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-sm:hover img {
    transform: scale(1.1);
}

/* CEO Section */
.ceo-section {
    background: linear-gradient(135deg, #0a4d3d, #02746c);
    padding: 150px 0;
}

/* Image Styling */
.ceo-img-wrapper {
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.ceo-img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Text Area */
.ceo-title {
    font-size: 2.4rem;
    letter-spacing: 1px;
}

/* Quote Styling */
.ceo-quote {
    font-size: 1.25rem;
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Body Text */
.ceo-text {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
}

/* ===== SPECIALIZATION SECTION ===== */

.specialization-section {
    background: #f5f7f9;
}

.section-title {
    font-weight: 800;
    color: var(--primary-dark);
}

.section-subtitle {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 0.95rem;
}

/* Card */
.spec-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 22px;
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
}

.spec-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--primary-dark);
    transition: 0.4s;
    transform: translateX(-50%);
}

.spec-box:hover::after {
    width: 60%;
}

.spec-box:hover {
    transform: translateY(-10px);
}

/* Icon */
.spec-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 26px;
}

/* Text */
.spec-box h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.spec-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .spec-box {
        padding: 30px 22px;
    }
}


/* ===== PROCESS TIMELINE ===== */
.section-bg-fixed {
    position: relative;
    background: url('../images/safety-team.jpg') center/cover fixed no-repeat;
    padding: 80px 0;
}

.section-bg-fixed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    /* dark overlay */
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Make sure content stays above overlay */
.section-bg-fixed>.container {
    position: relative;
    z-index: 2;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--primary);
    opacity: 0.2;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.timeline-content {
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    padding-right: 4rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    padding-left: 4rem;
}

/* Success Metrics */
.success-metrics {
    border: 2px solid rgba(16, 106, 84, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.metric-number {
    line-height: 1;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }

    .timeline-content {
        width: 100%;
        padding: 0 !important;
        margin: 1rem 0 0 0 !important;
    }

    .stats-card {
        position: static !important;
        margin-bottom: 2rem;
    }
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d3047 100%);
}

.vision-card {
    box-shadow: var(--shadow-lg);
}

.vision-content {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.vision-stats {
    margin-top: 3rem;
}

.vision-stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.vision-stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.vision-image {
    position: relative;
}

.vision-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* ===== PREMIUM SERVICE CARDS ===== */
.service-card-hover {
    position: relative;
    height: 100%;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 106, 84, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.service-badge {
    background: var(--accent);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* ===== EXPERTISE CARDS ===== */
.expertise-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.expertise-card:hover::after {
    transform: scaleX(1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.expertise-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.expertise-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.expertise-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.expertise-card:hover .expertise-details {
    max-height: 300px;
}

.expertise-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.expertise-stats .stat h5 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.expertise-stats .stat p {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PROJECT FILTER ===== */
.projects-section {
    background: #f8f9fa;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
}

.project-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== OUR CLIENTS ===== */

.client-logo {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 120px;               /* FIXED HEIGHT */
    width: 100%;                 /* SAME WIDTH */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.17);
    transition: all 0.3s ease;
}

/* Logo wrapper control */
.client-logo img {
    max-height: 80px;            /* SAME VISUAL SIZE */
    max-width: 140px;            /* LIMIT WIDTH */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.85;
}

/* Hover effect */
.client-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .display-1 {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .solution-circle {
        width: 400px;
        height: 400px;
    }

    .circle-inner {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .vision-content,
    .vision-image {
        min-height: 400px;
    }

    .hero-image-wrapper {
        height: 400px;
        margin-top: 3rem;
    }

    .floating-image {
        position: relative !important;
        margin: 1rem auto;
        width: 100% !important;
        max-width: 500px;
    }
}

@media (max-width: 768px) {


    .display-1 {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .mega-menu {
        width: 100%;
        position: static !important;
        transform: none !important;
    }

    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
    }

    .solution-circle {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }

    .circle-inner {
        width: 200px;
        height: 200px;
    }

    .circle-item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .expertise-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .project-filter {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =======================
   PREMIUM FOOTER DESIGN
   ======================= */
.footer {
    background: #0c1f1b;
    color: #d6e5df;
    font-size: 15px;
}

.footer-logo-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}


.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo */
.footer-logo .logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #11b57f;
}

.footer-logo .logo-sub {
    font-size: 14px;
    margin-top: -8px;
    color: #8cd9c0;
}

/* About text */
.footer-about {
    line-height: 1.7;
    color: #cfe7df;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11b57f;
    transition: 0.3s;
    font-size: 16px;
}

.social-icon:hover {
    background: #11b57f;
    color: #fff;
    transform: translateY(-4px);
}

/* Headings */
.footer-heading {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #11b57f;
}

/* Footer Links */
.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: #d6e5df;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 12px;
    opacity: 0.6;
}

.footer-links li a:hover {
    color: #11b57f;
    padding-left: 6px;
}

/* Contact */
.footer-contact li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cfe7df;
}

.footer-contact i {
    font-size: 18px;
    color: #11b57f;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    background: #0a1815;
    color: #b9d6ce;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    list-style: none;
}

.footer-bottom-links li a {
    color: #b9d6ce;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links li a:hover {
    color: #11b57f;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
}


/*-------------------//////////////////-------------- Styling for the other pages ------------------////////////////////////////  */
 /* ===== ABOUT HERO SECTION ===== */
    .about-hero-section {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .about-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/pages-hero-section.jpg') center/cover no-repeat;
        /* linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.155)), for future */
    }

    .about-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(16, 106, 84, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .about-hero-container {
        position: relative;
        z-index: 2;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .about-breadcrumb .breadcrumb {
        background: transparent;
        padding: 0;
    }

    .about-breadcrumb .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .about-breadcrumb .breadcrumb-item.active {
        color: var(--primary-light);
    }

    .about-breadcrumb .breadcrumb-item a:hover {
        color: white;
    }

    .about-hero-title {
        font-size: 2.5rem;
        font-weight: 600;
        color: white;
        margin: 2rem 0 1rem;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .about-hero-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto;
    }




 

