*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

: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: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* ================= LOGO ================= */
.logo a {
    display: flex;
    align-items: center;
    color: #0f172a;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: 70px;
    margin-right: 12px;
    border-radius: 50%;
    background: #ffffff;
    padding: 8px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

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

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #0f172a;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #0f172a;
    margin: 5px 0;
    transition: 0.3s;
    display: block;
}

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

    .hamburger {
        display: block;
    }

    .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);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
        transition: left 0.4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 20px;
        color: #0f172a;
        text-align: center;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        background: #f8fafc;
        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 ================= */

/* Variables */
:root {
    --primary: #0b2c5d;
    --accent: #0a4cff;
    --white: #ffffff;
    --text-gray: #5e6d82;
}

/* Container Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: #fff;
}

.carousel-container {
    height: 100%;
    position: relative;
}

/* Slide Logic */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

input[name="slider"] { display: none; }

#s1:checked ~ .slide-1,
#s2:checked ~ .slide-2 {
    opacity: 1;
    visibility: visible;
}

/* Layout Split */
.hero-content {
    flex: 1;
    padding: 0 5% 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.hero-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom-left-radius: 120px;
}

/* Typography & Elements */
.badge {
    display: inline-block;
    background: #eef2ff;
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span { color: var(--accent); }

.hero-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Buttons */
.cta-group { display: flex; gap: 15px; }

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Glass-morphism Stat */
.glass-stat {
    position: absolute;
    bottom: 15%;
    left: 10%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.glass-stat h3 { color: var(--primary); margin-bottom: 5px; }
.glass-stat p { color: var(--text-gray); font-size: 0.85rem; }

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots label {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: 0.3s;
}

#s1:checked ~ .carousel-dots label:nth-child(1),
#s2:checked ~ .carousel-dots label:nth-child(2) {
    background: var(--accent);
    width: 30px;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .slide { flex-direction: column; }
    .hero-content {
        padding: 40px 5%;
        order: 2;
        text-align: center;
        align-items: center;
    }
    .hero-image {
        height: 350px;
        order: 1;
        border-radius: 0;
        width: 100%;
    }
    .carousel-dots { left: 50%; transform: translateX(-50%); }
}


/* ================= Footer Style ================= */
.footer {
  background: linear-gradient(90deg, #0f1f4b, #0b3a75);
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 45px 20px 20px;
  border-radius: 18px 18px 0 0;
}

/* 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 #0b3a75;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

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

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

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

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

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

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

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

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

.footer-social img {
  width: 26px;
  height: 26px;
  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: 13px;
  opacity: 0.85;
}

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

/* ================= FLOATING WHATSAPP ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f4b, #0b3a75);
  border: 3px solid #0b3a75;
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}
