:root {
    --primary: #1e3a8a;
    --secondary: #0284c7;
    --light: #e0f2fe;
    --white: #ffffff;
}

/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f1f5f9;
}

.no-scroll {
    overflow: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 50px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 9999;
}

/* ================= LOGO ================= */
.logo a {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: 70px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
    border: 3px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* ================= NAV LINKS ================= */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #bae6fd;
}

/* ================= LOGIN BUTTON ================= */
.login-btn {
    padding: 10px 25px;
    background: var(--white);
    color: var(--secondary) !important;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.login-btn:hover {
    background: #bae6fd;
    transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    min-width: 220px;
    display: none;
    list-style: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.15);
}

/* Desktop Hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    background: none; /* remove default black dot */
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10001;
    outline: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
    display: block;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    /* Navbar padding */
    .navbar {
        padding: 0 20px;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Animate hamburger bars */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile nav links container */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
        transition: left 0.4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    /* Show nav links when active */
    .nav-links.active {
        left: 0;
    }

    /* Nav links styling */
    .nav-links a {
        font-size: 20px;
        color: var(--white);
        text-align: center;
    }

    /* Dropdowns on mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        flex-direction: column;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-menu li a {
        padding: 12px 0;
        font-size: 18px;
    }
}

/* ================= Carousal STtyle ================= */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Content */
.hero-content {
  max-width: 900px;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Text */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease forwards;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeUp 1.3s ease forwards;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeUp 1.6s ease forwards;
}

.btn {
  padding: 15px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-white {
  background-color: #fff;
  color: #002147;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ================= Footer Style ================= */
.footer {
  background: linear-gradient(90deg, #1e3a8a, #0284c7);
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 40px 20px 20px;
}

/* Footer container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

/* Columns */
.footer-logo-section {
  flex: 2;
  max-width: 320px;
}

.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 180px;
}

/* Logo */
.logo-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #ffffff;
  padding: 8px;
  border: 3px solid #0284c7;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Titles */
.footer h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* About text */
.footer-logo-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}

/* Links */
.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffeb3b;
}

/* Contact info */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-item i {
  font-size: 14px;
  width: 16px;
  text-align: center;
  opacity: 0.85;
}

/* Social icons */
.footer-social ul {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-logo-section,
  .footer-links,
  .footer-contact,
  .footer-social {
    max-width: 100%;
  }
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
