
/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #4a4a4a;
        }
        
        .navigation ul {
            display: flex;
            list-style: none;
        }
        
        .navigation ul li {
            margin-left: 20px;
        }
        
        .navigation ul li a {
            text-decoration: none;
            color: #4a4a4a;
            transition: color 0.3s ease;
        }
        
        .navigation ul li a:hover {
            color: #ff6b6b;
        }
        
        /* Main Content Styles */
        .site-content {
            padding: 40px 0;
        }
        
        /* Marquee Styles */
        .marquee-container {
            background-color: #f8f9fa;
            padding: 10px 0;
            overflow: hidden;
        }
        
        marquee {
            font-size: 15px;
            font-weight: bold;
        }
        
        marquee span {
            font-size: 18px;
            font-weight: bold;
        }
        
        /* Hero Section */
        .hero-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 40px 0;
        }
        
        .hero-content {
            flex: 1;
            min-width: 300px;
        }
        
        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: right;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
        }
        
        .hero-title {
            font-size: 28px;
            color: #4a4a4a;
            margin-bottom: 15px;
        }
        
        .hero-description {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        /* Button Styles */
        .button {
            display: inline-block;
            background-color: #ff6b6b;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .button:hover {
            background-color: #ff5252;
        }
        
        .button-icon {
            margin-left: 8px;
        }

        
        /* Rating Section */
        .rating-section {
            margin: 20px 0;
        }
        
        .star-rating {
            color: #ffd700;
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        /* Contact Info */
        .contact-info {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        
        .contact-icon {
            background-color: #ff6b6b;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .contact-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }
        
        .contact-number {
            font-size: 18px;
            font-weight: bold;
        }
        
        /* About Us Section */
        .about-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .about-title {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .about-description {
            margin-bottom: 20px;
        }
        
        /* Services Section */
        .services-section {
            padding: 60px 0;
        }
        
        .services-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .service-item {
            flex: 1;
            min-width: 300px;
            margin: 15px;
            text-align: center;
        }
        
        .service-icon {
            margin-bottom: 15px;
        }
        
        .service-icon svg {
            width: 50px;
            height: 50px;
            fill: #ff6b6b;
        }
        
        .service-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .pricing-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .pricing-image {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .pricing-image img {
            max-width: 100%;
            height: auto;
        }
        
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .pricing-item {
            flex: 1;
            min-width: 200px;
            margin: 15px;
            text-align: center;
            padding: 20px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .pricing-amount {
            font-size: 24px;
            color: #ff6b6b;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .pricing-type {
            font-size: 18px;
        }
        
        /* Video Section */
        .video-section {
            padding: 60px 0;
        }
        
        .video-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        
        /* Call to Action Section */
        .cta-section {
            padding: 60px 0;
            background-color: #ff6b6b;
            text-align: center;
            color: white;
        }
        
        .cta-title {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .cta-description {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            color: #ff6b6b;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #f1f1f1;
        }
        
        /* Footer Styles */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff6b6b;
        }
        
        .footer-contact-info {
            margin-bottom: 10px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: #ff6b6b;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #444;
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #ff6b6b;
        }
        
        .social-link svg {
            width: 20px;
            height: 20px;
            fill: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #444;
        }
        
        /* Form Styles */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
        	color: #555;
            display: block;
            margin-bottom: 5px;
            font-weight: normal;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        .form-submit {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .form-submit:hover {
            background-color: #ff5252;
        }

        /* Book Now */
        
	  /* Style for the slider track (background) */
	  input[type=range] {
	    -webkit-appearance: none;
	    width: 100%;
	    height: 8px;
	    background: white;
	    border: 1px solid #ddd;
	    border-radius: 5px;
	    margin: 10px 0;
	    padding: 0px;
	  }
	  
	  /* Style for the slider thumb (the part you drag) */
	  input[type=range]::-webkit-slider-thumb {
	    -webkit-appearance: none;
	    appearance: none;
	    width: 20px;
	    height: 20px;
	    background: #ff7300;
	    border-radius: 50%;
	    cursor: pointer;
	  }
	  
	  input[type=range]::-moz-range-thumb {
	    width: 20px;
	    height: 20px;
	    background: #ff7300;
	    border-radius: 50%;
	    cursor: pointer;
	  }
	  
	  /* Style for the filled part of the track (progress) */
	  input[type=range]::-webkit-slider-runnable-track {
	    height: 20px;
	    border-radius: 5px;
	  }
	  
	  input[type=range]::-moz-range-progress {
	    background-color: #ff7300;
	    height: 8px;
	    border-radius: 5px;
	  }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            .navigation ul {
                margin-top: 15px;
            }
            
            .navigation ul li {
                margin-left: 10px;
                margin-right: 10px;
            }
            
            .hero-content, .hero-image {
                text-align: center;
            }
            
            .service-item, .pricing-item {
                min-width: calc(50% - 30px);
            }
        }
        
        @media (max-width: 576px) {
            .service-item, .pricing-item {
                min-width: 100%;
            }
        }

        /* Thank -you */

        .thank-you-container {
            text-align: center;
            max-width: 800px;
            margin: 50px auto;
            padding: 40px 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        
        .success-icon {
            color: #4CAF50;
            font-size: 80px;
            margin-bottom: 20px;
        }
        
        .thank-you-title {
            color: #333;
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .thank-you-message {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .redirect-message {
            font-size: 16px;
            color: #888;
            margin-top: 30px;
            font-style: italic;
        }
        
        .countdown {
            font-weight: bold;
            color: #4CAF50;
        }
        
        .button {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .button:hover {
            background-color: #45a049;
        }