/* GENERAL STYLES */


body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar {
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 2rem;
}

.navbar-brand {
    color: #3B82F6 !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00796B !important;
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* MEGA DROPDOWN MENU */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 600px;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: flex;
    opacity: 1;
}

.mega-menu {
    display: flex;
    background-color: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.menu-left {
    width: 40%;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 1rem;
}

.menu-right {
    width: 60%;
    background-color: #fff;
    padding: 1rem 1.5rem;
}

.menu-left button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0.7rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.menu-left button:hover,
.menu-left button.active {
    background-color: #E0F2F1;
    color: #00796B;
}

.menu-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-right li {
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: #333;
    cursor: pointer;
}

.menu-right li:hover {
    background-color: #3B82F6;
    color: white;
    text-decoration: none;
}

/* BUTTONS */
.btn-login {
    background-color: #3B82F6;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #2563EB;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}



:root {
  --primary: #4a7c9b;
  --secondary: #a8d5ba;
  --accent: #e6f0fa;
  --dark: #2d3748;
  --light: #f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #e6f4ff 0%, #f0f9f5 100%);
  color: var(--dark);
  min-height: 100vh;
}

.hero-section {
  background:blueviolet;
              url('https://images.unsplash.com/photo-1516321310766-86d503841e4b?auto=format&fit=crop&q=80') center/cover no-repeat;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
}

.card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(74, 124, 155, 0.2);
}

.gradient-text {
    background: linear-gradient(45deg, #FF3399, #C700FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awesome-btn {
    background: linear-gradient(45deg, #FF3399, #C700FF);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-icon {
  font-size: 1.2rem;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency-box {
  background: #fef2f2;
  border: 2px solid #fca5a5;
  border-radius: 16px;
  padding: 24px;
}

.emergency-box h4 {
  color: #dc2626;
}
.container-fluid{
    margin-top: 0;
    margin-bottom: 0%;
}
.container{margin-top: 0%;}

footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 50px 20px 30px;
  margin-top: 100px;
 
}
.info-icon {
  font-size: 1rem;        /* Bigger text */
  width: 80px;            /* Larger circle */
  height: 80px;           /* Larger circle */
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.btn btn-primary btn-lg w-100{
background-color: linear-gradient(45deg, #FF3399, #C700FF);
}