        /* Modern Typography */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');
        
        :root {
            --primary: #2563EB;
            --primary-dark: #1E40AF;
            --accent: #F97316;
            --text: #1E293B;
            --text-light: #64748B;
            --bg-light: #F8FAFC;
            --bg-white: #FFFFFF;
            --border: #E2E8F0;
            --success: #10B981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--bg-light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo-icon {
            background-color: var(--primary);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        
        .header-cta {
            background-color: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            display: inline-block;
        }
        
        .header-cta:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
            background-color: var(--bg-white);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        .hero h2 {
            font-size: 24px;
            color: var(--text-light);
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .hero-img {
            position: relative;
        }
        
        .hero-graphic {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            /*animation: float 6s ease-in-out infinite;*/
            position: relative;
            /*background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);*/
            background: linear-gradient(135deg, rgba(0, 0, 255, 0.5) 0%, rgba(255, 0, 0, 0.5) 100%), url('../images/cityscapeAtNight.png');
            /*background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%), url('../images/cityscapeAtNight.png');;*/
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .code-snippet {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            width: 80%;
            height: 70%;
            position: relative;
            font-family: monospace;
            color: white;
            font-size: 14px;
            line-height: 1.4;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .code-snippet::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 10px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--accent);
            box-shadow: 25px 0 0 rgba(255, 255, 255, 0.8), 50px 0 0 rgba(16, 185, 129, 0.8);
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .pattern {
            position: absolute;
            opacity: 0.05;
            z-index: 1;
        }
        
        .pattern-1 {
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .pattern-2 {
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        /* Introduction Section */
        .intro {
            background-color: var(--bg-white);
            padding: 60px 0;
            position: relative;
        }
        
        .intro-heading {
            font-size: 34px;
            margin-bottom: 30px;
            max-width: 800px;
        }
        
        .intro p {
            font-size: 18px;
            margin-bottom: 20px;
            max-width: 800px;
        }
        
        /* Key Features */
        .features {
            padding: 80px 0;
            background-color: var(--bg-light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: var(--bg-white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background-color: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        /* Projects Section */
        .projects {
            background-color: var(--bg-white);
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            background-color: var(--bg-light);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            padding: 30px;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border);
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .project-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 24px;
        }
        
        .project-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .project-card p {
            color: var(--text-light);
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .project-result {
            display: flex;
            align-items: center;
            background-color: rgba(16, 185, 129, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
            margin-top: 10px;
        }
        
        .project-result i {
            color: var(--success);
            margin-right: 10px;
            font-size: 18px;
        }
        
        .project-result p {
            color: var(--success);
            font-weight: 600;
            margin: 0;
            font-size: 15px;
        }
        
        /* Approach Section */
        .approach {
            background-color: var(--bg-light);
            padding: 80px 0;
        }
        
        .approach-text {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .approach-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .approach-step {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            border: 1px solid var(--border);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        
        .approach-step h3 {
            margin-bottom: 15px;
            margin-top: 10px;
            font-size: 20px;
        }
        
        .approach-step p {
            color: var(--text-light);
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--bg-white);
            padding: 80px 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background-color: var(--bg-light);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            border: 1px solid var(--border);
        }
        
        .testimonial-card::before {
            content: "\201C";
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.1;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin: 0;
        }
        
        .author-info p {
            color: var(--text-light);
            font-size: 14px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--bg-light);
            padding: 80px 0;
        }
        
        .services-intro {
            margin-bottom: 40px;
        }
        
        .services-intro h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .service-item {
            background-color: var(--bg-white);
            border-radius: 12px;
            padding: 20px 25px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-color: var(--primary);
        }
        
        .service-icon {
            color: var(--primary);
            font-size: 20px;
        }
        
        .service-name {
            font-weight: 600;
            font-size: 16px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.05;
            background-image: radial-gradient(circle at 20% 30%, white 0%, transparent 10%),
                             radial-gradient(circle at 80% 70%, white 0%, transparent 10%),
                             radial-gradient(circle at 40% 80%, white 0%, transparent 10%),
                             radial-gradient(circle at 60% 20%, white 0%, transparent 10%);
            background-size: 60px 60px;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        .cta-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .cta-feature {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-feature i {
            color: var(--accent);
        }
        
        .cta-button {
            background-color: var(--accent);
            color: white;
            padding: 16px 40px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
        }
        
        .session-details {
            margin-top: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            text-align: left;
        }
        
        .session-details h3 {
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .session-list {
            margin-bottom: 20px;
        }
        
        .session-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .session-icon {
            color: var(--accent);
            font-size: 20px;
            margin-top: 2px;
        }
        
        .session-note {
            font-style: italic;
            opacity: 0.8;
            margin-top: 20px;
        }
        
        /* Footer */
        footer {
            background-color: var(--bg-white);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-logo {
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-text {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .copyright {
            color: var(--text-light);
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero h2 {
                font-size: 20px;
            }
            
            .features-grid, 
            .approach-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .features-grid, 
            .approach-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .cta h2 {
                font-size: 30px;
            }
            
            .cta-features {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero h2 {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .cta-button {
                width: 100%;
            }
        }
        
        /* Custom bullets for lists */
        .list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 15px;
        }
        
        .bullet-icon {
            color: var(--primary);
            font-size: 20px;
            flex-shrink: 0;
        }
        
        /* Utility classes */
        .mb-40 {
            margin-bottom: 40px;
        }
        
        .text-accent {
            color: var(--accent);
            font-weight: 600;
        }
        
        .text-emphasis {
            font-weight: 700;
            font-size: 1.1em;
        }
        
        /* Booking Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            overflow: auto;
        }
        
        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 30px;
            border: 1px solid #888;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }
        
        .modal-content h2 {
            font-size: 1.5rem;
            margin: 25px 0 20px;
            text-align: center;
        }
        
        .close {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #f8f9fa;
            z-index: 2;
        }
        
        .close:hover {
            color: #333;
            background-color: #e9ecef;
        }
        
        .booking-feedback {
            padding: 12px 20px;
            border-radius: 6px;
            margin: 0 0 20px;
            font-size: 14px;
            text-align: center;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        .booking-feedback.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .booking-feedback.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #333;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 60px;
        }
        
        .submit-button {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .submit-button:hover {
            background-color: var(--primary-dark);
        }
        
        .submit-button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .modal-content {
                margin: 10% auto;
                padding: 15px;
                width: 95%;
            }
        }