/* ===== Base Styling ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls {
  display: none !important;
}


body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

h1, h2, h3 {
  font-family: 'Great Vibes', cursive;
  color: #C29B0C;
}

p {
  font-size: 16px;
  color: #444;
  text-align: center;
}

/* ===== Header / Navbar ===== */
.site-header {
  background: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #C29B0C;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.main-nav a {
  color: #C29B0C;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
}

.main-nav a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #C29B0C;
  left: 0;
  bottom: -5px;
}

/* ===== Hero Section ===== */
/* .hero-section {
  background: url('../assets/images/hero\ bg.jpeg') center/cover no-repeat;
  position: relative;
  height: 100vh;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} */

/* .hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(194, 155, 12, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 0;
} */

.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: slideIn 1.2s ease-in-out;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* .hero-section p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #f8f8f8;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
} */

.btn-hero {
  background: #C29B0C;
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-hero:hover {
  background: #fff;
  color: #C29B0C;
  border: 1px solid #C29B0C;
  box-shadow: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #C29B0C;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ===== Other Sections (unchanged) ===== */


.hero-section {
  position: relative;
  height: 100vh;
  background: url('../assets/images/hero\ bg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-textbox {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #000;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-textbox h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.3;
  margin-bottom: 10px;
  color: #C29B0C;
}

.hero-textbox .highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: inline-block;
  color: #333;
}

.fairy-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444;
}

.hero-btn {
  background: #C29B0C;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #C29B0C;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-textbox {
    padding: 30px 20px;
  }

  .hero-btn {
    font-size: 0.95rem;
  }

  .fairy-icon {
    font-size: 1.5rem;
  }
}

/* ===== Bridge Section ===== */

.bridge-section {
  position: relative;
  height: 260px;
  margin: 40px 0;
  background: url('../assets/images/bridge.jpeg') center center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
}

.bridge-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(185, 141, 141, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.bridge-overlay h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
  color: #a1811f;
  text-shadow: 3px 4px 10px rgba(0, 0, 0, 0.4);
}

.bridge-overlay p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #eee;
}


/* ===== Sections ===== */
section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.services-section .service {
  background: #fdf9f3;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.service a{
  text-decoration: none;
  font-weight: 900;
  color: white;
  background-color: #c29b0c;
  padding: 10px;
  border-radius: 20px;
}

.services-section h3 {
  color: #C29B0C;
  font-size: 1.5rem;
}

/*videos*/
.video-gallery-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  color: #C29B0C;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #555;
  margin-bottom: 30px;
  font-size: 1rem;
}

.video-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px 0;
}

.video-thumb{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-thumb video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3 ease;
  cursor: pointer;
}


.video-thumb video.playing{
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.custom-play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #C29B0C;
  cursor: pointer;
  transition: transform 0.3 ease;
  z-index: 10;
}

.success-message {
  margin-top: 15px;
  color: #fff;
  background-color: #C29B0C;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gift-slider-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.gift-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.slide-text h3 {
  font-size: 1.5rem;
  color: #C29B0C;
  margin-bottom: 10px;
}

.slide-text p {
  color: #444;
  max-width: 750px;
  margin: 0 auto;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #C29B0C;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.nav-btn:hover {
  background: #a47e08;
}

.nav-btn.prev {
  left: 10px;
}

.nav-btn.next {
  right: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .slide-text p {
    padding: 0 10px;
  }
}


/* ===== Founder Section ===== */
.founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.founder-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* ===== Partners Section ===== */
.partners-section {
  padding: 40px 20px;
  background: #fff9ef;
  text-align: center;
}

.partners-section h2 {
  margin-bottom: 30px;
  color: #C29B0C;
}

.partners-logos img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}

/* ===== Gallery ===== */
.slideshow-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: auto;
}

.slide-image {
  display: none;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin: auto;
}

.slide-image.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 12px;
  color: #C29B0C;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.slide-btn:hover {
  background-color: #C29B0C;
  color: white;
}

.slide-btn.prev {
  left: 15px;
}

.slide-btn.next {
  right: 15px;
}

/* ===== Contact Form ===== */
.contact-section {
  background: #fff;
  padding: 60px 20px;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}

.contact-section h2 {
    font-size: 2rem;
  color: #C29B0C;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-section p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.contact-section a{
  text-decoration: none;
  color: #444;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons a {
  font-size: 10px;
  color: #C29B0C;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #C29B0C;
}

.social-icons a:hover {
  background-color: #C29B0C;
  color: #fff;
}

.social-icons i {
  font-size: 22px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.input-icon {
  position: relative;
  flex: 1 1 48%;
  min-width: 240px;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #C29B0C;
  font-size: 18px;
  z-index: 1;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: 1px solid #C29B0C;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

.input-icon textarea {
  resize: vertical;
  height: 120px;
}

.input-icon input:focus,
.input-icon textarea:focus {
  outline: none;
  border-color: #af8e08;
  box-shadow: 0 0 5px rgba(194, 155, 12, 0.3);
}

/* Submit Button */
form .btn-hero {
  align-self: flex-start;
  background: #C29B0C;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

form .btn-hero:hover {
  background: #fff;
  color: #C29B0C;
  border: 1px solid #C29B0C;
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }

  .input-icon {
    width: 100%;
  }
}
/* ===== WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== Footer ===== */
.site-footer {
  background: #f4f4f4;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

   .menu-toggle {
    display: block;
  }

  .nav-container {
    flex-direction: row;
    text-align: center;
  }

   .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding-top: 10px;
  }

  .main-nav a {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

 .main-nav.active {
    display: flex;
  }

  .founder-content {
    flex-direction: column;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .company-logos{
    max-width: 90%;
  }
  .hero-section {
    background-attachment: scroll;
  }
}
