
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff6b00;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e05d00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff6b00;
        }
        
        /* Header Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #e05d00;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Solutions Section */
        .solutions-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .solutions-title {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .solutions-title h2 {
            font-size: 2.5rem;
            color: #f9f9f9;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .solution-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
        }
        
        .solution-card h3 {
            padding: 20px;
            background-color: #ff6b00;
            color: white;
        }
        
        .solution-card p {
            padding: 20px;
        }
        
        .solution-card .btn {
            margin: 0 20px 20px;
        }
        
        /* Services Section */
        .services-section {
            padding: 60px 0;
        }
        
        .services-title {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1351&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .services-title h2 {
            font-size: 2.5rem;
            color: antiquewhite;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .service-card {
            background: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,2.5,2.5);
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            background: #ff6b00;
            color: white;
        }
        
        .service-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ff6b00;
        }
        
        .service-card:hover i {
            color: white;
        }

        .service-card:hover h3 {
            color: white;
        }
        
        /* Booking Section */
        .booking-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .booking-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .booking-header i {
            font-size: 2rem;
            color: #ff6b00;
            margin-right: 15px;
        }
        
        .booking-header h2 {
            font-size: 2rem;
        }
        
        .booking-form .form-group {
            margin-bottom: 20px;
        }
        
        .booking-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .booking-form select, 
        .booking-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        /* Journey Section */
        .journey-section {
            padding: 60px 0;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        
        .journey-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .journey-h1,h2,h3 {
            color: #ff6b00;
        }
        
        .stat-item {
            padding: 30px;
        }
        
        .stat-item i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ff6b00;
        }
        
        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        /* Core Values Section */
        .values-section {
            padding: 60px 0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,2.5,2.5);
            transition: all 0.3s ease;
            padding: 30px;
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .value-card i {
            font-size: 2.5rem;
            color: #ff6b00;
            margin-bottom: 20px;
        }
        
        .why-choose-us {
            background-color: #f9f9f9;
            padding: 60px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,2.5,2.5);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .feature-card h3 {
            color: #ff6b00;
            margin-bottom: 15px;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 60px 0;
            background-color: #333;
            color: white;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 40px auto 0;
            overflow: hidden;
            position: relative;
        }
        
        .testimonial-slide {
            padding: 30px;
            text-align: center;
            display: none;
        }
        
        .testimonial-slide.active {
            display: block;
            animation: slideIn 0.5s ease;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .testimonial-slide p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .testimonial-slide .author {
            font-weight: bold;
            color: #ff6b00;
        }
        
        .slider-controls {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-controls button {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            cursor: pointer;
        }
        
        /* Clients Section */
        .clients-section {
            padding: 60px 0;
        }
        
        .clients-slider {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            margin-top: 40px;
            padding: 20px 0;
        }
        
        .client-logo {
            flex: 0 0 auto;
            margin: 0 20px;
            width: 150px;
            height: 100px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.1s ease;
        }
        
        .client-logo:hover {
            filter: grayscale(0%);
        }
        
        /* Contact Form Section */
        .contact-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,2.5,2.5);
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            height: 150px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px 20px;
            background-color: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
        }
        
        .faq-question.active:after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }

        .get-started h2 {
            color: #ffffff;
        }   
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: #ff6b00;
        }
        
        .social-icons {
            margin-bottom: 30px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .social-icons a:hover {
            color: #ff6b00;
        }
        
        .copyright {
            border-top: 1px solid #555;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            overflow: auto;
        }
        
        .modal-content {
            background-color: white;
            margin: 10% auto;
            padding: 30px;
            border-radius: 8px;
            max-width: 600px;
            position: relative;
            animation: modalOpen 0.4s ease;
        }
        
        @keyframes modalOpen {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
        }
        
        .close-modal:hover {
            color: #333;
        }