:root {
  --gold: #D4AF37;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --transition: all 0.3s ease;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* Header */
/* Header */
.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between; /* Ensures logo is on the left and icons on the right */
  align-items: center; /* Vertically centers all items */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center; /* Ensures logo is vertically centered */
}

.logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Desktop CTA Buttons */
.header-cta.desktop-view {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.location-btn,
.call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.location-btn {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.call-btn {
  background: var(--gold);
  color: var(--white);
}

.location-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.call-btn:hover {
  background: #b5942d;
  transform: translateY(-1px);
}

/* Mobile CTA Buttons */
.header-cta.mobile-view {
  display: none;
  gap: 1rem;
  align-items: center; /* Ensures icons are vertically centered */
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon-btn:first-child {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.icon-btn:last-child {
  background: var(--gold);
  color: var(--white);
}

.icon-btn:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-cta.desktop-view {
    display: none;
  }
  
  .header-cta.mobile-view {
    display: flex;
  }
  
  .logo {
    height: 40px;
  }
  
  .header-container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 50px;
  }
  
  .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem; /* Add padding to prevent cutoff */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
  will-change: transform, opacity; /* Optimize for GPU */
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 400;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s ease-out;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  z-index: 4;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Hover Effects */
.btn-gold:hover {
  background: #b5942d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .btn-gold,
  .btn-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
/* Intro Section */
/* Intro Section */
.intro-section {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.9));
  text-align: center;
  border: 2px solid var(--gold);
  border-radius: 15px;
  margin: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-line {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 1rem 0;
  line-height: 1.6;
  font-weight: 500;
  animation: fadeInUp 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left on mobile */
  gap: 0.75rem;
  text-align: left; /* Ensure text alignment is consistent */
}

.highlight {
  background: linear-gradient(90deg, var(--gold), #b5942d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0; /* Prevent icons from shrinking */
}

/* Call Now Button */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.302);
  animation: pulse 2s infinite;
}

.call-now-btn:hover {
  background: #b5942d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.call-now-btn i {
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-section {
    padding: 1.5rem 0.5rem;
    margin: 1rem 0.5rem;
  }

  .intro-line {
    font-size: 1.1rem;
    flex-direction: row; /* Keep icons and text in a row */
    align-items: flex-start; /* Align items to the top */
    gap: 0.5rem;
  }

  .icon {
    font-size: 1.25rem;
  }

  .call-now-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .intro-line {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .icon {
    font-size: 1.1rem;
  }

  .call-now-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}
.malayalam-highlight {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(255,255,255,0.9));
  padding: 2rem 1rem;
  margin: 3rem 0;
  position: relative;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  align-items: center;
  text-align: center;
}

.malayalam-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.malayalam-text {
  font-family: 'Noto Sans Malayalam', sans-serif;
  font-size: 2rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out;
  align-items: center;
}

.malayalam-text::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.malayalam-text::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .malayalam-text {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .malayalam-text {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}

/* Projects Section */
.projects-section {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
}

.title-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--gold), #b5942d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textReveal 1.5s ease-out;
  text-align: center; /* Center the heading */
}

.title-decoration {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: lineReveal 1s ease-out;
}

/* Animations */
@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 1;
  }
}
/* Carousel Container */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Carousel */
.carousel {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 15px;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.8);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 1rem;
  z-index: 2;
}

.carousel-nav.next {
  right: 1rem;
}

/* View More Button */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.view-more-btn:hover {
  background: #b5942d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.view-more-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover i {
  transform: translateX(5px);
}

/* Features Section */
.features-section {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Feature Card */
.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex; /* Add this */
  flex-direction: column; /* Add this */
  align-items: center; /* Add this */
  text-align: center; /* Center the heading */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Feature Icon */
.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.9));
  padding: 1rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex; /* Ensure flexbox is used */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}
.feature-title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2rem;
    width: 70px;
    height: 70px;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    font-size: 1.75rem;
    width: 60px;
    height: 60px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }
}

/* CTA Buttons Section */
.cta-buttons-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.cta-buttons-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Base Button Styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-button i {
  font-size: 1.25rem;
}

/* Visit Now Button */
.visit-now {
  background: linear-gradient(135deg, var(--gold), #b5942d);
  color: var(--white);
}

.visit-now:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Call Now Button */
.call-now {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: var(--white);
}

.call-now:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* WhatsApp Now Button */
.whatsapp-now {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}

.whatsapp-now:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hover Effects */
.cta-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
}

.cta-button:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-buttons-container {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
}
/* Products Section */
/* Products Section */
.products-section {
  padding: 4rem 1rem;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.products-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.products-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem; /* Space for scrollbar */
}

.products-grid {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
}

/* Scroll Navigation Buttons */
.scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.8);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.scroll-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.scroll-nav.prev {
  left: 0;
}

.scroll-nav.next {
  right: 0;
}

/* Product Card */
.product-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 0 0 300px; /* Fixed width for each card */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-flag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Details */
.product-details {
  padding: 1.5rem;
  text-align: center; /* Center align text */
}

.product-name {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.product-features li {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
    gap: 0.5rem;
}

.product-features i {
  color: var(--gold);
  font-size: 1rem;
}

/* Enquire Now Button */
.enquire-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.enquire-now-btn:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-grid {
    gap: 1.5rem;
  }

  .product-card {
    flex: 0 0 250px; /* Adjust card width for smaller screens */
  }

  .product-image {
    height: 200px;
  }

  .product-name {
    font-size: 1.25rem;
  }

  .product-features li {
    font-size: 0.9rem;
  }

  .enquire-now-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  

  .products-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 90%; /* Full width cards on mobile */
    scroll-snap-align: center;
  }
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
}
/* About Section */
.about-section {
  padding: 4rem 1rem;
  background: var(--white);
  text-align: center;
}

/* Video Container */
.video-container {
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* About Content */
.about-content {
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.about-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
}

.footer-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  text-align: center;
}

.footer-contact {
  margin: 0 auto;
}

.footer-heading {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-address,
.footer-phone,
.footer-email {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.8;
  margin: 0.5rem 0;
}

.footer-email a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-email a:hover {
  color: #b5942d;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-tagline {
    font-size: 1.1rem;
  }

  .footer-heading {
    font-size: 1.25rem;
  }

  .footer-address,
  .footer-phone,
  .footer-email {
    font-size: 0.9rem;
  }
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #b5942d;
  transform: translateY(-5px);
}
.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
}
/* Gallery Hero */
.gallery-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('images/gallery-hero-bg.jpeg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-hero h1 {
  font-size: 3.5rem;
  color: var(--gold);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Masonry Grid */
.masonry-grid {
  columns: 4 300px;
  column-gap: 1.5rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  padding: 1.5rem;
  transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  padding: 2rem;
}

.lightbox-image {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.image-caption {
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: var(--gold);
  font-size: 3rem;
  cursor: pointer;
}
/* Hide SEO keywords visually but keep accessible to search engines */
.seo-keywords {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Additional fallback for older browsers */
.seo-keywords span {
  display: inline-block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: transparent;
  font-size: 1px;
  line-height: 1px;
}
/* Types of Masjid Carpets Page Styles */
.types-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/type-bg.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.types-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.types-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.types-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.type-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.type-image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.type-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.type-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.type-features li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.enquire-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.enquire-now-btn:hover {
  background: #b5942d;
  transform: translateY(-2px);
}

.why-choose-us {
  background: #f9f9f9;
  padding: 4rem 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.reason-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reason-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.reason-card p {
  font-size: 1rem;
  color: #666;
}

.cta-section {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--gold);
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}
/* Types Section - Mobile Responsive */
@media (max-width: 768px) {
  .types-section .container {
    padding: 1rem;
  }

  .type-card {
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  .type-image img {
    width: 100%; /* Make the image full width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px 10px 0 0; /* Rounded corners only at the top */
  }

  .type-content {
    padding: 1.5rem;
  }

  .type-content h2 {
    font-size: 1.5rem; /* Smaller heading for mobile */
    margin-bottom: 1rem;
  }

  .type-content p {
    font-size: 1rem; /* Smaller text for mobile */
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }

  .type-features li {
    font-size: 0.95rem; /* Smaller feature text for mobile */
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center-align features */
    gap: 0.5rem;
  }

  .type-features i {
    color: var(--gold);
  }

  .enquire-now-btn {
    font-size: 0.9rem; /* Smaller button text for mobile */
    padding: 0.75rem 1.5rem;
  }
}
/* Hero Section - Mobile Responsive */
@media (max-width: 768px) {
  .types-hero h1 {
    font-size: 2rem; /* Smaller heading for mobile */
  }

  .types-hero p {
    font-size: 1rem; /* Smaller text for mobile */
  }

  .call-now-btn {
    font-size: 0.9rem; /* Smaller button text for mobile */
    padding: 0.75rem 1.5rem;
  }
}
/* Menubar Styles */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile Navigation (Hidden by Default) */
.mobile-nav {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}
/* Mobile Navigation Styles */
.mobile-nav {
  display: none; /* Hidden by default */
}

.hamburger {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  display: none; /* Hidden by default */
}

.mobile-nav-links {
  display: none; /* Hidden by default */
  list-style: none;
  padding: 0;
  margin: 0;
  background: white;
  position: absolute;
  top: 60px;
  right: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1000;
}

.mobile-nav-links li {
  padding: 1rem;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

/* Show Mobile Navigation on Click */
.mobile-nav.active .mobile-nav-links {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* Hide desktop navigation on mobile */
  }

  .hamburger {
    display: block; /* Show hamburger menu on mobile */
  }

  .mobile-nav {
    display: block; /* Show mobile navigation container */
  }
}
/* About Hero Section */
.about-hero {
  position: relative;
  height: 70vh; /* Increased height to ensure content fits */
  min-height: 500px; /* Increased minimum height for better spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/type-bg.jpg') center/cover;
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem; /* Increased padding for better spacing */
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.about-hero h2 {
  font-size: 2rem;
  font-weight: 400;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.about-hero .cta-buttons {
  display: flex;
  flex-direction: column; /* Stack buttons vertically on mobile */
  gap: 1.5rem; /* Increased gap between buttons */
  padding: 0 1rem; /* Add padding to prevent buttons from being cut off */
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .about-hero {
    height: 80vh; /* Increased height for mobile to ensure content fits */
    min-height: 400px; /* Adjusted minimum height for mobile */
    padding: 2rem 1rem; /* Increased padding for better spacing */
  }

  .about-hero h1 {
    font-size: 2.5rem; /* Smaller font size for mobile */
    margin-bottom: 0.5rem; /* Reduced margin for better spacing */
  }

  .about-hero h2 {
    font-size: 1.5rem; /* Smaller font size for mobile */
    margin-bottom: 1.5rem; /* Adjusted margin for better spacing */
  }

  .about-hero .cta-buttons {
    flex-direction: column; /* Ensure buttons are stacked on mobile */
    gap: 1rem; /* Add gap between buttons */
    padding: 0 1rem; /* Ensure buttons don't touch the edges */
  }

  .btn-gold, .btn-outline {
    width: 100%; /* Make buttons full width on mobile */
    text-align: center; /* Center button text */
    padding: 1rem 2rem; /* Adjust padding for better touch targets */
  }
}

/* Our Story Section */
.our-story {
  padding: 4rem 1rem;
  background: var(--white);
  text-align: center;
}

.our-story .story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Mission and Vision Section */
.mission-vision {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center; /* Center the heading */
}

.mission-vision .section-title {
  text-align: center; /* Ensure the heading is centered */
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card, .vision-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 1rem;
  background: var(--white);
  text-align: center; /* Center the heading */
}

.testimonials-carousel {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  flex: 0 0 300px;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
}

.testimonial-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.client-name {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

/* Footer Section */
.site-footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
}

.footer-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  text-align: center;
}

.footer-contact {
  margin: 0 auto;
}

.footer-heading {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-address,
.footer-phone,
.footer-email {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.8;
  margin: 0.5rem 0;
}

.footer-email a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-email a:hover {
  color: #b5942d;
  text-decoration: underline;
}

/* Responsive Design for Footer Section */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-tagline {
    font-size: 1.1rem;
  }

  .footer-heading {
    font-size: 1.25rem;
  }

  .footer-address,
  .footer-phone,
  .footer-email {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Mission and Vision Section */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr; /* Stack cards vertically on mobile */
  }

  .mission-card, .vision-card {
    padding: 1.5rem; /* Reduce padding for smaller screens */
  }

  .mission-card h3, .vision-card h3 {
    font-size: 1.25rem; /* Smaller heading for mobile */
  }

  .mission-card p, .vision-card p {
    font-size: 0.9rem; /* Smaller text for mobile */
  }
}