 :root {
      --primary-color: #0d6efd;
      --secondary-color: #f8f9fa;
      --accent-color: #ff6b6b;
    }
    
    /* Navbar Styles */
    .navbar {
      background-color: var(--primary-color);
      padding: 0.5rem 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-brand {
      padding: 0;
    }
    
    .navbar-brand img {
      height: 50px;
      width: auto;
      transition: transform 0.3s ease;
    }
    
    .navbar-brand:hover img {
      transform: scale(1.05);
    }
    
    .nav-link {
      color: white !important;
      font-weight: 500;
      margin: 0 8px;
      position: relative;
      padding-bottom: 5px;
    }
    
    /* Underline effect for regular nav links */
    .nav-link:not(.btn-login)::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: white;
      bottom: 0;
      left: 0;
      transition: width 0.3s ease;
    }
    
    .nav-link:not(.btn-login):hover::after {
      width: 100%;
    }
    
    /* Login button specific styles */
    .btn-login {
      background-color: white;
      color: var(--primary-color) !important;
      border-radius: 50px;
      padding: 8px 20px !important;
      font-weight: 600;
      margin-left: 10px;
      transition: all 0.3s ease;
    }
    
    .btn-login:hover {
      background-color: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Profile dropdown styles */
    .profile-dropdown {
      margin-left: 10px;
    }
    
    .profile-pic {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid white;
      transition: all 0.3s ease;
    }
    
    .profile-pic:hover {
      transform: scale(1.1);
      border-color: var(--accent-color);
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .dropdown-item:active {
      background-color: var(--primary-color);
    }

    /* Body content starts after navbar */
    body {
      padding-top: 70px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Header Styles */
    header {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                  url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
      color: white;
      height: 80vh;
      max-height: 800px;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
      position: relative;
    }
    
    .hero-content {
      max-width: 800px;
      padding: 0 20px;
    }
    
    .hero h1 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }
    
    .btn-hero {
      padding: 12px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    
    .btn-hero:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Villa Cards */
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      font-weight: 700;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary-color);
    }
    
    .villa-card {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
    }
    
    .villa-card img {
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .villa-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .villa-card:hover img {
      transform: scale(1.05);
    }
    
    .card-body {
      padding: 1.5rem;
    }
    
    .card-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .card-text {
      color: #666;
      margin-bottom: 1.5rem;
    }
    
    .btn-villa {
      width: 100%;
      padding: 10px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-villa:hover {
      background-color: var(--primary-color);
      color: white;
    }

    /* Modal Styles */
    .modal-header {
      border-bottom: none;
      padding-bottom: 0;
    }
    
    .modal-title {
      font-weight: 700;
    }
    
    .form-label {
      font-weight: 600;
    }
    
    .form-control {
      padding: 10px 15px;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    
    .btn-modal {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      font-weight: 600;
      margin-top: 1rem;
    }
    
    .toggle-form {
      text-align: center;
      margin-top: 1rem;
      cursor: pointer;
      color: var(--primary-color);
      font-weight: 600;
    }
    
    .toggle-form:hover {
      text-decoration: underline;
    }

    /* Error/Success Messages */
    .alert {
      margin-bottom: 1rem;
    }

    /* Footer Styles */
    footer {
      background-color: #343a40;
      color: white;
      padding: 2rem 0;
      margin-top: 3rem;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .footer-links a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--accent-color);
    }
    
    .social-icons {
      margin-bottom: 1.5rem;
    }
    
    .social-icons a {
      color: white;
      font-size: 1.5rem;
      margin: 0 10px;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    
    .social-icons a:hover {
      color: var(--accent-color);
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .navbar-nav {
        background-color: var(--primary-color);
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
      }
      
      .nav-link {
        margin: 5px 0;
      }
      
      .navbar-brand img {
        height: 40px;
      }
      
      .profile-pic {
        width: 35px;
        height: 35px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .btn-hero {
        padding: 10px 20px;
        font-size: 1rem;
      }
      
      .villa-card img {
        height: 200px;
      }
    }
    
            .villas-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        }
        
        .villas-container::-webkit-scrollbar {
            height: 8px;
        }
        
        .villas-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .villas-container::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        .villa-card {
            flex: 0 0 300px;
            scroll-snap-align: start;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            background: white;
            margin-bottom: 15px;
        }
        
        .villa-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .villa-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .villa-card:hover .villa-image {
            transform: scale(1.03);
        }
        
        .villa-body {
            padding: 15px;
        }
        
        .villa-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1rem;
            color: #333;
        }
        
        .villa-location {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .villa-price {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .villa-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            color: #666;
        }
        
        .meta-item i {
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .villa-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 10px;
        }
        
        .amenity-badge {
            background: #f0f7ff;
            color: var(--primary-color);
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .villa-card {
                flex: 0 0 85%;
            }
        }
 /* Custom styles for villa cards */
    .villas-container {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px 0;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    
    .villa-card {
      min-width: 300px;
      scroll-snap-align: start;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }
    
    .villa-card:hover {
      transform: translateY(-10px);
    }
    
    .villa-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .villa-body {
      padding: 20px;
    }
    
    .villa-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    
    .villa-location {
      color: #6c757d;
      margin-bottom: 10px;
    }
    
    .villa-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: #007bff;
      margin-bottom: 15px;
    }
    
    .villa-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 15px;
      color: #6c757d;
    }
    
    .villa-amenities {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 15px;
    }
    
    .amenity-badge {
      background: #f8f9fa;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
    }
    
    /* Horizontal scrolling for villas */
    .villas-container {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px 0;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }