/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #181818;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.85);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #c8102e;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.logo-img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #c8102e;
}

.hero {
    position: relative;
    background: url('banner.png') no-repeat center center/cover;
    height: 60vh; /* Reduced from 100vh to show more content */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .red-text {
    color: #ff4d4d;
  }
  
  .hero-content .tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
  }
  
  .hero .btn {
    font-size: 1.1rem;
    padding: 0.8rem 1.6rem;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .hero .btn:hover {
    background-color: #e63939;
  }
  

.hero .btn:hover {
    background-color: #a30d24;
    transform: scale(1.05);
}

/* Packages Section */
.packages {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 5rem 5%;
    text-align: center;
    border-top: 3px solid #ffffff10;
    border-bottom: 3px solid #012169;
}

.packages h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 1px;
}

.card-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    position: relative;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 3px double #012169;
    border-radius: 20px;
    padding: 2.5rem; /* Increased from 2rem */
    width: 350px;     /* Increased from 300px */
    text-align: left;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card-img {
    width: 100%;
    height: 180px;     /* Increased from 160px */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.2rem; /* Slightly more spacing */
  }
  
  .card h3 {
    font-size: 1.6rem; /* Slightly increased */
  }
  
  .card p {
    font-size: 1.05rem; /* Slightly increased */
  }
  

.card::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #c8102e, #012169, #ffffff);
    border-radius: 25px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.2;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}


.card span {
    font-weight: bold;
    font-size: 1.3rem;
    color: #c8102e;
    display: block;
    margin-bottom: 1rem;
}

.card .btn.small {
    display: inline-block;
    background-color: #012169;
    color: #fff;
    padding: 0.6rem 1.6rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    margin: 0 auto;
    text-align: center;
}

.card .btn.small:hover {
    background-color: #0a2d70;
    transform: scale(1.05);
}

/* Footer Styling */
footer {
  background-color: #222;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer .social-icons {
  margin-top: 1rem;
}

footer .social-icon {
  width: 40px; /* Set the width for icons */
  height: 40px; /* Set the height for icons */
  margin: 0 10px;
  transition: transform 0.3s ease;
}

footer .social-icon:hover {
  transform: scale(1.2); /* Slight zoom effect on hover */
}
