/* Global Styles */
:root {
    --primary: #0a2b4f;
    --secondary: #00a8b5;
    --accent: #f0b000;
    --light: #f8f9fa;
    --dark: #1a2b3c;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: transparent;
    transition: background 0.4s ease, padding 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgb(122 19 61 / 86%);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand i {
    color: var(--secondary);
    margin-right: 8px;
}

.nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,43,79,0.8) 0%, rgba(0,168,181,0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Floating Booking Form */
.floating-booking {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px;
    max-width: 700px;
    margin: 40px auto 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.floating-booking .row {
    align-items: center;
}

.floating-booking select,
.floating-booking input {
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 30px;
    width: 100%;
    outline: none;
}

.floating-booking .btn {
    border-radius: 30px;
    padding: 12px 30px;
    background: var(--secondary);
    color: white;
    border: none;
    transition: all 0.3s;
}

.floating-booking .btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    margin-bottom: 30px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,168,181,0.3);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 25px;
    position: relative;
}

.service-card .price {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 700;
}

/* Parallax Sections */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: white;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0A2342 0%, #123B66 50%, #0A2342 100%);
}


.stats-section{
  padding: 80px 0;
  background: linear-gradient(90deg, #071A2B 0%, #0B2B45 50%, #071A2B 100%);
}
.stats-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  pointer-events:none;
}
.stats-section{ position:relative; }
.stats-section *{ position:relative; }


.parallax-content {
    position: relative;
    z-index: 2;
}

.counter-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--dark);
    color: #bbb;
    padding: 60px 0 20px;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary);
}

.footer .social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Gallery */
.lb-data .lb-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/* Testimonial Carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-overlay {
    background: linear-gradient(135deg, rgba(10,43,79,0.7) 0%, rgba(0,168,181,0.5) 100%);
}


.form-select {
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 500;
}



.logo-img {
    height: 70px;
}

/* Stylish White Company Name */
.brand-company {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* Pure White */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* Elegant hover effect */
.navbar-brand:hover .brand-company {
    color: #ffd700; /* Gold on hover */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .brand-company {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .logo-img {
        height: 55px;
    }
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s;
}
.navbar.scrolled .navbar-brand img {
    max-height: 45px;
}



/* ===== Intro Animation Overlay ===== */
.intro{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 20% 10%, rgba(30,60,114,.55), rgba(10,16,28,1) 60%);
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.intro::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle, rgba(255,255,255,.08) 0 2px, transparent 3px) 0 0/30px 30px;
  transform: rotate(10deg);
  opacity: .35;
  pointer-events: none;
}

.intro-inner{
  position: relative;
  text-align: center;
  padding: 28px 22px;
  width: min(680px, 92vw);
}

.intro-logo{
  width: clamp(96px, 14vw, 150px);
  height: auto;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.45));
  transform: translateY(18px) scale(.92);
  opacity: 0;
}

.intro-title{
  margin: 14px 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .6px;
  line-height: 1.15;
  font-size: clamp(20px, 3.2vw, 40px);
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.intro-line{
  height: 3px;
  width: 0;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
  opacity: 0;
}

.intro.play .intro-logo{
  animation: logoIn 900ms cubic-bezier(.2,.9,.2,1) forwards;
}
.intro.play .intro-title{
  animation: titleIn 850ms cubic-bezier(.2,.9,.2,1) 200ms forwards;
}
.intro.play .intro-line{
  animation: lineIn 900ms cubic-bezier(.2,.9,.2,1) 450ms forwards;
}

.intro.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes logoIn{
  0%   { opacity: 0; transform: translateY(18px) scale(.92); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes titleIn{
  0%   { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0);  filter: blur(0); }
}

@keyframes lineIn{
  0%   { opacity: 0; width: 0; }
  30%  { opacity: 1; }
  100% { opacity: 1; width: min(420px, 70%); }
}

@media (prefers-reduced-motion: reduce){
  .intro, .intro *{
    animation: none !important;
    transition: none !important;
  }
  .intro-logo, .intro-title, .intro-line{
    opacity: 1 !important;
    transform: none !important;
    width: min(420px, 70%) !important;
  }
}




