 /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        /* 1. Header Logic (Existing) */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            height: 80px;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo a {
            font-size: 24px;
            font-weight: 800;
            text-decoration: none;
            color: #333;
            text-transform: uppercase;
        }
        .logo span { color: #007bff; }
		
		.main-header img{margin-top:7px; width:100%; max-width: 120px;}

        .nav-links {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 10px 15px;
            transition: color 0.3s;
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icons a {
            color: #333;
            font-size: 18px;
        }

        .menu-checkbox, .hamburger { display: none; }
		
		/* n]Navbar active link styles */
		/* Navigation Styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #555; /* Default color */
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #007bff;
}

/* The Active State */
.nav-link.active {
    color: #007bff; /* Brand Blue */
    font-weight: 700;
    border-bottom: 2px solid #007bff;
}

       
 
 /* Hero Video Section */
        .hero-video-section {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px); 
            overflow: hidden;
        }

        .bg-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Middle Aligned Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Darker overlay for text readability */
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .overlay-content {
            max-width: 800px; /* Prevents text from stretching too wide */
        }

        .overlay-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .overlay-content p {
            font-size: 1.25rem;
            margin-bottom: 35px;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Styled Button */
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background-color: transparent;
            border-color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
		
		
		/* Value Section Container */
.value-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-header span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Value Card */
.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: left;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #007bff;
}

.value-card i {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 12px;
}

.value-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}



/* Services Snapshot Section */
.services-snapshot {
    padding: 100px 20px;
    background-color: #fcfcfc; /* Subtle contrast from the white value section */
    font-family: 'Segoe UI', sans-serif;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #222;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-box {
    background: #fff;
    padding: 40px;
    border-radius: 4px; /* Professional sharp-edge look */
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-box:hover {
    border-bottom: 4px solid #007bff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-box i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 25px;
    display: inline-block;
}

.service-box h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Centered Button Wrapper */
.services-btn-wrapper {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background-color: #007bff;
}


/* About Preview Section */
.about-preview {
    padding: 100px 50px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side: Text Content */
.about-content {
    flex: 1;
}

.about-content span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-content p.highlight {
    font-style: italic;
    color: #333;
    font-weight: 500;
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin-top: 30px;
}

/* Right Side: Visual Element */
.about-visual {
    flex: 1;
    position: relative;
}

/* Stylized Graphic Box */
.experience-card {
    background: #222;
    color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0px #007bff; /* Creative offset shadow */
}

.experience-card h4 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #007bff;
}

.experience-card p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Know More Button */
.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #0056b3;
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-preview { padding: 60px 20px; }

    .about-content p.highlight {
        text-align: left;
    }

    .experience-card {
        padding: 40px;
    }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-header h2 { font-size: 2rem; }
    .service-box { padding: 30px; }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-header h2 { font-size: 1.8rem; }
    .value-section { padding: 50px 15px; }
}
		
        /* 3. Mobile Logic (Existing) */
        @media (max-width: 992px) {
            .social-icons { display: none; }
            .hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; cursor: pointer; }
            .line { width: 100%; height: 3px; background-color: #333; border-radius: 10px; transition: all 0.3s ease-in-out; }

            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                flex-direction: column;
                align-items: center;
                background: white;
                transition: max-height 0.4s ease-in-out;
            }

            .menu-checkbox:checked ~ .nav-links { max-height: 500px; }
            .nav-links li { width: 100%; text-align: center; }
            .nav-links li a { display: block; padding: 20px 0; }

            /* Sequential Saturation */
            .nav-links li:nth-child(1) { background-color: hsl(210, 5%, 96%); }
            .nav-links li:nth-child(2) { background-color: hsl(210, 15%, 93%); }
            .nav-links li:nth-child(3) { background-color: hsl(210, 30%, 90%); }
            .nav-links li:nth-child(4) { background-color: hsl(210, 45%, 87%); }
            .nav-links li:nth-child(5) { background-color: hsl(210, 60%, 84%); }

            /* Hamburger Animation */
            .menu-checkbox:checked + .hamburger .line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            .menu-checkbox:checked + .hamburger .line:nth-child(2) { opacity: 0; }
            .menu-checkbox:checked + .hamburger .line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
        }
		
		
		
		/* Trust Section Styling */
.trust-section {
    padding: 100px 20px;
    background-color: #f8f9fa; /* Light grey for a clean, stable look */
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
}

.trust-section span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.trust-section h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.trust-section p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Satisfaction Badge */
.satisfaction-standard {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    margin-top: 20px;
}

.satisfaction-standard i {
    font-size: 1.5rem;
    color: #28a745; /* Green for success/satisfaction */
}

.satisfaction-standard span {
    color: #333;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-section { padding: 60px 20px; }
    .trust-section h2 { font-size: 1.8rem; }
    .trust-section p { font-size: 1rem; }
    .satisfaction-standard {
        padding: 15px 25px;
        flex-direction: column;
        border-radius: 20px;
        gap: 10px;
    }
}



/* Work Process Section */
.work-process {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-header {
    margin-bottom: 70px;
}

.process-header span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.process-header h2 {
    font-size: 2.5rem;
    color: #222;
}

/* Steps Grid */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Numeric Circle */
.step-number {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-item h3 {
    font-size: 1.1rem;
    color: #007bff;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.step-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
}

/* Connecting Line (Desktop) */
.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

/* Footer text */
.process-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.process-footer p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .steps-wrapper::before {
        display: none; /* Hide horizontal line on mobile */
    }

    .step-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Strong CTA Section */
.strong-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.strong-cta span {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 15px;
}

.strong-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.strong-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Button Group Styling */
.cta-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #f8f9fa;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-or {
    font-weight: 500;
    font-style: italic;
    opacity: 0.8;
}

.btn-secondary {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-bottom-color: #ffffff;
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .strong-cta { padding: 80px 20px; }
    .strong-cta h2 { font-size: 2.2rem; }
    .cta-button-group {
        flex-direction: column;
        gap: 25px;
    }
}

/* Contact Preview Section */
.contact-preview {
    padding: 100px 50px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left Side: Text and Info */
.contact-info-block {
    flex: 1.5;
}

.contact-info-block span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.contact-info-block p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Info Details (Email/Phone) */
.contact-details {
    display: flex;
    gap: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    font-size: 1.4rem;
    color: #007bff;
    margin-top: 5px;
}

.detail-item h4 {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.detail-item a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.detail-item a:hover {
    color: #007bff;
}

/* Right Side: Button */
.contact-action {
    flex: 1;
    text-align: right;
}

.final-contact-btn {
    display: inline-block;
    padding: 18px 50px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.final-contact-btn:hover {
    background-color: #007bff;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
    }

    .contact-action {
        text-align: center;
    }
}


/* Footer Section */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 50px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Column 1: Brand */
.footer-col h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-col h2 span {
    color: #007bff;
}

.footer-col p {
    color: #999;
    line-height: 1.6;
    font-size: 1rem;
}

/* Column 2 & 3 Headers */
.footer-col h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* Links List */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

/* Copyright Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px 30px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Common Styles for Buttons */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Specific */
.whatsapp-btn {
    background-color: #25D366;
}

/* Back to Top Specific */
.back-to-top {
    background-color: #007bff;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: all 0.4s ease;
}

/* Class to show Back to Top when scrolling */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* About us page */
.about-hero {
    padding: 100px 50px;
    background-color: #fcfcfc;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.about-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero span {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-hero { padding: 80px 20px; }
    .about-hero h1 { font-size: 2.2rem; }
}

/* Approach Section */
.approach-section {
    padding: 100px 50px;
    background: #fff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.approach-text { flex: 1.2; }
.approach-list { flex: 1; background: #f9f9f9; padding: 40px; border-radius: 10px; }

.approach-text h2 { font-size: 2.2rem; color: #222; margin-bottom: 20px; }
.approach-text p { font-size: 1.1rem; color: #666; line-height: 1.7; margin-bottom: 20px; }

.approach-list h3 { font-size: 1.2rem; margin-bottom: 25px; color: #333; border-bottom: 2px solid #007bff; display: inline-block; padding-bottom: 5px; }

.approach-item { display: flex; gap: 15px; margin-bottom: 20px; }
.approach-item i { color: #007bff; margin-top: 5px; }
.approach-item p { font-size: 1rem; color: #444; font-weight: 500; margin: 0; }

@media (max-width: 992px) {
    .approach-container { flex-direction: column; gap: 40px; }
    .approach-section { padding: 60px 20px; }
}

/* Mission Section */
.mission-section {
    padding: 100px 50px;
    background-color: #222;
    color: #fff;
    text-align: center;
}

.mission-container { max-width: 800px; margin: 0 auto; }

.mission-section h2 { font-size: 2.2rem; margin-bottom: 20px; }
.mission-section p { font-size: 1.2rem; opacity: 0.8; line-height: 1.6; }

@media (max-width: 768px) {
    .mission-section { padding: 60px 20px; }
}

/* Expectations Grid */
.expectations-section {
    padding: 100px 50px;
    background: #fff;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.expect-card {
    padding: 30px;
    border-left: 3px solid #eee;
    transition: 0.3s;
}

.expect-card:hover { border-left-color: #007bff; background: #fcfcfc; }

.expect-card h4 { font-size: 1.1rem; color: #222; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.expect-card p { color: #666; font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 768px) {
    .expectations-section { padding: 60px 20px; }
}


/* Services PAGE */
.services-hero {
    padding: 100px 50px;
    background-color: #fcfcfc;
    text-align: center;
}
.services-hero-inner { max-width: 800px; margin: 0 auto; }
.services-hero span { color: #007bff; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.services-hero h1 { font-size: 3rem; color: #222; margin-bottom: 25px; }
.services-hero p { font-size: 1.2rem; color: #666; line-height: 1.6; }

@media (max-width: 768px) {
    .services-hero { padding: 60px 20px; }
    .services-hero h1 { font-size: 2.2rem; }
}

/* Service Detailed Blocks */
.service-detail-section { padding: 80px 50px; background: #fff; }
.service-detail-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 80px; margin-bottom: 80px; }
.service-detail-container:last-child { border-bottom: none; margin-bottom: 0; }

.service-info h2 { font-size: 2.2rem; color: #222; margin-bottom: 20px; }
.service-info p { font-size: 1.1rem; color: #555; line-height: 1.7; margin-bottom: 30px; }

.service-specs { display: flex; gap: 30px; }
.spec-list { flex: 1; }
.spec-list h4 { font-size: 0.9rem; text-transform: uppercase; color: #007bff; margin-bottom: 15px; letter-spacing: 1px; }
.spec-list ul { list-style: none; }
.spec-list ul li { font-size: 0.95rem; color: #444; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.spec-list ul li::before { content: "→"; color: #007bff; font-weight: bold; }

@media (max-width: 992px) {
    .service-detail-container { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-section { padding: 60px 20px; }
}

/* Service CTA */
.service-footer-cta {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}
.service-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.btn-solid { padding: 15px 35px; background: #007bff; color: #fff; text-decoration: none; border-radius: 5px; font-weight: 600; transition: 0.3s; }
.btn-outline { padding: 15px 35px; border: 2px solid #007bff; color: #007bff; text-decoration: none; border-radius: 5px; font-weight: 600; transition: 0.3s; }
.btn-solid:hover { background: #0056b3; }
.btn-outline:hover { background: #007bff; color: #fff; }

@media (max-width: 600px) {
    .service-cta-btns { flex-direction: column; align-items: center; }
}


/* Contact Page Styles */
.contact-page-header {
    padding: 100px 50px;
    background-color: #fcfcfc;
    text-align: center;
}
.contact-page-header h1 { font-size: 3rem; color: #222; margin-bottom: 20px; }
.contact-page-header p { font-size: 1.2rem; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.contact-grid-section {
    padding: 80px 50px;
    background: #fff;
}
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-item {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: 0.3s;
}
.contact-item:hover { background: #f1f1f1; }
.contact-item i { font-size: 1.5rem; color: #007bff; margin-bottom: 20px; }
.contact-item h4 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 15px; color: #333; }
.contact-item p, .contact-item a { color: #555; text-decoration: none; font-size: 1rem; line-height: 1.6; display: block; }

@media (max-width: 768px) {
    .contact-page-header { padding: 60px 20px; }
    .contact-grid-section { padding: 40px 20px; }
}

/* Contact Form & Map */
.form-map-section {
    padding: 80px 50px;
    background: #fff;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.form-side { flex: 1.2; }
.map-side { flex: 1; }

.form-side h2, .map-side h2 { font-size: 2rem; margin-bottom: 20px; color: #222; }
.form-side p, .map-side p { color: #666; margin-bottom: 30px; }

/* Form Styling */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: #444; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: #007bff; }

.submit-btn {
    grid-column: span 2;
    padding: 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}
.submit-btn:hover { background: #0056b3; }

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .form-map-section { flex-direction: column; padding: 40px 20px; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .submit-btn { grid-column: span 1; }
}

.contact-closing {
    padding: 100px 20px;
    text-align: center;
    background: #f8f9fa;
}
.contact-closing h3 { font-size: 1.8rem; color: #333; margin-bottom: 10px; font-weight: 500; }
.contact-closing p { font-size: 1.5rem; color: #007bff; font-weight: 700; }

/* Blog Page Header */
.blog-hero {
    padding: 100px 50px;
    background-color: #fcfcfc;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.blog-hero-inner { max-width: 800px; margin: 0 auto; }
.blog-hero span { color: #007bff; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.blog-hero h1 { font-size: 3rem; color: #222; margin-bottom: 25px; }
.blog-hero p { font-size: 1.2rem; color: #666; line-height: 1.6; }
.blog-hero ul { list-style: none; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 25px; }
.blog-hero ul li { background: #e9f5ff; color: #007bff; padding: 8px 15px; border-radius: 5px; font-size: 0.95rem; font-weight: 500; }

/* Blog Posts Grid */
.blog-posts-section {
    padding: 80px 50px;
    background: #fff;
}
.blog-intro-line {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.blog-intro-line p {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    font-style: italic;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 25px;
    flex-grow: 1; /* Ensures content area takes up available space */
    display: flex;
    flex-direction: column;
}
.blog-card-content h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes the button to the bottom */
}
.blog-card-content a {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.blog-card-content a:hover { text-decoration: underline; }

/* Blog Optional CTA */
.blog-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
}
.blog-cta h2 { font-size: 2.5rem; margin-bottom: 15px; }
.blog-cta p { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.9; }
.blog-cta .btn-white {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.blog-cta .btn-white:hover { background-color: #f0f0f0; transform: translateY(-3px); }


@media (max-width: 768px) {
    .blog-hero { padding: 60px 20px; }
    .blog-hero h1 { font-size: 2.2rem; }
    .blog-posts-section { padding: 40px 20px; }
    .blog-intro-line p { font-size: 1.2rem; }
    .blog-cta h2 { font-size: 2rem; }
}