
/* ================= ROOT COLORS ================= */
:root {
  --primary: #0b1f3f;
  --primary-light: #132a55;
  --accent: #ff6b00;
  --white: #ffffff;
  --gray-light: #f4f6fb;
  --text-dark: #1a1a1a;
  --shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--gray-light);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
/* HEADER */

header{
background:#0a2342;
padding:15px 0;
position:fixed;
width:100%;
top:0;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* NAVBAR */

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
}

/* LOGO */

.logo img{
height:50px;
}

/* MENU */

nav ul{
display:flex;
align-items:center;
list-style:none;
gap:30px;
margin:0;
padding:0;
}

nav ul li{
position:relative;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:#ff7a00;
}

/* BUTTON */

.btn-nav{
background:#ff7a00;
padding:10px 20px;
border-radius:50px;
color:#fff;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.btn-nav:hover{
background:#ff8c2f;
}

/* DROPDOWN */

.dropdown-menu{

position:absolute;
top:100%;   /* important */
left:0;

background:#0a2342;
width:240px;

display:none;

padding:0;

border-radius:6px;

box-shadow:0 10px 25px rgba(0,0,0,0.3);

z-index:999;

}


.dropdown-menu li{

border-bottom:1px solid rgba(255,255,255,0.1);

}

.dropdown-menu li a{

display:block;

padding:12px 18px;

color:#fff;

font-size:14px;

text-decoration:none;

}

/* HOVER EFFECT */

.dropdown-menu li a:hover{

background:#102f5e;

padding-left:22px;

}

/* SHOW MENU */

.dropdown:hover .dropdown-menu{

display:block;

}

/* ANIMATION */

@keyframes dropdownFade{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ================= HERO SECTION PREMIUM ================= */
/* ================= PREMIUM HERO ================= */

.hero-premium {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1600') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Luxury Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(10, 25, 60, 0.85),
      rgba(10, 25, 60, 0.75)
    ),
    radial-gradient(circle at center, rgba(255, 140, 0, 0.2), transparent 60%);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
  padding: 0 20px;
}

/* Heading */
.hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* Highlight Text */
.hero-content h1 span {
  background: linear-gradient(45deg, #ff8800, #ffaa33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

/* Premium Button */
.btn-hero {
  display: inline-block;
  background: linear-gradient(45deg, #ff8800, #ff5500);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 100, 0, 0.4);
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 100, 0, 0.6);
}

/* Subtle Zoom Animation */
.hero-premium {
  animation: heroZoom 18s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

/* Responsive */
@media(max-width: 768px) {
  .hero-premium {
    height: 550px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.btn-primary {
  display: inline-block;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 15px 30px rgba(255,107,0,0.4);
  transition: 0.4s;
  margin-bottom: 7px;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255,107,0,0.5);
}

/* ================= CONTACT CTA ================= */
/* ================= CONTACT + HOURS ================= */

.contact-hours{
  padding:20px 0;
  background:#f7f9fc;
}

/* GRID */
.contact-grid{
  display:flex;
  gap:40px;
  align-items:stretch;
  justify-content:center;
  flex-wrap:wrap;
}

/* BOX STYLE */
.cta-box,
.hours-box{
  flex:1;
  min-width:320px;
  background:#fff;
  /* padding:60px; */
  border-radius:20px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition:0.4s;
}

.cta-box:hover,
.hours-box:hover{
  transform:translateY(-8px);
}

/* HEADINGS */
.cta-box h2,
.hours-box h2{
  font-size:34px;
  margin-bottom:20px;
  color:#0a193c;
}

.cta-box p{
  margin-bottom:30px;
  color:#555;
}

/* HOURS GRID */
.hours-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.day{
  background:#f1f3f7;
  padding: 10px 20px;
  border-radius:12px;
  transition:0.3s;
}

.day h4{
  color:#0a193c;
  margin-bottom:8px;
}

.day:hover{
  background:#0a193c;
}

.day:hover h4,
.day:hover p{
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){

.contact-grid{
  flex-direction:column;
}

.cta-box,
.hours-box{
  padding:40px;
}

}

/* ================= FOOTER ================= */

footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {

  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .cta h2,
  .opening-hours h2 {
    font-size: 28px;
  }

  .card {
    padding: 30px;
  }

}


/* ================= FEATURES ================= */

.features {
  background: var(--primary);
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  text-align: center;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: 0.4s;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(255,107,0,0.25);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--primary);
  font-weight: 600;
}


/* ================= ABOUT ================= */

.about {
  background: #eeeeee;
  padding: 40px 0;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about p {
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #555;
}


/* ================= WHY CHOOSE ================= */

.why-choose {
  background: var(--primary);
  color: var(--white);
  padding: 25px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat p {
  font-size: 16px;
  opacity: 0.9;
}

.stat {
  transition: 0.3s;
}

.stat:hover {
  transform: scale(1.1);
}


/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {

  .stats-grid {
    gap: 40px;
  }

  .stat h3 {
    font-size: 32px;
  }

}

/* ================= WHAT TO EXPECT (CIRCLE STYLE) ================= */

.expect {
  background: #f3f3f3;
  padding: 20px 0;
  text-align: center;
}

.expect h2 {
  /* font-size: 38px; */
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 600;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px 40px;
  margin-bottom: 50px;
}

.expect-item {
  /* padding: 30px 20px; */
  border-radius: 16px;
  transition: 0.4s ease;
}

.expect-item:hover {
  transform: translateY(-10px);
}

/* 🔵 CIRCLE ICON STYLE */
.expect-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--primary);
  color: var(--white);
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(11,31,63,0.25);
}

/* Hover Effect */
.expect-item:hover .expect-icon {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255,107,0,0.4);
}

.expect-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.6;
  max-width: 240px;
  margin: auto;
}

/* ================= TEAM SECTION ================= */

.team {
  background: #f5f5f5;
  padding: 20px 0;
  text-align: center;
}

.team h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 60px;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* TEAM IMAGE FIXED SIZE */

.team-img {
  width: 100%;
  height: 320px;          /* Same height for all */
  overflow: hidden;
  background: #eaeaea;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Crops properly */
  object-position: top;   /* Keeps face visible */
  display: block;
  transition: 0.5s ease;
}
.team-card:hover img {
  transform: scale(1.08);
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.team-info p {
  color: #666;
  font-size: 14px;
}

.team-btn {
  margin-top: 50px;
}

/* ================= GALLERY ================= */

.gallery {
  padding: 20px 0;
  background: #f4f6fb;
  text-align: center;
}

.gallery h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 60px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,63,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-overlay span {
  font-size: 40px;
  color: var(--accent);
  font-weight: bold;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ================= FOOTER ================= */

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: var(--white);
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #081730;
  margin-top: 50px;
  font-size: 14px;
}

/* WhatsApp Floating */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-decoration: none;
}