/* Hover effect for dark navbar links */
.navbar-dark .navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #e74bc5; /* Bootstrap blue */
}

/* Active link color */
.navbar-dark .navbar-nav .nav-link.active {
  color: #e74bc5;
}

/* Dropdown hover */
.dropdown-menu .dropdown-item:hover {
  background-color: #0d6efd;
  color: #fff;
}

.margin{
  margin:0px;
}

.logo1{
  height:auto;
  width:120px;
  border-radius:20px;
}

/* Default (Desktop & large screens) */
.image1{
  height:80vh;
 
}

/* Mobile view only */
@media (max-width: 768px) {
  .image1{
    height:30vh;   
  }
}




 /* Custom CSS for premium home page */
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #e74bc5;
            --accent-color: #ff6b35;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar-dark .navbar-nav .nav-link {
            transition: var(--transition);
            font-weight: 500;
        }
        
        .navbar-dark .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-dark .navbar-nav .nav-link.active {
            color: var(--secondary-color);
        }
        
        .dropdown-menu .dropdown-item:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        .logo1 {
            height: auto;
            width: 120px;
            border-radius: 20px;
        }
       
        
        /* Button Styles */
        .btn-premium {
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(231, 75, 197, 0.3);
        }
        
        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 75, 197, 0.4);
            color: white;
        }
        
        /* Main Content Styles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .feature-card {
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .location-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .location-img {
            height: 200px;
            object-fit: cover;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(to right, var(--dark-color), #2d2d44);
            color: white;
            padding: 4rem 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 5rem 0;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
      
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        /* Custom spacing */
        .section-padding {
            padding: 5rem 0;
        }

@media (max-width: 768px) {
  .m1{ 
    margin-left:5px;
    margin-right:5px;
    margin-bottom:8px;
  }
}



