*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    background-color: #FCE4EC;
}
/* navbar */
 .navbar{
    position: sticky;
    top: 0;
    height: 80px;
    z-index: 1000;
    padding: 14px 50px;
    width: 100%;
    background: #0F0F0F;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
animation: slideDown 0.8s ease;
 }
 @keyframes slideDown {
from { transform: translateY(-100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
/* ===== LOGO ===== */
.logo{
    display: flex;
    align-items: center;
    /* gap: 5px; */
    font-size: 20px;
    font-weight: 600;
    color:white ;
    
}
.logo img {
    margin-top: 40px;
height: 30%;
  width: 50%;
}


.logo span {
color: #c9a44d; /* gold */
}
/* ===== NAV LINKS ===== */
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}


.nav-links li {
position: relative;
}
.nav-links a {
text-decoration: none;
color: white;
font-size: 14px;
font-weight: 300;
letter-spacing: 0.5px;
padding: 5px 0;
transition: color 0.3s ease;
}


.nav-links a:hover {
color: #E91E63;
}
.nav-links a::after {
content: "";
position: absolute;
width: 0;
height: 2px;
left: 0;
bottom: -4px;
background: #E91E63;
transition: width 0.4s ease;
}
.nav-links a:hover::after {
width: 100%;
}
/* ===== DROPDOWN ===== */
.dropdown {
position: absolute;
top: 35px;
left: 0;
background: #ffffff;
min-width: 180px;
border-radius: 6px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.4s ease;
}


.dropdown li {
padding: 12px 18px;
}


.dropdown li a {
color: #1e3a5f;
font-size: 14px;
}
.nav-links li:hover .dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
/* ===== HAMBURGER ===== */
.menu-icon {
display: none;
flex-direction: column;
cursor: pointer;
}


.menu-icon span {
height: 3px;
width: 26px;
background: #1e3a5f;
margin: 4px 0;
}


#menu-toggle { display: none; }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.menu-icon { display: flex; }

.nav-links a{
  color: #0F0F0F;
}

.nav-links {
position: absolute;
top: 75px;
left: 0;
width: 100%;
background: white;
flex-direction: column;
align-items: center;
display: none;
padding: 20px 0;
}


.nav-links li:hover .dropdown {
position: static;
box-shadow: none;
}


#menu-toggle:checked + .menu-icon + .nav-links {
display: flex;
}
}
/* HERO VIDEO SECTION */
.hero-video {
  position: relative;
  width: 100%;
  height: 90vh; /* Full viewport height */
  overflow: hidden;
}

/* Video as background */
.bg-video {
  position: absolute; 
  
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover; /* Cover entire section */
  z-index: 1;
}

/* Content overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical center */
  align-items: center;     /* Horizontal center */
  text-align: center;
  /* background: rgba(0/,0,0,0.35); Optional dark overlay for readability */
  color: #fff;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-overlay h1 span {
  color: #E91E63; /* Gold accent */
}

.hero-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.4s ease;
}

.btn.gold {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn.gold:hover {
  background: #E91E63;
  transform: translateY(-2px);
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #E91E63 ;
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .hero-overlay h1{font-size:36px;}
  .hero-overlay h2{font-size:20px;}
  .hero-overlay p{font-size:16px;}
  .hero-buttons{flex-direction:column; gap:12px;}
}


  .services-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
  }

  .services-section h2 {
    font-size: 36px;
    color: #E91E63;
    margin-bottom: 40px;
  }

  .services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .service-card {
    background: #1A1A1A;
    flex: 1 1 300px;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s, box-shadow 0.4s;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(233,30,99,0.5);
  }

  .service-card h3 {
    color: #F4C430;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-card p {
    color: #e6e6e6;
    line-height: 1.6;
  }

  .service-card img {
    width: 80px;
    margin-bottom: 20px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .services-cards {
      flex-direction: column;
      align-items: center;
    }
  }
   /* ===== Contact Section ===== */
    .contact-section {
      padding: 80px 10%;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-header h1 {
      font-size: 38px;
      color: #E91E63;
    }

    .contact-header p {
      color: #ccc;
      margin-top: 10px;
      font-size: 16px;
    }

    /* ===== Layout ===== */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: #161616;
      padding: 40px;
      border-radius: 14px;
      box-shadow: 0 15px 40px rgba(233,30,99,0.25);
    }

    /* ===== Contact Info ===== */
    .contact-info h2 {
      color: #E91E63;
      margin-bottom: 20px;
    }

    .info-box {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .info-box i {
      font-size: 24px;
      color: #E91E63;
      margin-right: 15px;
    }

    .info-box p {
      color: #ddd;
      font-size: 15px;
    }

    /* ===== Social Icons ===== */
    .social-links {
      margin-top: 25px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: #E91E63;
      color: #fff;
      border-radius: 50%;
      margin-right: 12px;
      text-decoration: none;
      transition: 0.3s;
    }

    .social-links a:hover {
      background: #ff3b7f;
      transform: translateY(-4px);
    }

    /* ===== Contact Form ===== */
    .contact-form h2 {
      color: #E91E63;
      margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px;
      margin-bottom: 15px;
      background: #0f0f0f;
      border: 1px solid #333;
      border-radius: 8px;
      outline: none;
      font-size: 14px;
      color: #fff;
    }

    .contact-form textarea {
      resize: none;
      height: 120px;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #aaa;
    }

    .contact-form button {
      background: #E91E63;
      color: #fff;
      border: none;
      padding: 14px 32px;
      font-size: 15px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background: #ff3b7f;
    }

    /* ===== Responsive ===== */
    @media (max-width: 900px) {
      .contact-container {
        grid-template-columns: 1fr;
      }

      .contact-section {
        padding: 60px 6%;
      }
    }
    /* Floating Icons */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.float-btn.call {
  background: #1aa3ff; /* Sky Blue */
}

.float-btn.whatsapp {
  background: #25d366; /* WhatsApp Green */
}

.float-btn:hover {
  transform: scale(1.1);
}
