        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

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

        .section-subtitle {
            font-size: 1.2rem;
            color: #555;
            max-width: 600px;
            margin: -1.5rem auto 3rem auto;
        }


        /* --- Gradient Text Utility --- */
        .gradient-text {
            background: linear-gradient(90deg, #8A2BE2, #4169E1, #00FFFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- Header & Navigation --- */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #212529;
            text-decoration: none;
        }

        .navbar nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 2rem;
        }

        .navbar nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar nav a:hover,
        .navbar nav a.active {
            color: #4169E1;
        }

        /* --- Main Hero Section --- */
        .hero-section {
            margin-top: 75px;
            margin-bottom: 75px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 6rem 0;
            background-color: #f8f9fa;
        }

        .hero-section h1 {
            margin-top: 75px;
            margin-bottom: 75px;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            color: #212529;
            margin-top: 0;
            margin-bottom: 1.5rem;
        }

        .hero-section p {
            font-size: 1.25rem;
            color: #555;
            max-width: 700px;
            margin-bottom: 2.5rem;
            margin-left: 40px;
        }

        /* --- Call to Action Button --- */
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, #8A2BE2, #4169E1);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
        }

        /* --- Team Section --- */
        .team-section {
            padding: 5rem 0;
            text-align: center;
            background-color: #fff;
        }

        .team-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #212529;
            margin-bottom: 3rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .team-card {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .team-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .team-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 4px solid #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .team-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 0.25rem 0;
            color: #212529;
        }

        .team-card p {
            font-size: 1rem;
            color: #555;
            margin: 0;
        }

        /* --- About Section --- */
        .about-section {
            padding: 6rem 0;
            background-color: #f8f9fa;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .about-image img {
            max-width: 250px;
            width: 100%;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
            border-radius: 12px;
        }

        .about-content {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            transition-delay: 0.2s;
        }

        .about-image.visible,
        .about-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #212529;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .about-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-content li {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }

        .about-content li::before {
            content: '✔';
            color: #4169E1;
            margin-right: 0.75rem;
            font-weight: bold;
        }

        /* --- Services Section --- */
        .services-section {
            padding: 5rem 0;
            text-align: center;
            background-color: #fff;
        }

        .services-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #212529;
            margin-bottom: 1.5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .service-card {
            background-color: #f8f9fa;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:nth-child(2) { transition-delay: 0.1s; }
        .service-card:nth-child(3) { transition-delay: 0.2s; }
        .service-card:nth-child(4) { transition-delay: 0.3s; }
        .service-card:nth-child(5) { transition-delay: 0.4s; }
        .service-card:nth-child(6) { transition-delay: 0.5s; }


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

        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem auto;
            background: linear-gradient(135deg, #8A2BE2, #4169E1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #212529;
            margin: 0;
        }

        .service-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(138, 43, 226, 0.85), rgba(65, 105, 225, 0.85));
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .service-card-overlay p {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-overlay p {
            transform: translateY(0);
        }

        /* --- Modern Contact Section Styles --- */
        .contact-section {
            padding: 6rem 0;
            background-color: #fff; /* Changed background for contrast */
            text-align: center;
        }
        
        .contact-section h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0 auto;
            text-align: left;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .contact-form.visible {
             opacity: 1;
            transform: translateY(0);
        }
        
        .form-group {
            position: relative;
            margin-bottom: 2.5rem; /* Increased spacing */
        }
        
        .form-group .form-input {
            width: 100%;
            border: 0;
            border-bottom: 2px solid #ccc;
            padding: 10px 0;
            font-size: 1.1rem;
            background-color: transparent;
            color: #333;
            transition: border-color 0.3s;
            box-sizing: border-box; 
        }
        
        .form-group .form-label {
            position: absolute;
            top: 10px;
            left: 0;
            font-size: 1.1rem;
            color: #999;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group .form-input:focus {
            outline: none;
            border-bottom-color: #4169E1;
        }

        .form-group .form-input:focus + .form-label,
        .form-group .form-input:not(:placeholder-shown) + .form-label {
            top: -15px;
            font-size: 0.9rem;
            color: #4169E1;
        }
        
         .form-group select.form-input:valid + .form-label {
            top: -15px;
            font-size: 0.9rem;
            color: #4169E1;
        }
        
        
         .form-group select.form-input {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999999%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
            background-repeat: no-repeat;
            background-position: right 10px top 50%;
            background-size: .65em auto;
            color: #999; 
        }

        .form-group select.form-input:valid {
            color: #333; 
        }
         .form-group select.form-input:focus {
             background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234169E1%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
         }

        .contact-form button {
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
        }

        /* NEW: Form status message */
        #form-status {
            margin-top: 1.5rem;
            text-align: center;
            font-weight: 500;
        }

        .status-success {
            color: #28a745;
        }

        .status-error {
            color: #dc3545;
        }


        /* --- Footer --- */
        .footer {
            background-color: #212529;
            color: #adb5bd;
            text-align: center;
            padding: 2rem 0;
        }

        /* --- Modal Styles --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 20, 40, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            width: 90%;
            max-width: 600px;
            position: relative;
            transform: translateY(-30px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1);
        }

        .modal-close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2.5rem;
            font-weight: 300;
            color: #aaa;
            background: none;
            border: none;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .modal-close-btn:hover {
            color: #333;
            transform: rotate(90deg);
        }

        #modalTitle {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 1rem;
            color: #212529;
        }

        #modalDescription {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
        }

        .price-range {
            background-color: #f8f9fa;
            border-left: 4px solid #4169E1;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
        }

        .price-range strong {
            color: #333;
        }

        #modalPrice {
            font-weight: 500;
            color: #4169E1;
        }
        
        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .about-grid {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.75rem;
            }
            .navbar .container {
                flex-direction: column;
                gap: 1rem;
            }
            .team-grid, .services-grid {
                grid-template-columns: 1fr;
            }
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-image {
                margin-bottom: 2rem;
            }
        }