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

        :root {
            --primary: #1a365d;
            --secondary: #e63946;
            --accent: #2a9d8f;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

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

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-primary {
            background-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: #0d284c;
        }
        .nav-btn { background: var(--accent); color: var(--primary) !important; padding: 8px 25px; border-radius: 4px; font-weight: 700; }
        .nav-btn:hover { background: white; }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1589652717521-10c0d092dea9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: 70px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

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

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .stat-item h4 {
            font-size: 2rem;
            color: var(--secondary);
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        /* Services Section */
        .services {
            background-color: white;
        }

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

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.95)), url('https://images.unsplash.com/photo-1560264280-88b68371db39?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .stats h2 {
            color: white;
        }

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

        .stat-box {
            padding: 30px;
        }

        .stat-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .stat-box h3 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        /* Career Section */
        .career {
            background-color: var(--light);
        }

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

        .career-text {
            flex: 1;
        }

        .career-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .career-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .career-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        /* News Section */
        .news-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .news-date {
            background-color: var(--primary);
            color: white;
            padding: 10px 15px;
            display: inline-block;
            font-weight: 600;
            border-radius: 0 0 5px 0;
        }

        .news-content {
            padding: 25px;
        }

        .news-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .news-content p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }

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

        .footer-col h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary);
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
            transition: var(--transition);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        /* --- PLANNER (AUTOMATION UI) --- */
.planner-section { background: var(--dark); padding: 4rem 0; color: white; }
.planner-box { display: flex; background: white; border-radius: 15px; overflow: hidden; max-width: 1000px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.planner-left { flex: 1; padding: 3rem; color: var(--dark); }
.planner-left h2 { margin-bottom: 15px; font-size: 1.8rem; color: var(--primary); }
.planner-left p { color: #64748b; margin-bottom: 30px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 2px solid #e2e8f0; border-radius: 5px; outline: none; }
.btn-calculate { width: 100%; background: var(--primary); color: white; border: none; padding: 15px; border-radius: 5px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-calculate:hover { background: #1e40af; }

.planner-right { flex: 1; background: var(--primary); padding: 3rem; display: flex; align-items: center; justify-content: center; position: relative; }
.default-msg { text-align: center; color: rgba(255,255,255,0.6); }
.default-msg i { font-size: 4rem; margin-bottom: 15px; }
.result-content { text-align: center; width: 100%; animation: fadeIn 0.5s; }
.result-content h3 { color: var(--accent); margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.stat-grid { display: flex; justify-content: space-around; margin-bottom: 30px; }
.stat { background: rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; min-width: 80px; }
.stat span { display: block; font-size: 2.5rem; font-weight: 700; color: white; }
.stat small { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }
.cost-est { font-size: 1.2rem; margin-bottom: 25px; background: rgba(0,0,0,0.2); padding: 10px; border-radius: 50px; }
.btn-apply { background: var(--accent); color: var(--primary); border: none; padding: 12px 30px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-apply:hover { transform: scale(1.05); background: white; }
/* --- HIRE FORM --- */
.hire-wrapper { display: flex; gap: 4rem; align-items: center; }
.hire-info { flex: 1; }
.hire-info h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--primary); }
.features-list { list-style: none; margin-bottom: 2rem; }
.features-list li { margin-bottom: 15px; font-size: 1.1rem; }
.features-list i { color: var(--accent); margin-right: 10px; }
.trust-logos { margin-top: 30px; border-top: 1px solid #e2e8f0; padding-top: 20px; }
.badges { display: flex; gap: 10px; margin-top: 10px; }
.badge { background: #e2e8f0; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: var(--primary); }

.hire-form { flex: 1; background: white; padding: 3rem; border-radius: 10px; border: 1px solid #e2e8f0; box-shadow: var(--shadow); }
.hire-form h3 { margin-bottom: 20px; color: var(--primary); }
.btn-submit { width: 100%; background: var(--accent); color: var(--primary); border: none; padding: 15px; border-radius: 5px; font-weight: 700; cursor: pointer; margin-top: 10px; }
.btn-submit:hover { background: #d97706; color: white; }
.success-msg { text-align: center; margin-top: 15px; color: #16a34a; font-weight: 600; }

footer { background: #000; color: #94a3b8; text-align: center; padding: 2rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    
    .planner-box { flex-direction: column; }
    .hire-wrapper { flex-direction: column; }
    
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .services-container,
            .news-container,
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content,
            .career-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .services-container,
            .news-container,
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 50px 0;
            }
        }