/* ================ */
/* BASE STYLES */
/* ================ */
:root {
    --primary-color: #003087;
    --secondary-color: #DC143C;
    --gradient-primary: linear-gradient(45deg, #ff6b6b, #ff8e53);
    --text-dark: #333;
    --text-light: #f8f9fa;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-light);
    overflow-x: hidden;
  }
  
  /* ================ */
  /* TYPOGRAPHY */
  /* ================ */
  h1, h2, h3, .section-title, .festival-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  h4, h5, h6,
  .card h5,
  .contact-card h3,
  .digital-badge,
  .badge,
  .contact-form h4 {
    font-family:'Poppins';
  }
  
  .section-title {
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* ================ */
  /* COMPONENTS */
  /* ================ */
  /* Cards */
  .card {
    border: none;
    transition: var(--transition);
    margin-bottom: 1.25rem;
    height: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  
  .card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f2f3f4;
  }
  
  /* Buttons */
  .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
  }
  
  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
  }
  
  .social-btn {
    transition: var(--transition);
  }
  
  .social-btn:hover {
    transform: scale(1.1);
    background: #ff6b6b;
    color: white !important;
  }
  
  /* Badges */
  .digital-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  /* ================ */
  /* SECTIONS */
  /* ================ */
  /* Why Choose Us */
  .why-choose-us {
    padding: 3.75rem 0;
    text-align: center;
  }
  
  .why-choose-us h2 {
    color: var(--primary-color);
    margin-bottom: 1.875rem;
  }
  
  /* Carousel */
  .carousel-section {
    background-color: var(--text-light);
  }
  
  .carousel-item img {
    height: 31.25rem;
    object-fit: cover;
    width: 100%;
  }
  
  /* Parallax */
  .parallax-section {
    position: relative;
    height: 31.25rem;
    overflow: hidden;
  }
  
  .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/About/about2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }
  
  .parallax-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.737);
    padding: 1.25rem;
  }
  
  /* Contact Section */
  .contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffefba 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .contact-card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border: none;
  }
  
  .contact-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
  }
  
  .contact-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
  }
  
  .festival-text {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
    background: white;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
  }
  
  .form-control:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
  }
  
  /* Safety Tips */
  .safety-tips-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url('../images/contact/contact1.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
    color: white;
    margin-bottom: 3rem;
  }
  
  .safety-tips-text {
    /* background-color: rgba(0, 0, 0, 0.6); */
    color: white;
    padding: 1.5rem;
    display: inline-block;
    border-radius: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .safety-tip-card {
    border-radius: 0.625rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 1.25rem;
    border: none;
    overflow: hidden;
  }
  
  .safety-tip-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  }
  
  .safety-tip-card .card-body {
    padding: 2rem;
  }
  
  .do-card {
    border-top: 5px solid #4CAF50;
  }
  
  .dont-card {
    border-top: 5px solid #F44336;
  }
  
  .instruction-card {
    border-top: 5px solid #2196F3;
  }
  
  .icon-green, .icon-red, .icon-blue {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .icon-green { color: #4CAF50; }
  .icon-red { color: #F44336; }
  .icon-blue { color: #2196F3; }
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transition: var(--transition);
    text-decoration: none;
  }
  
  .back-to-top.active {
    opacity: 1;
  }
  
  .back-to-top:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
  }
  
  /* ================ */
  /* ANIMATIONS */
  /* ================ */
  .sparkle {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1.5s ease-in-out infinite alternate;
  }
  
  @keyframes sparkle {
    0% { transform: scale(0.4); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.8; }
  }
  
  /* Animation delays */
  [data-aos][data-aos-delay="100"] { animation-delay: 0.1s; }
  [data-aos][data-aos-delay="200"] { animation-delay: 0.2s; }
  [data-aos][data-aos-delay="300"] { animation-delay: 0.3s; }
  [data-aos][data-aos-delay="400"] { animation-delay: 0.4s; }
  
  /* ================ */
  /* RESPONSIVE ADJUSTMENTS */
  /* ================ */
  @media (max-width: 992px) {
    .carousel-item img, 
    .parallax-section {
      height: 25rem;
    }
  
    .festival-text {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 2.5rem 0;
    }
  
    .carousel-item img, 
    .parallax-section {
      height: 18.75rem;
    }
  
    .card {
      margin-bottom: 0.9375rem;
    }
  
    .contact-card, 
    .contact-form {
      padding: 1.5rem;
    }
  
    .festival-text {
      font-size: 1.8rem;
    }
  
    .safety-tips-bg {
      padding: 3rem 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .safety-tips-text {
      padding: 1rem;
      font-size: 1rem;
    }
    
    .safety-tip-card .card-body {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .carousel-item img, 
    .parallax-section {
      height: 15.625rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .festival-text {
      font-size: 1.5rem;
    }
  
    .contact-form {
      padding: 1.5rem;
    }
  }
  
  /* Index */.welcome-section_home {
        display: flex;
        padding: 5rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
      }
  
      .welcome-content_home {
        flex: 1;
        padding-right: 2rem;
      }
  
      .welcome-content_home h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #2c3e50;
      }
  
      .welcome-content_home p {
        font-size: 1.2rem;
        color: #34495e;
        margin-bottom: 2rem;
        line-height: 1.6;
      }
  
      .welcome-image_home {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      .welcome-image_home img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        animation: float_home 3s ease-in-out infinite;
      }
  
      @keyframes float_home {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
      }
  
      .parallax_home {
        background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        min-height: 400px;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        position: relative;
      }
  
      .parallax_home::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
      }
  
      .parallax-content_home {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
      }
  
      .parallax-content_home h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
      }
  
      .parallax-content_home p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.6;
      }
  
     .btn_home {
    display: inline-block;
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* beautiful gradient */
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: none;
}

.btn_home:hover {
    background: linear-gradient(135deg, #feb47b, #ff7e5f);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

  
      .specs-section_home {
        padding: 4rem 2rem;
        background-color: white;
      }
  
      .section-title_home {
        text-align: center;
        margin-bottom: 3rem;
        color: #2c3e50;
      }
  
      .specs-container_home {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .spec-card_home {
        flex: 1 1 300px;
        background-color: #f8f9fa;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
      }
  
      .spec-card_home:hover {
        transform: translateY(-10px);
      }
  
      .spec-card_home h3 {
        color: #3498db;
        margin-bottom: 1rem;
      }
  
      .spec-card_home p {
        color: #7f8c8d;
        line-height: 1.6;
      }
  
      .brands-section_home {
        padding: 4rem 2rem;
        background-color: #f8f9fa;
      }
  
      .brands-container_home {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .brand-logo_home {
        width: 200px;
        height: 190px;
        object-fit: contain;
        opacity: 0.9;
        transition: all 0.3s ease;
      }
  
      .brand-logo_home:hover {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.1);
      }
  
      @keyframes float-bubble_home {
        0% { transform: translateY(0) rotate(0deg); opacity: 1; }
        100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
      }
  
      @media (max-width: 768px) {
        .welcome-section_home {
          flex-direction: column;
          padding-top: 8rem;
        }
  
        .welcome-content_home {
          padding-right: 0;
          margin-bottom: 2rem;
          text-align: center;
        }
  
        .nav-links_home {
          display: none;
        }
      }


      /* Parallax Section Styles - About Page */
.parallax-section_about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
  overflow: hidden;
}

.parallax-bg_about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about2/parallaxbanner.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.parallax-overlay_about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.parallax-content_about {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 3rem 0;
  max-width: 800px;
  width: 100%;
}

.parallax-container_about {
  padding: 0 1rem;
}

.parallax-content_about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.parallax-tagline_about {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.parallax-text-container_about {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 0.5rem;
}

.parallax-description_about {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.parallax-btn_about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.parallax-btn_about:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments - About Page */
@media (max-width: 768px) {
  .parallax-content_about h2 {
    font-size: 2rem;
  }
  
  .parallax-tagline_about {
    font-size: 1.1rem;
  }
  
  .parallax-description_about {
    font-size: 1rem;
  }
  
  .parallax-text-container_about {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .parallax-section_about {
    min-height: 90vh;
  }
  
  .parallax-content_about h2 {
    font-size: 1.75rem;
  }
  
  .parallax-btn_about {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
}




.heading-3d {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  text-shadow:
    1px 1px 0 #ccc,
    2px 2px 0 #bbb,
    3px 3px 0 #aaa,
    4px 4px 0 #999,
    5px 5px 0 #888,
    6px 6px 0 #777,
    7px 7px 0 #666,
    8px 8px 15px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.float-pulse-animation {
animation: floatPulse 3s ease-in-out infinite;
max-width: 100%;
height: auto;
}

.firework-image {
overflow: hidden;
border-radius: 8px;
}

@keyframes floatPulse {
0% {
  transform: translateY(0px) scale(1);
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.7)) drop-shadow(0 0 10px rgba(255, 165, 0, 0.7));
}
50% {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8)) drop-shadow(0 0 25px rgba(255, 165, 0, 0.8));
}
100% {
  transform: translateY(0px) scale(1);
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.7)) drop-shadow(0 0 10px rgba(255, 165, 0, 0.7));
}
}

/* Responsive adjustments */
@media (max-width: 768px) {
.row.justify-content-center.align-items-center {
  flex-direction: column;
}
.col-md-3, .col-md-6 {
  margin-bottom: 20px;
}
.float-pulse-animation {
  animation: floatPulse 4s ease-in-out infinite;
}
}


/* icons */
/* Floating Contact Icons */
.scroll_icon {
  position: fixed;
  width: 58px;
  height: 58px;
  font-size: 26px;
  text-align: center;
  line-height: 58px;
  z-index: 9999;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Phone (Blue gradient) */
#phoneIcon {
  bottom: 90px;
  left: 20px;
  background: linear-gradient(135deg, #0d6efd, #4facfe);
}

/* WhatsApp (Green gradient) */
#whatsappIcon {
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* YouTube (Red gradient) */
#youtubeIcon {
  bottom: 160px; /* Positioned above phone icon */
  left: 20px;
  background: linear-gradient(135deg, #FF0000, #CC0000); /* Red gradient */
}

/* Hover effects */
.scroll_icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.scroll_icon i {
  vertical-align: middle;
}

/* Floating image with glow and heartbeat animation */
.floating-image {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 80px;
  height: auto;
  z-index: 9999;
  transition: transform 0.3s ease;
  animation: heartbeat 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.floating-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
  animation: heartbeat 0.8s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
      transform: scale(1);
  }
  25% {
      transform: scale(1.05);
  }
  35% {
      transform: scale(1);
  }
  45% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-image {
      width: 60px;
      right: 10px;
  }
  .scroll_icon {
      width: 50px;
      height: 50px;
      font-size: 22px;
      line-height: 50px;
  }
  /* Adjust YouTube position on mobile */
}