/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d4af37;
  color: #111;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 20px;
  font-weight: bold;
}

/* Navigation */
.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #f39c12;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

.hero-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #e67e22;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #f39c12;
}

/* ===== ABOUT ===== */
/* ===== About Us Section ===== */
/* ===== About Us Section Styles ===== */
.about {
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #f1f1f1;
    padding: 0 10px;
}

/* ===== Unordered List Styles (ul, li) ===== */
.about ul {
    list-style-type: none; /* Remove default list bullets */
    padding: 0;
    margin: 20px 0;
}

.about ul li {
    font-size: 18px;
    color: #f1f1f1; /* Light color for list items */
    margin: 10px 0;
    line-height: 1.8;
}

.about ul li::before {
    content: "• "; /* Custom bullet */
    color: #ff6f61; /* Color for bullet */
    font-weight: bold;
    font-size: 24px; /* Size of the bullet */
    margin-right: 10px;
}

/* ===== Music Waves Background (Three Flowing Colors) ===== */
.music-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e90ff, #32cd32, #ffcc00);
    background-size: 300% 300%;
    animation: wave-animation 15s ease infinite;
    z-index: -2;
}

/* Animation to create a flowing wave effect */
@keyframes wave-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* ===== Music Notes Animation (Smaller Music Symbols Falling) ===== */
.music-notes {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}

.note {
    font-size: 30px; /* Smaller size for music symbols */
    color: white;
    position: absolute;
    top: -50px;
    animation: fall 6s infinite linear;
    opacity: 0.8; /* Slight transparency */
}

@keyframes fall {
    0% {
        top: -50px;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .about h1 {
        font-size: 30px;
    }

    .about h2 {
        font-size: 24px;
    }

    .about p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Adjusting the music notes for smaller screens */
    .note {
        font-size: 24px; /* Smaller music symbols on mobile */
    }

    /* Adjusting unordered list and list items */
    .about ul li {
        font-size: 16px;
    }

    /* Custom bullet size and color for mobile */
    .about ul li::before {
        font-size: 20px; /* Smaller bullet size on mobile */
        margin-right: 8px; /* Reduced margin */
    }
}

/* ===== SERVICES NEW DESIGN ===== */
.services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0056b3, #00c6ff); /* event blue gradient */
  text-align: center;
  color: #fff;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  color: #111;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-card .icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0056b3;
}

.service-card p {
  font-size: 16px;
  color: #444;
}

/* Fun animation for icons */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services h2 {
    font-size: 28px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
}


/* ===== EVENTS SECTION ===== */
.events {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
  color: #fff;
}

.events h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffcc00;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.event-card {
  display: flex;
  align-items: center;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.event-date {
  background: #ffcc00;
  color: #111;
  text-align: center;
  border-radius: 10px;
  padding: 10px 15px;
  margin-right: 20px;
  min-width: 70px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.event-date .day {
  font-size: 26px;
  font-weight: bold;
  display: block;
}

.event-date .month {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #1a1a2e;
}

.event-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* View More Button */
.event-btn {
  margin-top: 40px;
}

.event-btn .btn {
  background: #ffcc00;
  color: #111;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.event-btn .btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .events h2 {
    font-size: 28px;
  }
  .event-card {
    flex-direction: row;
    text-align: left;
  }
  .event-date {
    margin-bottom: 0;
  }
}

/* ===== GALLERY ===== */
.gallery {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffcc00, #ff6f61);
  text-align: center;
  color: #fff;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img,
.gallery-item iframe {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover iframe {
  transform: scale(1.1);
}

/* Overlay Text */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* For YouTube Video Cards */
.gallery-item.video iframe {
  height: 220px; /* Video cards should be consistent in size */
}

.gallery-item.video:hover iframe {
  transform: scale(1.05); /* Slight zoom effect for videos */
}

/* Responsive */
@media (max-width: 768px) {
  .gallery h2 {
    font-size: 28px;
  }
  .gallery-item img,
  .gallery-item iframe {
    height: 180px;
  }
}
/* View More Gallery Button */
.gallery-btn {
  margin-top: 40px;
  text-align: center;
}

.gallery-btn .btn {
  background: #ffcc00;
  color: #111;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, transform 0.3s;
}

.gallery-btn .btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 20px;
  background: url('images/testimonial-bg.jpg') no-repeat center center/cover; /* Add your event-related bg image */
  text-align: center;
  color: #fff;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Grid for testimonial cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual testimonial cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.9); /* semi-transparent for bg image */
  color: #111;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Quote icon */
.quote-icon {
  font-size: 48px;
  color: #ff6f61;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}

/* Text and client name */
.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card .client-name {
  font-weight: bold;
  color: #ff6f61;
  display: block;
  text-align: right;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 28px;
  }
  .testimonial-card p {
    font-size: 14px;
  }
  .quote-icon {
    font-size: 36px;
    top: -15px;
  }
}
/* ===== FAQ ===== */
.faq {
  padding: 80px 20px;
  background: #FFD700; /* golden background */
  color: #111;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #111;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* FAQ container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Question Button */
.faq-question {
  width: 100%;
  background: #00C0F0; /* darker golden */
  color: #111;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s;
}

/* Open question toggle */
.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #FFF8DC; /* light golden */
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Open answer */
.faq-item.active .faq-answer {
  max-height: 300px; /* enough for content */
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 28px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}


/* ===== BLOG ===== */
/* ===== BLOG ===== */
.blog {
  padding: 80px 20px;
  background: #f8f9fa; /* Light background for contrast */
  text-align: center;
}

.blog h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-post {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
  background: #ffc107;
  border: none;
  padding: 15px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
}

.blog-title:hover {
  background: #ff6f61;
  color: white;
}

.blog-content {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  color: #555;
}

.blog-post.active .blog-content {
  display: block;
}

.read-more {
  text-decoration: none;
  font-weight: bold;
  color: #0056b3;
  font-size: 16px;
  transition: color 0.3s;
}

.read-more:hover {
  color: #ff6f61;
}

/* Responsive */
@media (max-width: 768px) {
  .blog h2 {
    font-size: 28px;
  }

  .blog-post h3 {
    font-size: 18px;
  }

  .blog-post p {
    font-size: 14px;
  }

  .read-more {
    font-size: 14px;
  }
}
/* ===== News Highlights Section ===== */
.news-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.news-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff6600, #0077b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid for Desktop */
.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.news-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.news-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.news-item:hover img {
  transform: scale(1.05);
}

/* Lightbox (shared with gallery) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #ff6600;
}

/* ===== Mobile Carousel ===== */
@media (max-width: 768px) {
  .news-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    scroll-behavior: smooth;
  }

  .news-item {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .news-item img {
    height: 200px;
  }
}

/* ===== ARTIST REGISTRATION ===== */
.artist-registration {
  padding: 50px 20px;
  background: #fff3e0; /* Light background to differentiate */
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.artist-registration h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6f61; /* Golden-Red color */
}

.artist-registration p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.artist-registration .btn {
  background: #ff6f61;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.artist-registration .btn:hover {
  background-color: #ffc107;
}
/* ===== PARTNERSHIPS AND SPONSORS ===== */
/* ===== PARTNERSHIPS AND SPONSORS ===== */
.partnerships {
    padding: 50px 20px;
    background-color: #ffd700; /* Golden Background */
    text-align: center;
}

.partnerships h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.partners-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-card {
    background-color: #ffffff; /* White background for cards */
    padding: 20px;
    border-radius: 10px;
    width: 22%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.partner-card img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.partner-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.partner-card .btn {
    background-color: #ff6f61; /* Button color */
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.partner-card .btn:hover {
    background-color: #ffc107;
}

/* Add hover effect for the partner cards */
.partner-card:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .partner-card {
        width: 100%;
    }
}
/* ===== BECOME A PARTNER ===== */
.become-partner {
    background-color: #ff6f61; /* Golden background */
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.become-partner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.become-partner p {
    font-size: 18px;
    margin-bottom: 30px;
}

.become-partner .btn {
    background-color: #fff;
    color: #ff6f61;
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 10px 0;
    transition: background-color 0.3s ease;
}

.become-partner .btn:hover {
    background-color: #ffc107;
}

.become-partner .btn i {
    margin-right: 8px; /* Space between the icon and text */
}

/* Style for WhatsApp and Call Us buttons */
.call-us-btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.call-us-btn i {
    font-size: 20px;
    margin-right: 10px;
}

/* WhatsApp button specific styling */
.call-us-btn.fa-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

.call-us-btn.fa-phone {
    background-color: #34b7f1; /* Call Us blue */
    color: white;
}

.call-us-btn:hover {
    opacity: 0.9;
}

/* ===== VOLUNTEER ===== */
.volunteer {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.volunteer h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.volunteer p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.volunteer form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.volunteer input,
.volunteer select,
.volunteer textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.volunteer .btn {
    background-color: #ff6f61;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.volunteer .btn:hover {
    background-color: #ff3b2f;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 20px;
  background: #f8f9fa; /* Light background for contrast */
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Contact Container: Flexbox Layout */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

/* Form Styling */
form {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

form input:focus, form select:focus, form textarea:focus {
  border-color: #ffc107; /* Golden border on focus */
}

form button {
  width: 100%;
  background: #ffc107;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #ff6f61; /* Hover effect */
}

/* Contact Information */
.contact-info {
  flex: 1;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info a {
  color: #ffc107;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ff6f61;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  form {
    width: 100%;
    max-width: 400px;
  }

  .contact-info {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }
}

.footer {
  background: #d4af37;
  color: #111;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  width: 30%;
}

.footer-column h3 {
  font-size: 20px;
  color: #FFD700; /* Golden color */
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #FFD700;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #222;
    width: 200px;
    border-radius: 0 0 8px 8px;
  }

  .navbar ul {
    flex-direction: column;
    padding: 10px;
  }

  .navbar ul li {
    margin: 15px 0;
    text-align: center;
  }

  .navbar.active {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .hero-text h2 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }
}
.floating-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between buttons */
}

.floating-button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: white;
  line-height: 50px;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
  background-color: #25D366; /* WhatsApp green */
}

.call-float {
  background-color: #34b7f1; /* Call blue */
}

/* Ensure icons are centered */
.floating-button i {
  line-height: 50px;
}

@media (max-width: 768px) {
  .floating-container {
    right: 10px;  /* Make it a bit more mobile-friendly */
    bottom: 15px;
  }

  .floating-button {
    width: 45px;
    height: 45px;
  }

  .floating-button i {
    font-size: 20px;  /* Slightly smaller icons on mobile */
  }
}
