/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
/* Independent Logo bar */
.logo-bridge {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1003; /* above both headers */
    pointer-events: none; /* do not block header interactions */
}

.logo-container {
    display: flex;
    justify-content: flex-start; /* move logo to left */
    align-items: flex-start;
    padding-top: 12px; /* move logo down a bit */
}

.logo-bridge img {
    height: 96px; /* increase size */
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.topbar {
    background-color: #2e7d32;
    color: #e8f5e9;
    height: 56px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

.topbar-content {
    display: flex;
    justify-content: flex-end; /* move content to the right */
    align-items: center;
    font-size: 0.9rem;
    gap: 24px;
    padding-right: 20px; /* nudge both columns to the right */
}

.topbar-left i { margin-right: 6px; color: #c8e6c9; }
.topbar-left .sep { margin: 0 10px; opacity: 0.6; }

.topbar-right a {
    color: #e8f5e9;
    text-decoration: none;
    margin-left: 16px;
    opacity: 0.9;
}
.topbar-right a:hover { opacity: 1; text-decoration: underline; }

/* Divider between topbar columns */
.topbar-right {
    border-left: 1px solid rgba(255,255,255,0.4);
    padding-left: 16px;
    margin-left: 8px;
}

.topbar-left b,
.topbar-right b {
    font-weight: 700;
}

.topbar-left a,
.topbar-right a {
    color: #e8f5e9;
}

.navbar {
    background-color: #1a1a1a;
    padding: 0.5rem 0; /* reduced header height */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Home page orange nav variant */
.nav-orange {
    background: linear-gradient(135deg, #ff9800, #ff6d00);
    top: 56px;
}

/* Ensure hero/banner starts below fixed headers on pages using topbar + orange nav */
.has-topbar .banner { margin-top: 104px; }

.nav-orange .nav-link:hover,
.nav-orange .nav-link.active { color: #1a1a1a; background: rgba(255,255,255,0.15); border-radius: 4px; }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 1rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4CAF50;
}

.nav-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: #333;
    padding: 0.75rem 1rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #4CAF50;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.banner-slider {
    height: 100%;
    position: relative;
}

.banner-slider { aspect-ratio: 1920 / 600; }

.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content { display: none; }

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.banner-prev,
.banner-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.banner-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4CAF50;
    transform: scale(1.2);
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(135deg, #ff9800, #ff6d00);
    color: #fff;
    padding: 1rem 0;
}

.news-ticker-wrapper {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 1rem;
}

.news-ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.news-text {
    flex: 1;
    overflow: hidden;
}

.news-text marquee {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
    gap: 2rem;
    align-items: center;
}

.about-text { grid-area: text; }
.about-image { grid-area: image; }

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    margin-bottom: 3rem;
}

.title-header h5 {
    color: #4CAF50;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.title-header .title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.services-carousel::-webkit-scrollbar {
    height: 8px;
}

.services-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.services-carousel::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

.service-item {
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* square placeholder for 500x500 images */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76,175,80,0.8), rgba(76,175,80,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
}

.service-info h5 {
    margin-bottom: 1rem;
    color: #333;
}

.service-info h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-info h5 a:hover {
    color: #4CAF50;
}

.service-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-info {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.statistics-content {
    padding: 2rem 0;
}

.statistics-content .section-title .title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 0;
}

.statistics-image {
    position: relative;
    text-align: center;
}

.statistics-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #4CAF50;
}

.statistics-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #4CAF50;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #4CAF50;
    color: #fff;
}

.testimonials-section .section-title .title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-section .title-header h5 {
    color: rgba(255,255,255,0.8);
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
}

.testimonial-item {
    min-width: 350px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
}

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

.testimonial-caption h5 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-caption p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #333;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #45a049;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff9800;
}

.footer-logo {
    display: flex;
    align-items: flex-start; /* stick to top */
    justify-content: flex-start; /* align left */
}

.footer-logo img {
    height: 96px; /* increased size */
    width: auto;
    display: block;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Footer service list with thumbnails */
.footer-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-services img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ff9800;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff9800;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #ff9800;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.8;
}

/* Splash Screen */
#splash {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    transition: opacity 0.35s ease;
}

#splash img {
    width: auto;
    height: 140px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}

.splash-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Splash loader */
#splash .loader {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    max-width: 70vw;
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 16px;
}

#splash .loader-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #ff6d00);
    animation: splashLoad 2s linear forwards;
}

@keyframes splashLoad {
    from { width: 0; }
    to { width: 100%; }
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 3rem;
}

/* Services two-column layout */
.page-content .service-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.page-content .service-two-col .service-col.image {
    display: flex;
    justify-content: center;
}

.page-content .service-two-col .service-col.image img {
    width: 100%;
    max-width: 520px; /* reduce visual size */
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.page-content .service-two-col .service-col.text {
    line-height: 1.8;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.content-section p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Two-column unordered lists */
.two-col-list {
    columns: 2;
    column-gap: 2rem;
    list-style: disc inside;
}

@media (max-width: 768px) {
    .two-col-list {
        columns: 1;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #4CAF50;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #4CAF50;
    font-size: 0.9rem;
    margin: 0;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-logo {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

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

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Additional Styles for New Pages */

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.value-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #4CAF50;
    color: #fff;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Certifications List */
.certifications-list {
    list-style: none;
    padding: 0;
}

.certifications-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.certifications-list li:last-child {
    border-bottom: none;
}

.certifications-list i {
    color: #4CAF50;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    background: #4CAF50;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.step-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Quality Features */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quality-feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.quality-feature i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Responsibilities Grid */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsibility-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.responsibility-item h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.responsibility-item ul {
    list-style: none;
    padding: 0;
}

.responsibility-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 1.5rem;
}

.responsibility-item li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.area-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.area-category h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.area-category ul {
    list-style: none;
    padding: 0;
}

.area-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 1.5rem;
}

.area-category li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.industry-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Client Placeholder */
.client-placeholder {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-placeholder i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Success Stories */
.success-stories {
    margin-top: 2rem;
}

.story-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Client Benefits */
.client-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Testimonials Preview */
.testimonials-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.testimonial-preview p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #4CAF50;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Satisfaction Stats */
.satisfaction-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Author Avatar */
.author-avatar {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #4CAF50;
    background: transparent;
    color: #4CAF50;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4CAF50;
    color: #fff;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-method i {
    font-size: 2rem;
    color: #4CAF50;
    margin-top: 0.5rem;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.privacy-link,
.terms-link {
    color: #4CAF50;
    text-decoration: none;
}

.privacy-link:hover,
.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.submit-btn i {
    margin-right: 0.5rem;
}

/* Service Areas Grid */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.area-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.area-item h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.area-item ul {
    list-style: none;
    padding: 0;
}

.area-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 1.5rem;
}

.area-item li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Emergency Contact */
.emergency-contact {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.emergency-item i {
    font-size: 3rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.emergency-phone:hover {
    background: #d32f2f;
}

.response-time {
    color: #4CAF50;
    font-weight: bold;
    margin-top: 1rem;
}

/* Map Container */
.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #333;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 126px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #2d2d2d;
        margin-top: 0.5rem;
        border-radius: 5px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-two-col {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "text";
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .gallery-filter {
        justify-content: center;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Stack two-column services on mobile */
    .page-content .service-two-col {
        grid-template-columns: 1fr;
    }
    .page-content .service-two-col .service-col.image img {
        max-width: 100%;
        aspect-ratio: auto;
    }

    .testimonials-preview {
        grid-template-columns: 1fr;
    }

    .story-stats {
        justify-content: center;
    }

    .emergency-info {
        grid-template-columns: 1fr;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .banner-nav {
        padding: 0 1rem;
    }

    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
    }

    .services-carousel {
        gap: 1rem;
    }

    .service-item {
        min-width: 280px;
    }

    .testimonials-carousel {
        gap: 1rem;
    }

    .testimonial-item {
        min-width: 300px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .statistics-overlay {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .services-overview h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
}
