* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--primary);
    overflow-x: hidden;
  
}

/* Hero Section with Background Video */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: linear-gradient(
    to right,
    rgba(30, 42, 33, 0.85) 90%,
    rgba(18, 10, 33, 0.408) 200%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 1000px;
    animation: heroFadeInUp 1.5s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #c47b3c;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
    color: #e0a75f;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* About Company Section with Advanced Overlapping Images */
.about-section {
    padding: 50px;
    max-width: max-content;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-images {
    position: relative;
    height: 700px;
}

.image-main {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 5%;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: floatMain 8s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.image-main:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes floatMain {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}

.image-overlay-1 {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 33%;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 2;
    animation: floatOverlay1 8s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.image-overlay-1:hover {
    transform: scale(1.05) rotate(-2deg);
}

@keyframes floatOverlay1 {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(-2deg); }
}

.image-overlay-2 {
    position: absolute;
    width: 40%;
    height: 40%;
    bottom: 5%;
    left: 10%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
    animation: floatOverlay2 8s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.image-overlay-2:hover {
    transform: scale(1.05) rotate(1deg);
}

@keyframes floatOverlay2 {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.image-main img, .image-overlay-1 img, .image-overlay-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.image-main:hover img, .image-overlay-1:hover img, .image-overlay-2:hover img {
    transform: scale(1.2);
    filter: brightness(1.1);
}

.image-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.image-main:hover .image-effect,
.image-overlay-1:hover .image-effect,
.image-overlay-2:hover .image-effect {
    transform: translateX(100%);
}

.about-content {
    padding: 2rem;
    margin-top: -60px;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-2);
    color: #e0a75f;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
 font-size: 2.5rem;
  font-weight: 800;
    color: rgb(30,43,60);
  margin-bottom: 15px;
  margin-top: -25px;
}
.section-title-1{
 font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -30px;
  margin-bottom: 15px;
}
.about-text {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: slideInLeft 1.4s ease-out;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.event-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(90deg, #b36a2e, #c47b3c, #e0a75f, #f7d7a3, #c47b3c);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: slideInLeft 1.6s ease-out;
    line-height: 1.4;
    width: 240px;
}

.event-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-icon {
    width: 75px;
    height: 50px;
    background: rgb(30,43,60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.event-icon-strong {
    color: rgb(30,43,60);
}

.event-type:hover .event-icon {
    transform: scale(1.1) rotate(360deg);
}

/* Vision & Mission Section with Video Background */
.vision-section {
    padding:0%;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    margin-top: -50px;
    height: 555px;
}

.vision-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgb(30,43,60);
    z-index: 1;
}

.vision-container {
    max-width: 1400px;
    
    margin: 150px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
    margin-top: 90px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #b36a2e, #c47b3c, #e0a75f, #f7d7a3, #c47b3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.vision-text {
    color: rgb(30,43,60);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding:50px;
    max-width:100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* ====== Services Section Container ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 8%;
  background: #f8f8f8;
  box-sizing: border-box;
  overflow-x: hidden;
  margin-top: -80px;
}

/* ====== Service Card ====== */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ====== Image Section ====== */
.service-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* ====== Overlay with Icon ====== */
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon-large {
  font-size: 3rem;
  color: #fcd34d;
  text-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* ====== Content Section ====== */
.service-content {
  padding: 25px 20px 30px;
  text-align: center;
  box-sizing: border-box;
}

.service-title {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-text {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* ====== Fade-in Animation ====== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
  
}

.contact-item i {
  font-size: 1.3rem;
  color: #f5c542;
  transition: color 0.3s ease;
}

/* Hover Effect */
.contact-item:hover {
  color: #f5c542;
  transform: translateX(5px);
}

.contact-item:hover i {
  color: #1e2b3c;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-item {
    font-size: 0.95rem;
    
  }

  .contact-item i {
    font-size: 1.1rem;
  }
  .contact-info{
    align-items: center;
  }
  .talk-form{
    width: 320px;
    margin-left: -29px;
  }
  .contact-item{
    font-size: 1rem;
  }
}

/* ====== Responsive Design ====== */

/* Tablet screens */
@media (max-width: 992px) {
  .services-grid {
    padding: 50px 6%;
    gap: 25px;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 40px 6%;
  }

  .service-card {
    margin: 0 auto;
    width: 100%;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }

  .service-text {
    font-size: 0.95rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .services-grid {
    padding: 30px 5%;
    width: 320px;
    margin-left: -29px;
  }

  .service-card {
    border-radius: 10px;
  }

  .service-image {
    height: 180px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-text {
    font-size: 0.9rem;
  }
  .about-section{
    /* justify-content: center; */
    justify-items: center;
  }

  .service-icon-large {
    font-size: 2.5rem;
  }
  .section-badge{
    font-size: 0.9rem;
  }
  .section-title
  {
    font-size: 1.5rem;
    justify-items: center;
  }
  .about-text{
    justify-items: center;
    text-align: center;
    font-size: 0.9rem;
  }
  .experience-grid{
    width: 320px;
    margin-left: -29px;
  }
}
.hero-content{
    margin-top: 85px;
}
.hero-subtitle{
    font-size: 1rem;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-text {
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgb(30,43,60);
    position: relative;
    padding-left: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--accent);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Experience Section */
.experience-section {
  padding: 0;
  background: var(--gradient-4);
  position: relative;
  overflow: hidden;
}

.experience-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(30, 43, 60);
  z-index: 1;
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 80px 40px;
}

.experience-header {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔹 4 cards in a row on desktop */
  gap: 2rem;
}

/* ===== Individual Cards ===== */
.experience-card {
  background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.experience-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(
    to right,
    rgba(30, 42, 33, 0.85) 30%,
    rgba(18, 10, 33, 0.5) 70%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.experience-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgb(30, 43, 60);
}

.experience-text {
  color: rgb(30, 43, 60);
  line-height: 1.8;
}

/* ===== RESPONSIVE DESIGN ===== */

/* 🔹 Tablets (2 cards per row) */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .experience-container {
    padding: 60px 30px;
  }
}

/* 🔹 Mobile (1 card per row) */
@media (max-width: 600px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-left: -1px;
  }

  .experience-container {
    padding: 40px 20px;
  }

  .experience-card {
    padding: 2rem;
  }

  .experience-number {
    font-size: 2.5rem;
  }

  .experience-title {
    font-size: 1.3rem;
  }
}


/* Let Us Talk Section with Video Background */
/* ===== TALK SECTION ===== */
.talk-section {
   background: linear-gradient(180deg, #faf7ff 0%, #f3f1f7 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* Hide the video and overlay */
.talk-video-bg,
.talk-overlay {
  display: none;
}

/* Container styling */
.talk-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  margin-top: -17px;
}

/* Title styling */
.talk-title {
   font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

/* Paragraph styling */
.talk-text {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* Contact info styling */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.contact-item i {
  margin-right: 8px;
  color: #007bff; /* Optional icon color */
}
.gallery-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; /* 🔹 Adds clear gap between buttons */
  margin-top: -11px;
  flex-wrap: wrap; /* ensures wrapping if space is small */
}

.gallery-btn {
    background: linear-gradient(90deg, #b37a37, #c38c4a, #e0b878);

  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  color: rgb(30, 43, 60);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}


.gallery-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(75, 31, 101, 0.4);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .gallery-btn-container {
    flex-direction: column; /* stack vertically */
    gap: 15px; /* reduce space between stacked buttons */
  }

  .gallery-btn {
    width: 50%; /* make buttons wider on mobile */
    text-align: center;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .talk-section {
    padding: 60px 15px;
  }

  .talk-title {
    font-size: 1.8rem;
  }

  .talk-text {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .talk-section {
    padding: 50px 10px;
  }

  .talk-title {
    font-size: 1.5rem;
  }

  .talk-text {
    font-size: 0.9rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-item i {
    margin: 0 0 5px 0;
  }
}








/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 500px;
    }

    .vision-container {
        grid-template-columns: 1fr;
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    
    .event-types {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    /* .video-background {
        display: none;
    } */
    .hero-title{
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .hero-description{
        line-height: 1.6;
        font-size: 0.9rem;
}
@media (max-width: 768px) {
    .video-background {
        object-fit: cover;
    }
    .hero-section{
        justify-items: center;
    }
   
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
}