Global Reset & Base Styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Bar Styles --- */
.top-bar {
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}

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

.contact-info span {
    margin-right: 15px;
}

.contact-info i {
    color: #00bfff; /* Adjusted to light blue accent */
    margin-right: 5px;
}

.contact-info .divider {
    color: #555;
    margin-right: 15px;
}

.social-icons a {
    color: #ffffff;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00bfff; /* Adjusted to light blue accent */
}

/* --- Main Header & Nav Styles --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

/* Logo Box matching the green and light blue design */

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 80px; /* Adjust the height as needed */
    width: auto;
    justify-content: center;

}


/* Navigation Links */
.navbar .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: #00bfff; /* Changed active/hover nav to light blue */
}

.navbar .nav-links i {
    font-size: 12px;
    margin-left: 3px;
}

/* Get A Quote Button */
.header-btn .btn-quote {
    background-color: #00bfff; /* Adjusted to Light Blue button */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header-btn .btn-quote:hover {
    background-color: #009acd; /* Darker shade of light blue on hover */
}

/* styling the nav links to contain a padding */
.nav-menu a {
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #00bfff; /* Light Blue background on hover */      
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #444;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info span { margin-right: 15px; }
.contact-info i { color: #00bfff; margin-right: 5px; }
.contact-info .divider { color: #555; margin-right: 15px; }
.social-icons a { color: #ffffff; margin-left: 15px; text-decoration: none; transition: color 0.3s; }
.social-icons a:hover { color: #00bfff; }

/* --- Main Header --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container { display: flex; align-items: center; justify-content: space-between; }
.logo-box { background-color: #00b300; padding: 20px 40px; display: flex; align-items: center; }
.logo-box h1 { color: #00bfff; font-size: 32px; font-weight: 800; letter-spacing: 1px; }

.navbar .nav-links { display: flex; list-style: none; align-items: center; }
.navbar .nav-links li { margin: 0 15px; }
.navbar .nav-links a { text-decoration: none; color: #444444; font-size: 16px; font-weight: 600; transition: color 0.3s; }
.navbar .nav-links a:hover, .navbar .nav-links a.active { color: #00bfff; }
.navbar .nav-links i { font-size: 12px; margin-left: 3px; }

.header-btn .btn-quote, .btn-submit {
    background-color: #00bfff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}
.header-btn .btn-quote:hover, .btn-submit:hover { background-color: #009acd; }

/* --- Hero Section & JavaScript Animation Styles --- */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Slides controlled via JS */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Clickable Interactive Dots on Left Side */
.hero-dots {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-dots .dot {
    width: 15px;
    height: 15px;
    background-color: #ffc107; /* Yellow styling matching screenshot */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s, background-color 0.3s;
}

.hero-dots .dot:hover {
    transform: scale(1.2);
}

.hero-dots .dot.active {
    background-color: #00bfff; /* Highlight active dot */
    transform: scale(1.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h5 {
    color: #00bfff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
}

/* --- Info Cards Bar --- */
.info-bar {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}
.info-bar-container {
    display: flex;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.info-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px;
    color: #fff;
}
.yellow-card { background-color: #ffc107; color: #1c1c1c; }
.green-card { background-color: #00b300; }

.info-card .icon-box {
    font-size: 30px;
    margin-right: 20px;
}
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.info-card p { font-size: 14px; }

/* --- Contact Section --- */
.contact-section {
    padding: 60px 0 100px 0;
    background-color: #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h5 {
    color: #00b300;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1c1c1c;
}
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
}
.contact-form-box .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form-box input, 
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form-box input:focus, 
.contact-form-box textarea:focus {
    border-color: #00bfff;
}












/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #444;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Bar --- */
.top-bar { background-color: #1c1c1c; color: #fff; font-size: 14px; padding: 10px 0; }
.top-bar-container { display: flex; justify-content: space-between; align-items: center; }
.contact-info span { margin-right: 15px; }
.contact-info i { color: #00bfff; margin-right: 5px; }
.contact-info .divider { color: #555; margin-right: 15px; }
.social-icons a { color: #fff; margin-left: 15px; text-decoration: none; transition: color 0.3s; }
.social-icons a:hover { color: #00bfff; }

/* --- Main Header --- */
.main-header { background-color: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; align-items: center; justify-content: space-between; }
.logo-box { background-color: #00b300; padding: 20px 40px; display: flex; align-items: center; }
.logo-box h1 { color: #00bfff; font-size: 32px; font-weight: 800; letter-spacing: 1px; }

.navbar .nav-links { display: flex; list-style: none; align-items: center; }
.navbar .nav-links li { margin: 0 15px; }
.navbar .nav-links a { text-decoration: none; color: #444; font-size: 16px; font-weight: 600; transition: color 0.3s; }
.navbar .nav-links a:hover, .navbar .nav-links a.active { color: #00bfff; }
.navbar .nav-links i { font-size: 12px; margin-left: 3px; }

.header-btn .btn-quote, .btn-submit, .btn-learn {
    background-color: #00bfff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.header-btn .btn-quote:hover, .btn-submit:hover, .btn-learn:hover { background-color: #009acd; }

/* --- Hero Section --- */
.hero-section { position: relative; height: 70vh; min-height: 500px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out, transform 6s ease; transform: scale(1); }
.hero-slide.active { opacity: 1; transform: scale(1.03); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1; }

.hero-dots { position: absolute; left: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 10; }
.hero-dots .dot { width: 15px; height: 15px; background-color: #ffc107; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.3); transition: transform 0.3s, background-color 0.3s; }
.hero-dots .dot:hover { transform: scale(1.2); }
.hero-dots .dot.active { background-color: #00bfff; transform: scale(1.3); }

.hero-content { position: relative; z-index: 2; }
.hero-content h5 { color: #00bfff; font-size: 18px; font-weight: 700; letter-spacing: 2px; margin-bottom: 15px; }
.hero-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 30px; color: #fff; }

/* --- Info Cards Bar --- */
.info-bar { margin-top: -40px; position: relative; z-index: 10; margin-bottom: 80px; }
.info-bar-container { display: flex; box-shadow: 0 0 15px rgba(0,0,0,0.05); }
.info-card { flex: 1; display: flex; align-items: center; padding: 30px; color: #fff; }
.yellow-card { background-color: #ffc107; color: #1c1c1c; }
.green-card { background-color: #00b300; }
.info-card .icon-box { font-size: 30px; margin-right: 20px; }
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.info-card p { font-size: 14px; }

/* --- About Section --- */
.about-section { padding: 80px 0; background-color: #fff; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-image-box { flex: 1; position: relative; }
.about-image-box img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Experience Overlay Box */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #1c1c1c;
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.experience-badge i { color: #ffc107; font-size: 35px; margin-bottom: 10px; }
.experience-badge h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.experience-badge p { font-size: 14px; color: #ccc; font-weight: 600; }

.about-text-box { flex: 1; }
.about-text-box h5 { color: #00b300; font-size: 15px; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.about-text-box h2 { font-size: 34px; font-weight: 800; color: #1c1c1c; margin-bottom: 20px; }
.about-text-box .lead-text { font-size: 16px; font-weight: 600; color: #444; margin-bottom: 15px; line-height: 1.6; }
.about-text-box p { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 30px; }

.about-actions { display: flex; align-items: center; gap: 30px; }

/* --- Pulsing Highlight Button Effect --- */
.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #00b300;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 0 0 rgba(0, 179, 0, 0.7);
    animation: pulseHighlight 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 179, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 179, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 179, 0, 0);
    }
}

/* --- Contact Section --- */
.contact-section { padding: 60px 0 100px 0; background-color: #f9f9f9; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h5 { color: #00b300; font-size: 16px; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.section-title h2 { font-size: 36px; font-weight: 800; color: #1c1c1c; }
.contact-wrapper { max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.03); }
.contact-form-box .form-group { display: flex; gap: 20px; margin-bottom: 20px; }
.contact-form-box input, .contact-form-box textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 15px; outline: none; transition: border-color 0.3s; }
.contact-form-box input:focus, .contact-form-box textarea:focus { border-color: #00bfff; }












/* --- Services Section Styles --- */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Content */
.services-info {
    flex: 1;
}

.services-info h5 {
    color: #00b300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-services {
    background-color: #ffc107;
    color: #1c1c1c;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-services:hover {
    background-color: #e0a800;
}

/* Right Carousel Wrapper */
.services-carousel-wrapper {
    flex: 1.3;
    position: relative;
    overflow: hidden;
}

/* Track holding the cards */
.services-track-container {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

/* Individual Service Card */
.service-card {
    min-width: calc(50% - 10px);
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-content {
    padding: 25px 20px;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #00b300;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -50px auto 15px auto;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
}

/* Carousel Control Arrows */
.carousel-btn {
    position: absolute;
    top: -50px;
    background-color: #ffc107;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    color: #1c1c1c;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #e0a800;
}

.prev-btn {
    right: 50px;
}

.next-btn {
    right: 5px;
}










/* --- Why Choose Us Section Styles --- */
.why-choose-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Content */
.why-choose-info {
    flex: 1.2;
}

.why-choose-info h5 {
    color: #00b300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-choose-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-info > p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Counters Layout */
.counters-row {
    display: flex;
    gap: 40px;
}

.counter-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #00b300;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* Right Image */
.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}









/* --- Project Gallery Section --- */
.project-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Blurred Background Image */
.project-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.1); /* Prevents blur borders from showing edge bleeding */
    z-index: 1;
}

/* Dark/Color Overlay on top of blurred background */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.project-container {
    position: relative;
    z-index: 3;
}

/* Grid Layout (3 columns x 2 rows) */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Individual Grid Item */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
    aspect-ratio: 16/10;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom image slightly on parent hover */
.project-item:hover img {
    transform: scale(1.1);
}

/* Yellow Hover Overlay Box */
.project-content-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 193, 7, 0.92); /* Yellow styling matching theme */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
    text-align: center;
}

/* Trigger transition on mouse hover */
.project-item:hover .project-content-hover {
    opacity: 1;
    visibility: visible;
}

.project-content-hover h3 {
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.project-item:hover .project-content-hover h3 {
    transform: translateY(0);
}

/* Icons container */
.project-links {
    display: flex;
    gap: 10px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.project-item:hover .project-links {
    transform: translateY(0);
}

.project-links a {
    width: 40px;
    height: 40px;
    background-color: #00b300; /* Green accent */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.3s;
}

.project-links a:hover {
    background-color: #009acd; /* Light blue accent */
    transform: scale(1.1);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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







/* --- Team Section Styles --- */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.team-title-box h5 {
    color: #00b300;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team-title-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1c1c1c;
}

.team-desc-box {
    max-width: 400px;
}

.team-desc-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Carousel Layout wrapper */
.team-carousel-wrapper {
    position: relative;
    padding: 0 50px; /* Adds side padding so arrows sit at the extreme ends */
}

.team-track-container {
    overflow: hidden;
    width: 100%;
}

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

/* Team Card */
.team-card {
    min-width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.team-img-box {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

/* Social Icons Container */
.team-socials {
    position: absolute;
    right: -50px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right 0.3s ease-in-out;
}

.team-img-box:hover .team-socials {
    right: 15px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    background-color: #00b300;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.team-socials a:nth-child(2) {
    background-color: #ffc107;
    color: #1c1c1c;
}

.team-socials a:hover {
    opacity: 0.85;
}

/* Info Box */
.team-info-box {
    background-color: #ffc107;
    padding: 20px;
    text-align: center;
}

.team-info-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 4px;
}

.team-info-box p {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* Repositioned Extreme End Arrow Buttons */
.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffc107;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.team-nav-btn:hover {
    background-color: #00b300;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.team-prev {
    left: 0;
}

.team-next {
    right: 0;
}

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

@media (max-width: 576px) {
    .team-card {
        min-width: 100%;
    }
    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .team-carousel-wrapper {
        padding: 0 30px;
    }
}









/* --- Testimonial Section Styles --- */
.testimonial-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.testimonial-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 1;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.75);
    z-index: 2;
}

.testimonial-container {
    position: relative;
    z-index: 3;
}

.testimonial-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial-slider-area {
    flex: 1.2;
    overflow: hidden; /* Hides cards outside view */
    width: 100%;
}

/* Track holding cards side-by-side */
.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    min-width: 100%; /* Forces each slide to occupy full container width */
    box-sizing: border-box;
}

.testimonial-item h5 {
    color: #00b300;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-item h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 25px;
}

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

.client-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00b300;
}

.client-meta h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.client-meta p {
    color: #00bfff;
    font-size: 14px;
    font-weight: 500;
}

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

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-dots .dot.active {
    background-color: #ffc107;
    transform: scale(1.2);
}

.testimonial-image-area {
    flex: 1;
}

.testimonial-image-area img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .testimonial-content-wrapper {
        flex-direction: column;
    }
}











/* --- Blog Section Styles --- */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.blog-title-box h5 {
    color: #00b300; /* Primary Green */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.blog-title-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1c1c1c;
}

.blog-desc-box {
    max-width: 400px;
}

.blog-desc-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Grid Layout for Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-box {
    position: relative;
    height: 220px;
}

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

/* Yellow Date Badge on Top-Right of Image */
.blog-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffc107; /* Yellow Accent */
    color: #1c1c1c;
    width: 45px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.blog-date-badge .date-num {
    font-size: 16px;
    line-height: 1;
}

.blog-date-badge .date-mon {
    font-size: 11px;
    text-transform: uppercase;
}

/* Blog Content Details */
.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 12px;
    font-weight: 600;
    color: #00b300;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.blog-meta span:last-child {
    color: #666;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Read More Button style */
.read-more-btn {
    display: inline-block;
    background-color: #ffc107;
    color: #1c1c1c;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #e0a800;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}







/* --- Footer Section Styles --- */
.footer-section {
    background-color: #121518; /* Dark theme background matching footer image */
    color: #a0a0a0;
    padding: 80px 0 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer 4-Column Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: #ffc107; /* Yellow Accent */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Brand Column */
.footer-logo {
    color: #ffc107;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.brand-desc {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #a0a0a0;
}

.footer-subheading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hours-text {
    line-height: 1.6;
    color: #a0a0a0;
}

/* Get In Touch Column */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #a0a0a0;
}

.contact-list li i {
    color: #ffc107;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #121518;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background-color: #00b300;
    color: #ffffff;
}

/* Quick Links Column */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links li a {
    color: #a0a0a0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

/* Team Section with Manual & Auto Scroll */
.t
.quick-links li a i {
    color: #ffc107;
    font-size: 12px;
}

.quick-links li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

/* Newsletter Column */
.newsletter-col p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.newsletter-form button {
    background-color: #ffc107;
    color: #1c1c1c;
    border: none;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e0a800;
}

/* Bottom Footer Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffc107;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}




/* styling for the about page */
/* Global Setup with Light Blue & Green Palette */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-green: #008000;
    --light-blue: #e0f2fe;     /* Light Blue Theme Tone */
    --accent-blue: #0284c7;    /* Vibrant Blue Accent */
    --dark-bg: #111111;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --white: #ffffff;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info span { margin-right: 20px; }
.contact-info i { color: var(--accent-blue); margin-right: 5px; }
.social-icons a { color: var(--white); margin-left: 15px; text-decoration: none; transition: color 0.3s; }
.social-icons a:hover { color: var(--accent-blue); }

/* Navigation Bar */
.navbar-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo-box {
    background-color: var(--primary-green);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}
.logo-box h1 { color: var(--white); font-size: 36px; font-weight: 700; }
.nav-menu ul { display: flex; list-style: none; align-items: center; }
.nav-menu ul li { position: relative; margin: 0 15px; }
.nav-menu ul li a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 16px; transition: color 0.3s; }
.nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--primary-green); }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    flex-direction: column;
    width: 160px;
    display: none;
    padding: 10px 0;
}
.dropdown-menu li { margin: 0; width: 100%; }
.dropdown-menu li a { padding: 8px 20px; display: block; }
.dropdown-menu li a:hover { background-color: var(--light-bg); }
.dropdown:hover .dropdown-menu { display: flex; }

.btn-quote {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-quote:hover { background-color: #0369a1; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* Hero Section */
.hero-section {
    background-color: var(--light-blue);
    padding: 80px 0;
    text-align: center;
}
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-title {
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.breadcrumb {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.breadcrumb a { color: var(--text-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-green); }

/* About Content Section */
.about-content-section {
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image-box {
    position: relative;
    height: 400px;
    background: url('images/worker1.png') center/cover no-repeat;
    border-radius: 8px;
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.experience-badge i { font-size: 36px; margin-bottom: 10px; }
.experience-badge .counter { font-size: 32px; font-weight: 700; display: block; }
.sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.about-text-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-text-box p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.about-action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.play-btn {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

/* Facts / Counter Section */
.facts-section {
    background-color: var(--light-blue);
    padding: 60px 0;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.fact-item h3 {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}
.fact-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}
eam-section {
    padding: 100px 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.section-header h2 { font-size: 32px; }
.carousel-nav-buttons {
    display: flex;
    gap: 10px;
}
.scroll-btn {
    background-color: var(--light-blue);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-dark);
    transition: background 0.3s;
}
.scroll-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Team Carousel Wrapper Setup */
.team-carousel-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for clean aesthetic */
}
.team-carousel-wrapper::-webkit-scrollbar {
    display: none;
}
.team-card {
    min-width: 350px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 4px solid var(--accent-blue);
}
.team-img {
    position: relative;
    height: 300px;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-social {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}
.team-card:hover .team-social {
    opacity: 1;
}
.team-social a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}
.team-info {
    padding: 25px;
    text-align: center;
    background-color: var(--light-blue);
}
.team-info h3 { font-size: 20px; margin-bottom: 5px; }
.team-info p { color: #666; font-size: 14px; }

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}
.footer-col h3 { font-size: 20px; margin-bottom: 20px; color: var(--white); }
.footer-col p { color: #aaa; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.footer-sub-title { font-size: 16px; margin-top: 15px; margin-bottom: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent-blue); }
.newsletter-form input {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    margin-bottom: 10px;
    border-radius: 4px;
}
.newsletter-form button {
    width: 100%;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #888; text-decoration: none; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid, .footer-grid, .facts-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; align-items: flex-start; padding: 20px; }
    .menu-toggle { display: block; }
    .header-action { display: none; }
}






/* Hero Section with Blurred Background Image */
.hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background-color: var(--dark-bg); /* Fallback color */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace the URL below with your desired image link */
    background: url('images/cleaning6.jpg') center/cover no-repeat;
    filter: blur(6px); /* Adjust blur intensity here */
    transform: scale(1.05); /* Prevents white edges from showing due to the blur */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2; /* Keeps text above the blurred background layer */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: var(--white); /* Changed to white for better contrast over background image */
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}






/* Team Section Styles with Extreme End Buttons */
.team-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 40px;
}

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

/* Wrapper to position buttons on absolute extreme ends */
.team-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.team-carousel-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    padding: 10px 0;
}

.team-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* Scroll buttons styled and pushed to absolute outer edges */
.scroll-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
    flex-shrink: 0;
}

.scroll-btn:hover {
    background-color: var(--accent-blue);
    transform: scale(1.05);
}

.prev-extreme {
    position: absolute;
    left: -25px; /* Pushes button slightly outside the left container bound */
}

.next-extreme {
    position: absolute;
    right: -25px; /* Pushes button slightly outside the right container bound */
}

/* Team Card styling updates */
.team-card {
    min-width: 350px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 4px solid var(--accent-blue);
}

.team-img {
    position: relative;
    height: 300px;
}

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

.team-social {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.team-info {
    padding: 25px;
    text-align: center;
    background-color: var(--light-blue);
}

.team-info h3 { 
    font-size: 20px; 
    margin-bottom: 5px; 
}

.team-info p { 
    color: #666; 
    font-size: 14px; 
}












/* Global Setup with Light Blue & Green Palette */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-green: #008000;
    --light-blue: #e0f2fe;     
    --accent-blue: #0284c7;    
    --dark-bg: #111111;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --white: #ffffff;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info span { margin-right: 20px; }
.contact-info i { color: var(--accent-blue); margin-right: 5px; }
.social-icons a { color: var(--white); margin-left: 15px; text-decoration: none; transition: color 0.3s; }
.social-icons a:hover { color: var(--accent-blue); }

/* Navigation Bar */
.navbar-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo-box {
    background-color: var(--primary-green);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}
.logo-box h1 { color: var(--white); font-size: 36px; font-weight: 700; }
.nav-menu ul { display: flex; list-style: none; align-items: center; }
.nav-menu ul li { position: relative; margin: 0 15px; }
.nav-menu ul li a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 16px; transition: color 0.3s; }
.nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--primary-green); }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    flex-direction: column;
    width: 160px;
    display: none;
    padding: 10px 0;
}
.dropdown-menu li { margin: 0; width: 100%; }
.dropdown-menu li a { padding: 8px 20px; display: block; }
.dropdown-menu li a:hover { background-color: var(--light-bg); }
.dropdown:hover .dropdown-menu { display: flex; }

.btn-quote {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-quote:hover { background-color: #0369a1; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* Hero Section with Blurred Background Image */
.hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background-color: var(--dark-bg);
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.breadcrumb {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.breadcrumb a { color: var(--text-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-green); }

/* Services Page Section */
.services-page-section {
    padding: 100px 0;
}
.section-header {
    margin-bottom: 40px;
}
.sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.section-header h2 { font-size: 32px; }

/* Carousel with Extreme End Buttons */
.team-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.team-carousel-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    padding: 10px 0;
}
.team-carousel-wrapper::-webkit-scrollbar {
    display: none;
}
.scroll-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
    flex-shrink: 0;
}
.scroll-btn:hover {
    background-color: var(--accent-blue);
    transform: scale(1.05);
}
.prev-extreme {
    position: absolute;
    left: -25px;
}
.next-extreme {
    position: absolute;
    right: -25px;
}

/* Service Card Style */
.team-card {
    min-width: 350px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 4px solid var(--accent-blue);
}
.team-img {
    position: relative;
    height: 250px;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    padding: 25px;
    text-align: center;
    background-color: var(--light-blue);
}
.team-info h3 { font-size: 20px; margin-bottom: 10px; }
.team-info p { color: #666; font-size: 14px; line-height: 1.5; }

/* Info Banner */
.info-banner {
    background-color: var(--light-blue);
    padding: 40px 0;
}
.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.banner-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.banner-box i {
    font-size: 32px;
    color: var(--primary-green);
    background: var(--light-blue);
    padding: 15px;
    border-radius: 50%;
}
.banner-box h4 { font-size: 16px; margin-bottom: 5px; }
.banner-box p { color: #666; font-size: 14px; }

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--white);
}
.testimonial-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--light-blue);
    padding: 50px;
    border-radius: 8px;
    margin-top: 30px;
}
.testimonial-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-text h3 { font-size: 20px; }
.profession { color: var(--primary-green); font-size: 14px; font-weight: 600; }
.testimonial-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}
.footer-col h3 { font-size: 20px; margin-bottom: 20px; color: var(--white); }
.footer-col p { color: #aaa; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.footer-sub-title { font-size: 16px; margin-top: 15px; margin-bottom: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent-blue); }
.newsletter-form input {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    margin-bottom: 10px;
    border-radius: 4px;
}
.newsletter-form button {
    width: 100%;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #888; text-decoration: none; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .banner-grid, .testimonial-card, .footer-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; align-items: flex-start; padding: 20px; }
    .menu-toggle { display: block; }
    .header-action { display: none; }
}



/* Testimonial Section Styling */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--light-blue);
    padding: 50px;
    border-radius: 8px;
    box-sizing: border-box;
}

.testimonial-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-text h3 { 
    font-size: 20px; 
}

.profession { 
    color: var(--primary-green); 
    font-size: 14px; 
    font-weight: 600; 
}

.testimonial-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Dots Navigation Style */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-dots .dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}





/* Responsive Adjustments for Testimonial Section */
@media (max-width: 768px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .testimonial-img img {
        height: 200px;
    }
}



/* Newsletter Form Styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}





.projects-section {
    padding: 100px 0;
    background-color: var(--white);
}

.projects-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.project-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background-color: var(--light-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 128, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.project-icons {
    display: flex;
    gap: 15px;
}

.project-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.3s;
}

.project-icons a:hover {
    background-color: var(--light-blue);
}

/* CRITICAL: Hides unmatched cards */
.project-card.hide {
    display: none !important;
}

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

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




/* Contact Section Styling */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.contact-top-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--light-blue);
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--primary-green);
}

.form-input.full-width {
    width: 100%;
}

.submit-btn {
    background-color: #facc15; /* Brand yellow accent */
    color: var(--text-dark);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #eab308;
}

.form-status {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

/* Map Styling */
.map-container {
    width: 100%;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Responsive Layout */
@media (max-width: 992px) {
    .contact-header-wrapper,
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}








/* ==========================================
   RESPONSIVE STYLES (TABLETS & MOBILE)
   ========================================== */

/* --- Tablet / Medium Devices (max-width: 992px) --- */
@media (max-width: 992px) {
    /* Main Layout Containers */
    .about-container,
    .services-container,
    .why-choose-container,
    .testimonial-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .services-carousel-wrapper,
    .why-choose-info,
    .why-choose-image,
    .testimonial-slider-area,
    .testimonial-image-area {
        width: 100%;
        flex: none;
    }

    /* Info Bar Stacked */
    .info-bar-container {
        flex-direction: column;
    }

    /* Experience Badge Adjustment */
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 20px;
    }

    /* Footer Grid Layout */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* --- Mobile / Small Devices (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Top Bar adjustments */
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info span {
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 4px;
    }

    .contact-info .divider {
        display: none;
    }

    .social-icons {
        margin-top: 5px;
    }

    .social-icons a {
        margin: 0 8px;
    }

    /* Header & Navigation */
    .header-container {
        flex-direction: column;
        padding: 15px 0;
        gap: 15px;
    }

    .logo-box {
        padding: 10px 20px;
    }

    .navbar .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .navbar .nav-links li {
        margin: 5px 8px;
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 420px;
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-content h5 {
        font-size: 15px;
    }

    /* Hero Dots - Reposition for touch screens */
    .hero-dots {
        left: 15px;
        gap: 10px;
    }

    .hero-dots .dot {
        width: 12px;
        height: 12px;
    }

    /* Services Carousel Controls */
    .carousel-btn {
        top: -40px;
    }

    .service-card {
        min-width: 100%; /* Show single card per slide on smaller screens */
    }

    /* Why Choose Us Counters */
    .counters-row {
        gap: 20px;
    }

    .counter-box h3 {
        font-size: 26px;
    }

    /* Forms */
    .contact-wrapper {
        padding: 25px 20px;
    }

    .contact-form-box .form-group {
        flex-direction: column;
        gap: 15px;
    }

    /* Blog Header & Grid */
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Extra Small Devices (max-width: 480px) --- */
@media (max-width: 480px) {
    /* General Typography & Spacing */
    .section-title h2,
    .about-text-box h2,
    .services-info h2,
    .why-choose-info h2,
    .team-title-box h2,
    .testimonial-item h2 {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    /* Footer single column */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Counters single column */
    .counters-row {
        flex-direction: column;
        gap: 15px;
    }

    /* About Section Actions */
    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Adjust Team Section Arrows */
    .team-carousel-wrapper {
        padding: 0 15px;
    }

    .team-nav-btn {
        width: 34px;
        height: 34px;
    }
}








/* ==========================================================================
   RESPONSIVE STYLES FOR FOOTER & ABOUT PAGE (Small Screens & Mobile)
   ========================================================================== */

/* --- Tablets & Medium Devices (max-width: 992px) --- */
@media screen and (max-width: 992px) {
    /* About Page Layout */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-box {
        height: 350px;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        padding: 20px;
    }

    /* Footer Layout */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* --- Small Tablets & Mobile Screens (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    /* Top Bar */
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info span {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 5px;
    }

    .social-icons a {
        margin: 0 8px;
    }

    /* Navbar & Header */
    .navbar-container {
        height: auto;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .logo-box {
        height: auto;
        padding: 10px 20px;
        border-radius: 4px;
    }

    .logo-box h1 {
        font-size: 28px;
    }

    .menu-toggle {
        display: block; /* Hamburger toggle icon */
    }

    .nav-menu {
        width: 100%;
        margin-top: 15px;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-menu ul li {
        margin: 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        padding-left: 15px;
        background-color: var(--light-bg);
    }

    /* Hero & Breadcrumbs */
    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    /* Facts / Counter Section */
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fact-item h3 {
        font-size: 32px;
    }

    .fact-item p {
        font-size: 15px;
    }

    /* Footer Bottom Bar */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* --- Extra Small Devices (max-width: 576px) --- */
@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    /* About Section */
    .about-content-section {
        padding: 60px 0;
    }

    .about-text-box h2 {
        font-size: 26px;
    }

    .about-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 15px;
        width: 100%;
    }

    /* Facts Section Stacking */
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Newsletter Form */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        background: transparent;
    }

    .newsletter-form input {
        width: 100%;
        border-radius: 4px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px;
        border-radius: 4px;
    }

    /* Footer Grid Stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}








/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Team Carousel, Blurred Hero & Footer)
   ========================================================================== */

/* --- Medium Screens & Tablets (max-width: 992px) --- */
@media screen and (max-width: 992px) {
    /* Section Headers */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    /* Blurred Hero Section */
    .hero-section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    /* Team Carousel Card Scaling */
    .team-card {
        min-width: 280px; /* Slightly narrower cards for smaller viewports */
    }

    /* Pull extreme buttons inside the container so they don't clip screen edges */
    .prev-extreme {
        left: 5px;
    }

    .next-extreme {
        right: 5px;
    }

    /* Footer Grid Switch to 2x2 */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* --- Mobile Devices & Small Tablets (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    /* Team Section & Spacing */
    .team-section {
        padding: 60px 0;
    }

    /* Hero Section adjustments */
    .hero-section {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .breadcrumb {
        font-size: 13px;
        padding: 6px 15px;
    }

    /* Carousel Outer Arrows (Hide extreme arrows on mobile to favor touch swiping) */
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Copyright & Bottom Bar Stack */
    .copyright {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

/* --- Extra Small Mobile Screens (max-width: 576px) --- */
@media screen and (max-width: 576px) {
    /* Single Card Focus on Mobile */
    .team-card {
        min-width: 100%; /* Card takes full screen width on small phones */
    }

    /* Hide extreme floating arrows on tiny screens to avoid blocking text */
    .prev-extreme,
    .next-extreme {
        display: none;
    }

    .team-carousel-wrapper {
        padding: 0;
    }

    /* Footer Column Stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Newsletter Form Stacking */
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        margin-bottom: 8px;
    }
}









/* ==========================================================================
   COMPLETE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Desktop & Small Laptops (max-width: 1200px) --- */
@media screen and (max-width: 1200px) {
    /* Pull extreme carousel buttons inside container padding to prevent horizontal scroll */
    .prev-extreme {
        left: 10px;
    }

    .next-extreme {
        right: 10px;
    }
}

/* --- Tablets & Medium Screens (max-width: 992px) --- */
@media screen and (max-width: 992px) {
    /* Layout Spacing */
    .services-page-section,
    .testimonial-section,
    .projects-section,
    .contact-section {
        padding: 60px 0;
    }

    /* Navigation & Top Bar */
    .top-bar {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .header-action {
        display: none;
    }

    /* Info Banner Grid */
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials Grid */
    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .projects-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Contact Section Layout */
    .contact-header-wrapper,
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    /* Footer Grid Switch to 2x2 */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* --- Mobile Devices & Small Tablets (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    /* Section Headers */
    .section-header h2,
    .hero-title {
        font-size: 28px;
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0;
    }

    .breadcrumb {
        font-size: 13px;
        padding: 6px 15px;
    }

    /* Testimonial adjustments */
    .testimonial-card {
        text-align: center;
        padding: 25px;
    }

    .testimonial-img img {
        height: 220px;
    }

    /* Carousel Arrow Size Adjustments */
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-extreme {
        left: 5px;
    }

    .next-extreme {
        right: 5px;
    }

    /* Footer Copyright Bar */
    .copyright {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

/* --- Extra Small Mobile Screens (max-width: 576px) --- */
@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    /* Team/Service Carousel Cards */
    .team-card {
        min-width: 100%; /* Card takes full screen width on mobile */
    }

    /* Hide extreme floating arrows on tiny screens to optimize touch scrolling */
    .prev-extreme,
    .next-extreme {
        display: none;
    }

    /* Filter Buttons Stack/Wrap */
    .project-filters {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    /* Projects Grid Stacking */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 240px;
    }

    /* Banner Box adjustments */
    .banner-box {
        flex-direction: column;
        text-align: center;
    }

    /* Map Height */
    .map-container {
        min-height: 280px;
    }

    /* Footer Column Stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}







/* General Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #00a8ff;
  --secondary-color: #1a252f;
  --accent-color: #70e000;
  --bg-light: #f8f9fa;
  --text-color: #333333;
}

body {
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.sub-heading {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.center {
  text-align: center;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1200x400') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content Grid */
.about-content {
  padding: 60px 0;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Core Values Section */
.core-values {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.core-values h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.cta-section h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.cta-section p {
  margin-bottom: 25px;
  color: #ccc;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #0086cc;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
}






/* Counter Section */
/* =======================
   COUNTER SECTION
========================== */

.counter-section{
    padding:70px 8%;
    background:#f8f8f8;
    text-align:center;
}

.counter-section h2{
    font-size:clamp(1.8rem,3vw,2.6rem);
    font-weight:800;
    color:#222;
    margin-bottom:12px;
}

.counter-section .subtitle{
    max-width:650px;
    margin:0 auto 45px;
    font-size:1rem;
    color:#666;
    line-height:1.7;
}

.counter-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    background:#fff;
    padding:30px 20px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:0.3s ease;
}

.counter-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.icon{
    font-size:2.8rem;
    margin-bottom:15px;
    line-height:1;
}

.counter-box h3{
    display:flex;
    justify-content:center;
    align-items:center;
    white-space:nowrap;
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    color:#0d8f55;
    margin-bottom:10px;
}

.counter-box h3 span:last-child{
    margin-left:3px;
}

.counter-box p{
    font-size:1rem;
    font-weight:600;
    color:#444;
}

/* ========== TABLET ========== */

@media (max-width:991px){

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

    .counter-box{
        padding:28px 18px;
    }

    .icon{
        font-size:2.5rem;
    }

    .counter-box h3{
        font-size:2.3rem;
    }

}

/* ========== MOBILE ========== */

@media (max-width:600px){

    .counter-section{
        padding:60px 20px;
    }

    .counter-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .counter-box{
        padding:25px 18px;
    }

    .icon{
        font-size:2.4rem;
    }

    .counter-box h3{
        font-size:2.2rem;
    }

    .counter-box p{
        font-size:0.95rem;
    }

}








/* Gallery Section */
/*==========================
        GALLERY
===========================*/

.gallery{
    padding:80px 8%;
    background:#f8f9fa;
}

.gallery-heading{
    text-align:center;
    margin-bottom:50px;
}

.gallery-heading h2{
    font-size:2.7rem;
    color:#222;
    font-weight:700;
    margin-bottom:15px;
}

.gallery-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:1rem;
}

/*==========================
        GRID
===========================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

/*==========================
      IMAGES & VIDEOS
===========================*/

.gallery-grid img,
.gallery-grid video{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    display:block;
    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.1);

    transition:all .35s ease;
}

/* Hover Effect */

.gallery-grid img:hover,
.gallery-grid video:hover{

    transform:translateY(-8px) scale(1.02);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

/* Rounded video controls */

.gallery-grid video{
    background:#000;
}

/*==========================
      TABLET
===========================*/

@media(max-width:992px){

    .gallery{

        padding:70px 6%;

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .gallery-grid img,
    .gallery-grid video{

        height:230px;

    }

}

/*==========================
      MOBILE
===========================*/

@media(max-width:768px){

    .gallery{

        padding:60px 20px;

    }

    .gallery-heading h2{

        font-size:2rem;

    }

    .gallery-heading p{

        font-size:.95rem;

    }

    .gallery-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .gallery-grid img,
    .gallery-grid video{

        height:240px;

    }

}

/*==========================
     SMALL PHONES
===========================*/

@media(max-width:480px){

    .gallery-heading h2{

        font-size:1.8rem;

    }

    .gallery-grid img,
    .gallery-grid video{

        height:220px;

        border-radius:12px;

    }

}






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

.hero-section{
    position:relative;
    width:100%;
    height:70vh;
    min-height:500px;

    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

/* Background Video */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
}

.hero-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark Overlay */

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:-1;
}

/* Content */

.hero-container{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.hero-title{
    font-size:clamp(2.8rem,6vw,5rem);
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    font-size:1.1rem;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#16a34a;
}

.separator{
    color:#ddd;
}

.current{
    color:#16a34a;
    font-weight:700;
}


/* ==========================
        TABLET
========================== */

@media(max-width:992px){

    .hero-section{
        height:60vh;
    }

}

/* ==========================
        MOBILE
========================== */

@media(max-width:768px){

    .hero-section{
        height:50vh;
        min-height:350px;
    }

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

    .breadcrumb{
        font-size:1rem;
    }

}

/* ==========================
      SMALL PHONES
========================== */

@media(max-width:480px){

    .hero-section{
        height:45vh;
        min-height:300px;
    }

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

    .breadcrumb{
        font-size:.9rem;
    }

}





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

.hero-section{
    position:relative;
    width:100%;
    height:70vh;
    min-height:450px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}


/* ==========================
        BACKGROUND VIDEO
========================== */

.hero-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:0;

}


.hero-video video{

    width:100%;
    height:100%;

    object-fit:cover;

}


/* ==========================
        OVERLAY
========================== */

.hero-section::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);

    z-index:1;

}


/* ==========================
        HERO CONTENT
========================== */

.hero-container{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

}


.hero-title{

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:800;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    color:white;

}


/* ==========================
        BREADCRUMB
========================== */

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    font-size:1.1rem;

}


.breadcrumb a{

    color:white;

    text-decoration:none;

    transition:.3s;

}


.breadcrumb a:hover{

    color:#16a34a;

}


.separator{

    color:#ddd;

}


.current{

    color:#16a34a;

    font-weight:700;

}


/* ==========================
        TABLET
========================== */

@media(max-width:992px){

    .hero-section{

        height:60vh;

    }

}


/* ==========================
        MOBILE
========================== */

@media(max-width:768px){

    .hero-section{

        height:50vh;

        min-height:320px;

    }


    .hero-title{

        font-size:2.2rem;

        letter-spacing:2px;

    }


    .breadcrumb{

        font-size:.95rem;

    }

}


/* ==========================
        SMALL PHONES
========================== */

@media(max-width:480px){

    .hero-section{

        height:45vh;

    }


    .hero-title{

        font-size:1.8rem;

    }

}






.blog-details{

    padding:80px 8%;
    background:#f8f9fa;

}


.blog-container{

    max-width:900px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.blog-container h1{

    font-size:2.5rem;
    color:#222;
    margin-bottom:20px;

}


.blog-meta{

    display:flex;
    gap:20px;
    color:#777;
    margin-bottom:30px;

}


.blog-container img{

    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px;

}


.blog-content{

    margin-top:30px;

}


.blog-content p{

    font-size:1.1rem;
    line-height:2;
    color:#444;

}


@media(max-width:768px){

    .blog-container{

        padding:25px;

    }


    .blog-container h1{

        font-size:1.8rem;

    }


    .blog-container img{

        height:250px;

    }

}



.blogs{

padding:80px 8%;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}



.blog-card{

background:white;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.1);

}



.blog-card img{

width:100%;

height:230px;

object-fit:cover;

}



.blog-content{

padding:25px;

}



.blog-content h3{

font-size:1.3rem;

margin-bottom:15px;

}



.blog-content p{

color:#666;

line-height:1.7;

}



.read-more{

display:inline-block;

margin-top:15px;

padding:12px 25px;

background:#16a34a;

color:white;

text-decoration:none;

border-radius:25px;

}



.read-more:hover{

background:#12813a;

}


/* DETAILS PAGE */


.blog-details{

padding:80px 8%;

background:#f7f7f7;

}



.details-container{

max-width:900px;

margin:auto;

background:white;

padding:40px;

border-radius:15px;

}



.details-container img{

width:100%;

height:400px;

object-fit:cover;

border-radius:15px;

}



.details-container h1{

font-size:2.5rem;

margin:25px 0;

}



.meta{

display:flex;

gap:20px;

color:#777;

}



#blog-description{

line-height:2;

font-size:1.1rem;

margin-top:30px;

}



.back-btn{

display:inline-block;

margin-top:30px;

color:#16a34a;

}







.blog-page{

padding:80px 8%;

background:#f8f9fa;

}


.blog-post{

max-width:900px;

margin:0 auto 70px;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}


.blog-post h1{

font-size:2.3rem;

color:#222;

}


.author{

color:#16a34a;

font-weight:600;

}


.blog-post img{

width:100%;

height:400px;

object-fit:cover;

border-radius:15px;

margin:25px 0;

}


.blog-post p{

font-size:1.1rem;

line-height:1.9;

color:#555;

}



@media(max-width:768px){

.blog-post{

padding:25px;

}


.blog-post h1{

font-size:1.7rem;

}


.blog-post img{

height:250px;

}

}





/* ===================================
        PROJECTS SECTION
=================================== */

.projects-section{

    position:relative;
    padding:100px 0;
    overflow:hidden;

}


/* ===================================
        BACKGROUND VIDEO
=================================== */


.projects-video{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-2;

}



.projects-video video{

    width:100%;
    height:100%;

    object-fit:cover;

}




/* ===================================
        VIDEO DARK OVERLAY
=================================== */


.projects-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;


    background:rgba(0,0,0,0.65);


    z-index:-1;

}




/* Keep content above video */

.projects-section .container{

    position:relative;

    z-index:2;

}





/* ===================================
        PROJECT HEADER
=================================== */


.projects-header-flex{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:50px;

}



.sub-heading{

    color:#16a34a;

    font-size:1rem;

    font-weight:700;

    letter-spacing:2px;

}




.projects-header-flex h2{


    color:white;

    font-size:clamp(2rem,4vw,3rem);

    margin-top:10px;

}



.projects-description{

    color:#ddd;

    max-width:600px;

    line-height:1.7;

    margin-top:15px;

}




/* ===================================
        FILTER BUTTONS
=================================== */


.project-filters{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}



.filter-btn{

    padding:12px 25px;

    border:none;

    border-radius:30px;

    cursor:pointer;

    background:white;

    color:#222;

    font-weight:600;

    transition:.3s;

}



.filter-btn:hover,
.filter-btn.active{


    background:#16a34a;

    color:white;

}





/* ===================================
        PROJECT GRID
=================================== */


.projects-grid{


    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;


}




/* ===================================
        PROJECT CARD
=================================== */


.project-card{


    position:relative;

    overflow:hidden;

    border-radius:15px;

    height:320px;

    cursor:pointer;


}



.project-card img{


    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.project-card:hover img{


    transform:scale(1.1);

}





/* ===================================
        PROJECT OVERLAY
=================================== */


.project-overlay{


    position:absolute;

    inset:0;


    background:rgba(0,0,0,.65);


    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;


    text-align:center;


    padding:20px;


    opacity:0;

    transition:.4s;


}



.project-card:hover .project-overlay{


    opacity:1;


}



.project-overlay h3{


    color:white;

    font-size:1.5rem;

    margin-bottom:10px;


}



.project-overlay p{


    color:#ddd;

    font-size:.95rem;


}




/* ===================================
        ICONS
=================================== */


.project-icons{


    display:flex;

    gap:15px;

    margin-top:20px;


}



.project-icons a{


    width:45px;

    height:45px;


    border-radius:50%;


    background:#16a34a;


    color:white;


    display:flex;

    align-items:center;

    justify-content:center;


    text-decoration:none;


    transition:.3s;


}



.project-icons a:hover{


    background:white;

    color:#16a34a;


}





/* ===================================
        TABLETS
=================================== */


@media(max-width:992px){


    .projects-header-flex{

        flex-direction:column;

        align-items:flex-start;

    }



    .projects-grid{


        grid-template-columns:repeat(2,1fr);

    }


}





/* ===================================
        MOBILE
=================================== */


@media(max-width:768px){


    .projects-section{

        padding:70px 0;

    }



    .projects-grid{


        grid-template-columns:1fr;

    }



    .project-card{

        height:280px;

    }



    .project-filters{


        justify-content:center;

    }



    .filter-btn{


        padding:10px 18px;

        font-size:.9rem;

    }


}




/* ===================================
        SMALL PHONES
=================================== */


@media(max-width:480px){


    .projects-header-flex h2{


        font-size:1.8rem;

    }



    .project-card{


        height:250px;

    }



}




/* =========================
ABOUT
========================= */


.about-section{

padding:100px 0;
overflow:hidden;

}



.about-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}



.about-image-box{

position:relative;

}



.about-image-box img{

width:100%;
height:550px;
object-fit:cover;
border-radius:25px;

transition:.5s;

}


.about-image-box:hover img{

transform:scale(1.03);

}




/* EXPERIENCE BADGE */


.experience-badge{

position:absolute;

right:-35px;

bottom:40px;


width:170px;
height:170px;


background:linear-gradient(
135deg,#16a34a,#065f46
);


border-radius:50%;


color:white;


display:flex;

flex-direction:column;

justify-content:center;

align-items:center;


border:8px solid white;


box-shadow:0 20px 40px rgba(0,0,0,.3);


animation:float 3s infinite;


}


@keyframes float{


50%{

transform:translateY(-15px);

}

}





.experience-badge h2{

font-size:45px;

margin:5px;

}




.about-text-box h2,
.services-info h2{


font-size:clamp(2rem,4vw,3rem);

}



.about-text-box p{

line-height:1.8;

color:#555;

}




/* BUTTONS */


.btn-learn,
.btn-services{


background:#16a34a;

color:white;

padding:14px 30px;

border-radius:30px;

text-decoration:none;

transition:.3s;

}



.btn-learn:hover,
.btn-services:hover{

transform:translateY(-5px);

}







/* =========================
SERVICES
========================= */


.services-section{

padding:100px 0;

background:#f6f8f7;

}



.services-container{


display:grid;

grid-template-columns:350px 1fr;

gap:50px;

align-items:center;


}





.services-track-container{

overflow:hidden;

}



.services-track{

display:flex;

gap:25px;

transition:.6s ease;

}




.service-card{


min-width:300px;


background:white;

border-radius:20px;

overflow:hidden;


box-shadow:0 15px 30px rgba(0,0,0,.1);


transition:.4s;


}



.service-card:hover{

transform:translateY(-10px);

}





.service-img img{


width:100%;

height:220px;

object-fit:cover;


}




.service-content{


padding:25px;

text-align:center;


}



.service-icon{


width:60px;

height:60px;


background:#16a34a;

color:white;

border-radius:50%;


display:flex;

justify-content:center;

align-items:center;


margin:-55px auto 15px;


font-size:25px;


border:5px solid white;


}




.carousel-btn{


position:absolute;

top:50%;

transform:translateY(-50%);


width:45px;

height:45px;


border-radius:50%;

border:none;


background:#16a34a;

color:white;


cursor:pointer;

z-index:5;


}


.prev-btn{

left:-20px;

}


.next-btn{

right:-20px;

}







/* MOBILE */


@media(max-width:992px){


.about-container,
.services-container{

grid-template-columns:1fr;

}



.experience-badge{

right:20px;

}


}





@media(max-width:600px){


.about-image-box img{

height:350px;

}


.experience-badge{

width:120px;

height:120px;

}



.services-track .service-card{

min-width:260px;

}


}





/* ================= TEAM SECTION ================= */

.team-section {
    padding: 80px 0;
    overflow: hidden;
}

.team-container {
    width: 90%;
    margin: auto;
}


.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}


.team-title-box h5 {
    color: #009688;
    font-size: 18px;
}

.team-title-box h2 {
    font-size: 40px;
    max-width: 500px;
}


.team-desc-box {
    max-width: 500px;
}


/* Carousel */

.team-carousel-wrapper {
    position: relative;
}


.team-track-container {
    overflow: hidden;
    width: 100%;
}


.team-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease-in-out;
}


/* Cards */

.team-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.team-img-box {
    position: relative;
    height: 350px;
}


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



/* Social icons */

.team-socials {
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:15px;
}


.team-socials a {
    width:40px;
    height:40px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#009688;
}



/* Info */

.team-info-box {
    padding:20px;
    text-align:center;
}


.team-info-box h3 {
    margin-bottom:8px;
}



/* Buttons */

.team-nav-btn {

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    background:#009688;
    color:white;
    z-index:5;

}


.team-prev {
    left:-20px;
}


.team-next {
    right:-20px;
}




/* ================= RESPONSIVE ================= */


@media(max-width:992px){

    .team-card{
        min-width:calc(50% - 15px);
    }


    .team-header{
        flex-direction:column;
        text-align:center;
    }

}



@media(max-width:600px){


    .team-card{
        min-width:100%;
    }


    .team-title-box h2{
        font-size:28px;
    }


    .team-img-box{
        height:300px;
    }


    .team-prev{
        left:5px;
    }


    .team-next{
        right:5px;
    }

}


/* ================= TEAM SECTION ================= */

.team-section {
    padding: 80px 0;
    overflow: hidden;
    background: #f8f9fa;
}


.team-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================= HEADER ================= */

.team-header {

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

    margin-bottom:50px;

}


.team-title-box {
    flex:1;
}


.team-title-box h5 {

    color:#009688;
    font-size:18px;
    letter-spacing:1px;
    margin-bottom:10px;

}


.team-title-box h2 {

    font-size:38px;
    line-height:1.2;
    color:#222;

}



.team-desc-box {

    flex:1;

}


.team-desc-box p {

    color:#555;
    line-height:1.7;
    font-size:16px;

}



/* ================= CAROUSEL ================= */


.team-carousel-wrapper {

    position:relative;
    width:100%;

}


.team-track-container {

    width:100%;
    overflow:hidden;

}



.team-track {

    display:flex;
    gap:20px;

    width:max-content;

    animation:teamScroll 25s linear infinite;

}



/* Infinite movement */

@keyframes teamScroll {


    from {

        transform:translateX(0);

    }


    to {

        transform:translateX(-50%);

    }

}




/* ================= TEAM CARDS ================= */


.team-card {

    width:260px;
    height:auto;

    flex-shrink:0;

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.12);

    transition:transform .3s ease;

}



.team-card:hover {

    transform:translateY(-10px);

}



/* Image */


.team-img-box {

    width:100%;
    height:280px;

    position:relative;

}


.team-img-box img {

    width:100%;
    height:100%;

    object-fit:cover;

}




/* Social icons */


.team-socials {

    position:absolute;

    bottom:15px;
    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

}



.team-socials a {

    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:white;

    border-radius:50%;

    color:#009688;

    font-size:14px;

    transition:.3s;

}


.team-socials a:hover {

    background:#009688;
    color:white;

}



/* Information */


.team-info-box {

    padding:20px;

    text-align:center;

}


.team-info-box h3 {

    font-size:19px;

    margin-bottom:8px;

    color:#222;

}



.team-info-box p {

    font-size:14px;

    color:#777;

}




/* ================= BUTTONS ================= */


.team-nav-btn {

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    cursor:pointer;

    background:#009688;

    color:white;

    z-index:10;

}


.team-prev {

    left:10px;

}



.team-next {

    right:10px;

}



/* ================= LARGE SCREENS ================= */


@media(min-width:1200px){

    .team-card {

        width:260px;

    }


}



/* ================= TABLETS ================= */


@media(max-width:992px){


.team-header{

    flex-direction:column;

    text-align:center;

}


.team-title-box h2{

    font-size:32px;

}



.team-card{

    width:230px;

}


.team-img-box{

    height:250px;

}


}




/* ================= MOBILE ================= */


@media(max-width:600px){


.team-container{

    width:95%;

}



.team-title-box h2{

    font-size:26px;

}



.team-desc-box p{

    font-size:14px;

}



.team-track{

    gap:15px;

}



.team-card{

    width:85vw;

}



.team-img-box{

    height:300px;

}



.team-nav-btn{

    width:38px;
    height:38px;

}



}




/* ================= SMALL PHONES ================= */


@media(max-width:400px){


.team-card{

    width:90vw;

}


.team-img-box{

    height:260px;

}


}




* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Open Button */
.open-btn {
  background-color: #e25822;
  color: white;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

/* Background Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

/* Active Modal State */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main Form Card */
.form-container {
  background: #ffffff;
  width: 90%;
  max-width: 650px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

/* Orange Top Header Bar */
.form-header {
  background-color: #e25822; /* BUILD Orange */
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* Form Body */
.subscribe-form {
  padding: 24px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.required {
  color: #e25822;
}

/* Inputs & Icon styling */
.row {
  display: flex;
  gap: 16px;
}

.input-icon-wrapper {
  position: relative;
  flex: 1;
}

.input-icon-wrapper .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
}

.input-icon-wrapper input {
  width: 100%;
  padding: 12px 12px 12px 36px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.input-icon-wrapper.no-icon input {
  padding-left: 12px;
}

.input-icon-wrapper input:focus, select:focus {
  border-color: #e25822;
  background-color: #fff;
}

/* Custom Dropdown Select */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 12px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: '▼';
  font-size: 10px;
  color: #666;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Privacy Section */
.privacy-text {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e25822;
}

/* Green Submit Button */
.submit-container {
  margin-top: 24px;
}

.submit-btn {
  background-color: #2e7d32; /* Green submit button from screenshot */
  color: #ffffff;
  border: none;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #246627;
}