/* Performance optimizations and mobile improvements */
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optimize font loading */
*{
    font-family: "Gill Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
    background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Text selection styling */
::selection {
    background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
    color: white;
}

body{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    line-height: 1.6;
    padding-top: 80px; /* Add space for fixed navbar */
    min-height: 100vh;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particles background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.2) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.7; transform: translateY(0px) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-20px) rotate(180deg); }
}

/* Image optimization */
img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* Gallery with energetic hover effects */
.gallery img{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.gallery img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    filter: brightness(1.1);
}

#gallery-popup .modal-img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
}
.bg-light{
    background-color: transparent !important;
}
.carousel-item{
    height: 100vh;
    min-height: 300px;
}
.carousel-caption{
    bottom: 220px;
}
.carousel-caption h5{
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}
.carousel-caption p{
    width: 60%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}
.carousel-caption a{
    text-transform: uppercase;
    text-decoration: none;
    background: darkorange;
    padding: 10px 30px;
    display: inline-block;
    color: #a73131;
    margin-top: 15px;
}
.navbar-nav a{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}
.navbar-light .navbar-brand{
    color: #ffffff;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover{
    color: #5a5050;
}
.navbar-light .navbar-nav .nav-link{
    color: #fff;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover{
    color: #fff;
}
.w-100{
    height: 100vh;
}

/* Enhanced navbar styling with energetic colors */
.navbar.fixed-top {
    z-index: 1030;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    border-bottom: 2px solid rgba(245, 87, 108, 0.3);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #f5576c !important;
    transform: translateY(-2px);
}

.navbar-toggler{
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    background: rgba(255,255,255,0.9);
    border: 2px solid #f5576c;
}
/* Enhanced mobile responsiveness */
@media only screen and (max-width: 767px){
    body {
        padding-top: 100px; /* More space on mobile for larger navbar */
    }
    
    .navbar-nav{
        text-align: center;
        background: rgba(0,0,0, 0.5);
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .carousel-caption{
        bottom: 165px;
    }
    
    .carousel-caption h5{
        font-size: 17px;
    }
    
    .carousel-caption a{
        padding: 10px 15px;
        font-size: 15px;
    }
    
    /* Better mobile layout for main content */
    .col-custom {
        margin: 20px 10px !important;
        padding: 20px !important;
    }
    
    /* Mobile-friendly audio players */
    .audio-player {
        width: 100% !important;
        max-width: none !important;
        margin: 10px 0 !important;
    }
    
    /* Optimize button spacing on mobile */
    .btn {
        margin: 5px 2px !important;
        font-size: 14px !important;
        padding: 8px 12px !important;
    }
    
    /* Better accordion spacing on mobile */
    .accordion {
        margin: 20px 10px !important;
        max-width: calc(100% - 20px) !important;
    }
}

/* Tablet optimization */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        padding-top: 90px; /* Adjusted spacing for tablets */
    }
    
    .col-custom {
        max-width: 90%;
    }
    
    .accordion {
        max-width: 90% !important;
    }
}
.card-img-top{
    border-radius: 50px;
    padding: 20px;
}
.card{
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em;
}
.card-body{
    padding: 25px;
    margin-top: -15px;
}
.btn-primary{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    width: 120px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover{
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
}

/* Social media buttons with energetic effects */
.btn.border-orange {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: 2px solid #f5576c !important;
    transition: all 0.3s ease;
}

.btn.border-orange:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}
h3{
    color: rgb(0, 91, 228);
}
h5{
    color: rgb(0, 91, 228);
}
.us h2{
   color: var(--yellow);
}
.us .box h4{
    background-color: var(--green);
}
/* Main content container spacing */
.container{
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px; /* Additional spacing for main content */
} 
  .yt-holder{
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56%;
    border: 1px solid rgb(255, 164, 28);
  }
  .yt-holder > iframe{
    position: absolute;
    width: 100%;
    height: 100%;
  }
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .accordion{
    max-width: 600px !important;
    margin: 50px auto;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    overflow: hidden;
  }

  .accordion-item {
    border: none !important;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
  }

  .accordion-item:hover {
    transform: translateX(5px);
  }

  .accordion-button{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    position: relative;
    box-shadow: none !important;
    font-weight: 600;
    border: none !important;
    transition: all 0.3s ease;
  }
  
  .accordion-button:active, .accordion-button:focus{
    border: none !important;
    box-shadow: 0 0 20px rgba(245, 87, 108, 0.4) !important;
  }

  .accordion-button:hover{
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  .accordion-button::after{
        content:"";
       background-color: #ffffff;
       border-radius: 5px;
       transition: .5s !important;
  }

  .accordion-body {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    backdrop-filter: blur(5px);
    border-radius: 0 0 10px 10px;
  }

  .whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  .whatsapp-icon {
    margin-top: 16px;
  }

  /* for mobile */
  @media screen and (max-width: 767px){
    .whatsapp-icon {
      margin-top: 10px;
    }
    .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
    }
  }

.comment-section {
  margin-top: 20px;
}

.comment-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.comment-section form {
  margin-bottom: 20px;
}

.comment-section .form-label {
  font-weight: bold;
}

.comment-section .form-control {
  border-radius: 5px;
  border: 1px solid #f3943a;
  padding: 10px;
}

.comment-section .btn-primary {
  background-color: #fd7a00;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
}

.comment-section .btn-primary:hover {
  background-color: #e66a00;
}

#comments-list {
  margin-top: 20px;
}

#comments-list .comment {
  border-bottom: 1px solid #e29219;
  padding: 10px 0;
}

#comments-list .comment strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

#comments-list .comment p {
  margin: 0;
}
.audio-player {
  width: 100%;
  max-width: 600px;
  height: 60px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  border: 2px solid #f5576c;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.audio-player:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.audio-player::-webkit-media-controls-panel {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display,
.audio-player::-webkit-media-controls-timeline,
.audio-player::-webkit-media-controls-volume-slider {
  filter: brightness(1.2) saturate(1.1);
}

/* Floating animation for key elements */
.floating {
  animation: floating 3s ease-in-out infinite;
}

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

/* Music visualizer inspired animation */
.music-bars {
  display: inline-block;
  margin: 0 2px;
}

.music-bar {
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
  margin: 0 1px;
  animation: musicVisualize 1s ease-in-out infinite;
  border-radius: 2px;
}

.music-bar:nth-child(1) { animation-delay: 0.1s; }
.music-bar:nth-child(2) { animation-delay: 0.2s; }
.music-bar:nth-child(3) { animation-delay: 0.3s; }
.music-bar:nth-child(4) { animation-delay: 0.4s; }
.music-bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes musicVisualize {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Pulse effect for interactive elements */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
  100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #f5576c 100%);
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Loading animation */
.loader {
  border: 4px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  border-top: 4px solid #667eea;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade in animation for content */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple effect for buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.3s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced mobile experience */
@media (hover: none) and (pointer: coarse) {
  .energetic-glow {
    animation: none;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  }
  
  .floating {
    animation: none;
  }
  
  .music-bars {
    display: none;
  }
}

/* Custom cursor for desktop */
@media (hover: hover) and (pointer: fine) {
  .btn, .accordion-button, .navbar-brand {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .btn:hover, .accordion-button:hover, .navbar-brand:hover {
    transform: scale(1.02);
  }
}

/* Performance optimization */
* {
  will-change: auto;
}

.energetic-glow, .floating, .music-bar {
  will-change: transform, box-shadow;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.black-text {
  color: black;
}
.enhanced-title {
  color: #ff6600; /* Orange color */
  font-size: 1.0em;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.enhanced-img {
  border: 2px solid #ff6600; /* Orange border */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.enhanced-text {
  color: #333;
  font-size: 1.0em;
  background-color: #fff3e0; /* Light orange background */
  padding: 10px;
  border-left: 5px solid #ff6600; /* Orange border on the left */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.enhanced-text i {
  color: #ff6600; /* Orange color for icons */
}

.enhanced-price {
  background-color: #312f2d; /* Light orange background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-tag {
  color: #ff6600; /* Orange color */
  font-size: 2em;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-button {
  background-color: #ff6600; /* Orange background */
  border: none;
  color: white;
  font-size: 1.0em;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #e65c00; /* Darker orange on hover */
}

.contact-button i {
  margin-right: 100px;
}
/* Fullscreen image styling */
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Exit icon styling */
.exit-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2em;
  color: white;
  cursor: pointer;
}