@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #d4a574;
  --secondary-color: #1a1a1a;
  --accent-color: #f4f4f4;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --gradient-primary: linear-gradient(135deg, #d4a574 0%, #b8925f 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  /* font-weight: 600; */
  font-weight: 400;
  /* line-height: 1.2; */
  line-height: 0.8;

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  /* background: rgba(26, 26, 26, 0.95); */
  background: rgba(10, 33, 88, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  height: 50px;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  position: relative;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.magnetic-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
}

.magnetic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 165, 116, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  transition: var(--transition);
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/853151/pexels-photo-853151.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  /* background: url('images/heroimage.jpeg') center/cover; */

  opacity: 0.3;
  animation: kenburns 20s ease infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translateX(0);
  }

  100% {
    transform: scale(1.1) translateX(-20px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-location {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-location i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.liquid-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
  cursor: pointer;
}

.liquid-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.liquid-btn:hover::before {
  width: 300px;
  height: 300px;
}

.primary-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.secondary-btn {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 10;
}


@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}


.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-light);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 24px;
  }
}

.services-preview {
  padding: 100px 0;
  background: var(--accent-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
  transition: var(--transition);
}

.rotating-icon {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.service-card:hover .service-icon {
  animation: pulse 1s ease infinite;
  transform: scale(1.1);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 1rem;
}

.stats-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--text-light);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.featured-gallery {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--text-light);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.testimonials {
  padding: 100px 0;
  background: var(--accent-color);
}

.testimonials-slider {
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.testimonial-author p {
  color: #666;
  margin-bottom: 0.5rem;
}

.stars {
  color: #ffa500;
  font-size: 1rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.slider-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slider-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.cta-section {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/bgimage.jpg') center/cover fixed no-repeat;
  color: var(--text-light);
  text-align: center;
  position: relative;
}

.cta-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  position: relative;
  background: #0a0a0a;
  color: var(--text-light);
  padding: 60px 0 20px;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/footerimage.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 100%;
}

.footer-col ul {
  list-style: none;
  width: 100%;
}


.footer-col p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}


.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-5px);
  color: #fff;
  filter: brightness(1.2);
}

.social-icon[href*="instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon[href*="youtube"] {
  background: #ff0000;
}

.social-icon[href*="facebook"] {
  background: #1877f2;
}

.social-icon[href*="twitter"] {
  background: #1da1f2;
}

.social-icon[href*="whatsapp"] {
  background: #25d366;
}

.social-icon:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
  width: 100%;
}

.contact-info li span {
  flex: none;
}


.contact-info i {
  color: var(--primary-color);
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;

}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
  display: flex;
}

.page-header {
  /* height: 50vh; */
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%); */
  background: linear-gradient(135deg, #2c15d5 0%, #062b0b 100%);
  margin-top: 50px;
  /* margin-top: 70px; */



}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/853151/pexels-photo-853151.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  opacity: 0.2;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.page-title {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  font-size: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.page-breadcrumb {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  font-size: 1.3rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.page-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-breadcrumb span {
  margin: 0 0.5rem;
}

.about-intro,
.services-intro,
.packages-intro {
  /* padding: 100px 0; */
  padding: 50px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.experience-badge p {
  font-size: 0.9rem;
}

.about-content p {

  /* margin-bottom: 0.5rem; */
  /* margin-bottom: 1.5rem; */
  line-height: 1.8;
  color: #555;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #555;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.values-section,
.why-choose-section,
.team-section {
  padding: 100px 0;
  background: var(--accent-color);
}

.values-grid,
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card,
.why-item {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover,
.why-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-light);
}

.value-card h3,
.why-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p,
.why-item p {
  color: #666;
  line-height: 1.7;
}

.why-number {
  font-size: 3rem;
  font-weight: 700;
  /* color: var(--primary-color); */
  color: navy;
  /* opacity: 0.2; */
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
}

.team-member:hover .member-social {
  opacity: 1;
}

.member-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.member-social a:hover {
  transform: translateY(-3px);
}

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
  padding: 0 1rem;
  color: var(--text-dark);
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.member-bio {
  color: #666;
  padding: 0 1rem 1.5rem;
  line-height: 1.6;
}

.service-detail {
  /* padding: 80px 0; */
  padding: 50px 0;
}

.service-detail.alternate {
  background: var(--accent-color);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-badge {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  /* opacity: 0.2; */
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.service-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  color: #555;
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.additional-services {
  padding: 80px 0;
  background: var(--accent-color);
}

.additional-grid,
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.additional-card,
.addon-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.additional-card:hover,
.addon-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.additional-card i,
.addon-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-card h3,
.addon-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pricing-section {
  padding: 80px 0;
}

.pricing-section.alternate-bg {
  background: var(--accent-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: var(--gradient-dark);
  color: var(--text-light);
  transform: scale(1.05);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header .price,
.pricing-card.featured .pricing-features li {
  color: var(--text-light);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-right: 0.25rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.price-duration {
  color: #666;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #555;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.pricing-features li.unavailable {
  opacity: 0.4;
}

.pricing-features li.unavailable i {
  color: #999;
}

.addons-section {
  padding: 80px 0;
  background: var(--accent-color);
}

.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--accent-color);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: #666;
  line-height: 1.8;
}

.gallery-filter-section {
  padding: 40px 0;
  background: var(--accent-color);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--text-dark);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.full-gallery {
  padding: 60px 0;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item-full {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item-full.hide {
  display: none;
}

.gallery-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item-full:hover img {
  transform: scale(1.1);
}

.gallery-overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--text-light);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item-full:hover .gallery-overlay-full {
  opacity: 1;
}

.gallery-overlay-full h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay-full p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.view-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.view-btn:hover {
  transform: scale(1.1);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-info>p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 3rem;
}

.contact-info-items {
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  /* background: var(--gradient-primary); */
  background-color: navy;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-text p {
  color: #666;
  line-height: 1.6;
}

.social-links-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.social-icons-contact {
  display: flex;
  gap: 1rem;
}

.contact-form-wrapper {
  background: var(--accent-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #999;
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -0.75rem;
  left: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-color);
  background: #fff;
  padding: 0 0.5rem;
}

.form-group label.date-label {
  top: -0.75rem;
  left: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-color);
  background: #fff;
  padding: 0 0.5rem;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.form-group input:focus~.input-border,
.form-group textarea:focus~.input-border,
.form-group select:focus~.input-border {
  width: 100%;
}

.submit-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  display: none;
  text-align: center;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}

.map-section {
  padding: 80px 0;
  background: var(--accent-color);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.quick-contact {
  padding: 80px 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quick-contact-card {
  background: var(--accent-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.quick-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
}

.quick-contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.quick-contact-card p {
  color: #666;
  margin-bottom: 1rem;
}

.quick-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  transition: var(--transition);
}

.quick-link:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 33, 88, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
  }


  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 2001;
    position: relative;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 568px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid,
  .pricing-grid,
  .gallery-grid,
  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }


  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-nav.prev {
    left: 15px;
  }

  .lightbox-nav.next {
    right: 15px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}


/* ===== Camera Flash Intro =====

#flash-intro {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}

.flash-logo {
  width: 150px;
  opacity: 0;
  transform: scale(0.8);
  filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
}

.flash-bg {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  z-index: -1;
}

@keyframes screenFlash {
  0%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes flashLogo {
  0% { opacity: 0; transform: scale(0.8); filter: brightness(1); }
  40% { opacity: 1; transform: scale(1.1); filter: brightness(2.2); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
 */

/* ===== Full Page Flash Intro =====
#flash-intro {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}

.flash-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  z-index: 1;
}

.flash-logo {
  position: relative;
   width: 740px;
object-fit: cover;   */
/* max-width: 2000vw;       scales with screen */
/* height: 500px;  
  opacity: 0;
  transform: scale(0.8);
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
}  */

/* Keyframes for flash sequence 
@keyframes screenFlash {
  0%, 100% { opacity: 0; }
  30% { opacity: 1; }
}

@keyframes flashLogo {
  0% { opacity: 0; transform: scale(0.8); filter: brightness(1); }
  40% { opacity: 1; transform: scale(1.2); filter: brightness(2.5); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
*/

/* ===== Full Page Flash Intro ===== */
#flash-intro {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  flex-direction: column;
}

.flash-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  z-index: 1;
}

/* Centered content */
.flash-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo styling */
.flash-logo {

  width: 540px;
  object-fit: cover;

  /* max-width: 40vw; */
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.8));
  animation: flashLogo 1.5s ease-in-out forwards 0.10s;
}

/* Tamil quote under logo */
#flash-intro h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  opacity: 0;
  animation: fadeInText 1s ease forwards 1.2s;
  font-family: "Playfair Display", serif;
}

/* Animations */
@keyframes screenFlash {

  0%,
  100% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }
}

@keyframes flashLogo {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: brightness(1);
  }

  40% {
    opacity: 1;
    transform: scale(1.25);
    filter: brightness(2.6);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Text fade-in animation */
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .flash-logo {
    width: 160px;
    max-width: 60vw;
  }

  #flash-intro h3 {
    font-size: 1rem;
  }
}

.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a2158 0%, #05102d 100%);
  text-align: center;
  color: #fff;
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-breadcrumb {
  font-size: 1.1rem;
  opacity: 0.8;
}

.page-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

#typewriter-footer {
  display: inline-block;
  min-height: 1.5em;
  vertical-align: middle;
}

#typewriter-footer::after {
  content: '|';
  animation: blink 0.7s infinite;
  margin-left: 2px;
  color: var(--primary-color);
  font-weight: bold;
}


/* Force visibility of AOS elements (Fail-safe) */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}


/* ===== FINAL PAKKA FIX FOR TOP GAP & NAVBAR ===== */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

.navbar {
  top: 0 !important;
  background: #0a2158 !important;
  /* Solid Professional Dark Blue */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

#flash-intro {
  margin: 0 !important;
  padding: 0 !important;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}