Changed around line 1
+ :root {
+ --primary-color: #2E3192;
+ --secondary-color: #1BFFFF;
+ --text-color: #333;
+ --light-bg: #f5f5f5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ margin: 0 1.5rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .login-btn {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .login-btn:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Hero Section */
+ #hero {
+ height: 100vh;
+ background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: white;
+ text-align: center;
+ padding: 0 1rem;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .booking-form {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ margin-top: 2rem;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1rem;
+ justify-content: center;
+ }
+
+ .booking-form input {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ flex: 1;
+ min-width: 250px;
+ }
+
+ #book-now {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ #book-now:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Features Section */
+ #features {
+ padding: 5rem 1rem;
+ background: var(--light-bg);
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 2rem auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hamburger {
+ display: flex;
+ flex-direction: column;
+ gap: 5px;
+ }
+
+ .hamburger span {
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ border-radius: 5px;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }