/* Reset & Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header */
header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

/* Container */


/* Logo */
.logo-img {
    width: 20%;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.navbar a.home {
    color: #e92b24;
    font-weight: 700;
}

/* Phone */
.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}
.phone-icon {
    width: 30px;
    height: 30px;
    background: #e92b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-icon img {
    width: 60%;
    height: 60%;
}

/* Navbar toggle for mobile */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }
    .navbar ul.show {
        display: flex;
    }
    .navbar-toggle {
        display: flex;
    }
}

/* Marquee */
.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-top: 10px;
    color: white;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .marquee {
        animation: marquee 20s linear infinite;
    }
}

/* Video Gallery Section */
.custom-video-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.c-text-video {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: bold;
}

.c-text-video img {
    width: 52px;
    height: auto;
}

/* Video Grid */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.video-slide {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    position: relative;
}

.highlight{
    color :red;
}
#closeModal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }

    .c-text-video {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }

    .c-text-video img {
        width: 32px;
    }

    #modalVideo {
        height: 300px;
    }
}

/* Red Box */


.red-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}


.red-box button:hover {
    background: #f8d7da; /* lighter hover */
}

/* About Paragraph */
.about-description {
    text-align: justify !important;
}

/* Product Section */
/* Product Grid */
.fireworks-image {
      width: 30px;
      height: auto;
    }
  /* Product Box */
/* Product Box */
/* Product Box Container */
/* Product Box Container */
.product-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* keep space at bottom for title */
    align-items: center;
    border: 1px solid #222;
    width: 100%;
    height: 200px; /* total height including image overlap */
    position: relative;
   

    transition: transform 0.3s ease-in-out;
    padding-top: 10px;
    overflow: visible; /* allow image to overflow */
}

/* Image Wrapper */
.image-wrapper {
    display: flex
;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -18px;
    right: -13px;
    width: 100%;
    height: 200px;
    background-color: #feffff;
    /* border-radius: 8px; */
    overflow: hidden;
 
    transition: transform 0.3s ease-in-out;
}
.product-box:hover .product-image,
.product-box:hover .image-wrapper {
    transform: scale(1.05);
}
/* Product Image */
.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Title */
.product-title {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 31px; /* pushes title below the overlapping image */
    z-index: 2;
    color: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .product-child {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .product-child {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .image-wrapper {
        height: 150px;
        bottom: -5px;
        right: -10px;
    }

    .product-title {
        margin-top: 10px;
        font-size: 1rem;
    }
}

   /* Footer Base Styles */
.custom-footer-parent {
    position: relative;
    background-color: #d9140d; /* dark background */
    color: #fff;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: Arial, sans-serif;
}

/* Decorative Images */
.footer-img-left,
.footer-img-right {
    position: absolute;
    top: 0;
    width: 150px;
    height: auto;
    z-index: 1;
}

.footer-img-left {
    left: 0;
}

.footer-img-right {
    right: 0;
}

/* Footer Logo */
.footer-logo {
height:80%;
width:80%;
    margin-bottom: 20px;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Footer Links */
.cust-footer-links ul {
    padding-left: 0;
    list-style: none;
}

.footer-text-link {
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-text-link:hover {
    color: #fff212;
    text-decoration: none;
}

.c-arrow-icon {
    width: 16px;
    height: 16px;
}

/* Contact Info */
.cust-contact-us p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.cust-contact-us img {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-logo {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-img-left,
    .footer-img-right {
        width: 100px;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-text-link {
        font-size: 0.9rem;
    }

    .cust-contact-us p {
        flex-direction: column;
        align-items: flex-start;
    }

    .cust-contact-us img {
        margin-bottom: 5px;
    }
}
.footer-img-left, .footer-img-right {
    filter: brightness(0) invert(1);
    height: auto;
    position: absolute;
    top: 40px;
}
.footer-img-right {
    right: 40px;
    width: 180px;
}
/* About Us Section */
 .custom-card-about {
    background: #fff3f2;
    border: none;
    min-height: 270px;
    padding-top: 30px !important;
    position: relative;
}
.custom-text-about {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}

.custom-parent-about-us {
    position: relative;
    background-image: url('images/about_us_back.png'); /* replace with your image path */
    background-size: cover;      /* ensures image covers entire section */
    background-position: center; /* centers the image */
    background-repeat: no-repeat;
    padding: 100px 0;            /* adjust top/bottom padding as needed */
    color: #fff;                 /* text color for contrast */
}

/* Title Styling */
.products-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 71px 12px;
}

/* Image (rocket) Styling */
.cracker {
   position: absolute;
    right: 10%;
    bottom: 50%;
    transform: translateY(50%);
    height:180px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .products-text {
        font-size: 2rem;
    }
    .cracker {
        max-width: 80px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .products-text {
        font-size: 1.5rem;
    }
   
  .cracker {
    position: static;      /* remove absolute positioning */
    display: block;
    margin: 20px auto;     /* center it */
    transform: none;
    height: 120px;         /* smaller height for mobile */
    max-width: 100%;
  }

}

.whats-setup .icon-placeholder {
    background: #fbaa19;
    border-radius: 50%;
    padding: 6px;
}
.whats-setup h3 {
    color: #ed2b24;
    font-family: Poppins;
    font-size: 26px;
    font-weight: 600;
    line-height: 33px;
    text-align: left;
}
.whats-setup p {
    color: #000;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 300;
    line-height: 30px;
    text-align: justify;
}
.whats-setup {
    background: #f5f5f5;
}
.about-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 38px;
    text-align: justify;
}
.about-description, .welcome-title {
    color: #000;
    font-family: Poppins, sans-serif;
}


@media (min-width: 768px) {
    .py-md-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important;
    }
}

.join-us-content {
    background: #fff3f2;
}
.custom-parent-about-us {
    align-items: center;
    background-image: url(images/about_us_back.png);
    background-repeat: no-repeat;
    background-size:100% 100%;
    height: 300px;
    justify-content: center;
    position: relative;
    width: 100%;
}
@media (max-width: 768px) {
    .custom-parent-about-us {
        height: auto;         /* let it grow with content */
        padding: 40px 20px;   /* breathing space */
        background-size: cover;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .custom-parent-about-us {
        padding: 30px 15px;
        text-align: center;
    }
}/* Banner Section */
/* Banner */
.custom-parent-contact-us {
  background-image: url('images/contact-banner.png'); /* Your banner */
  background-size: cover;
  background-position: center;
  height: 252px;
  color: #fff;
}

.contact-banner-title {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  
}

/* Responsive */
@media (max-width: 768px) {
  .custom-parent-contact-us {
    height: auto;
    padding: 60px 20px;
  }
  .contact-banner-title {
    font-size: 32px;
  }
}


.input-field {
  border: 0.3px solid #4E4E4E;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 27px;
  width: 100%;
  position: relative;
}

.custom-textarea textarea {
  border: 0.3px solid #4E4E4E;
  resize: none;
  font-family: Poppins, sans-serif;
  background-color: #fff;
  box-sizing: border-box;
}

.floating-label {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6c757d;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.input-field:focus {
  outline: none;
  border-color: #dc3545;
}

.floating-label {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 18px;
  color: #6c757d;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

.input-field:focus + .floating-label,
.input-field:not(:placeholder-shown) + .floating-label {
  top: -17px;
  left: 12px;
  font-size: 14px;
  color: #dc3545;
}


.address-heading {
  border-bottom: 2px solid #dc3545;
  display: inline-block;
  color: red;
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


@media (min-width: 320px) and (max-width: 767px) {
  .custom-child-contact-us {
    padding: 20px 0;
  }

  .custom-contact-us {
    height: 98px;
  }

  .custom-contact-us h1 {
    font-size: 30px;
  }

}
/* Product Section */
/* Product Section */
.product-section {
  position: relative;
  text-align: center;
  padding: 60px 0;
  align-items: center;
    background: #25002a;
    display: flex
;
    height: 300px;
}

/* Left Design */
.cracker-design.cracker-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px; /* adjust as needed */
  z-index: 0;
}

/* Right Design */
.cracker-design.cracker-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px; /* adjust as needed */
  z-index: 0;
}

/* Crackers near heading */
.cracker-small {
  height: 150px;
  width: auto;
  margin: 0 5px;
  z-index: 1;
}

/* Products heading */
.products-text {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 71px 12px;
  color: white;
  position: relative;
  z-index: 1;
}

/* Tablet view */
@media (max-width: 992px) {
  .products-text {
    font-size: 2rem;
    margin: 50px 10px;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .products-text {
    font-size: 1.5rem;
    margin: 30px 8px;
    text-align: center; /* optional: center text on mobile */
  }
}

/* Responsive */
@media (max-width: 991px) {
  .cracker-small {
    height: 90px;
  }
  .products-text {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .cracker-design {
    display: none; /* hide left & right designs on mobile */
  }
  .cracker-small {
    height: 60px;
  }
  .products-text {
    font-size: 1.6rem;
  }
}
.table-header th {
      font-family: Poppins;
      font-size: 17px;
      font-weight: 500;
      line-height: 30px;
      text-align: center;
      background-color: rgb(237, 43, 36);
      color: #fff;
      border-right: 1px solid #fff;
    }
    .custom-tr-product td {
      border-top: 1px solid rgb(161,161,161);
      border-bottom: 1px solid rgb(161,161,161);
      text-align: center;
      padding: 10px;
    }
    .custom-tr-product img {
      width: 50px;
      height: auto;
    }
    /* Sticky header container */
.custom-table-parent .fixed-header1 {
    position: sticky;
    width: 100%;
    z-index: 1000;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: 110px; /* desktop offset */
}

/* Wrapper to center notice */
.notice-wrapper {
    text-align: center;
}

/* Notice box styling */
.notice-container {
    display: inline-block;
    background-color: rgb(237, 43, 36);
    color: rgb(249, 248, 0);
    border-radius: 16px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 20px 0;
    box-shadow: rgba(0,0,0,0.1) 0px 2px 10px;
    position: sticky;
    top: 50px; /* desktop offset for inner container */
    z-index: 1000;
}

/* Mobile view adjustments */
@media (max-width: 767px) {
    .custom-table-parent .fixed-header1 {
        top: 80px; /* reduced offset for mobile screens */
    }

    .notice-container {
        font-size: 16px;          /* smaller font */
        line-height: 22px;        /* smaller line height */
        padding: 8px 12px;        /* smaller padding */
        margin: 15px 10px;        /* smaller margin */
        border-radius: 12px;      /* slightly smaller corners */
        top: 40px;                /* reduced offset for sticky inner container */
        width: auto;              /* adjust width to screen */
    }
}
.custom-accordion-button {
    color: rgb(237, 43, 36);       /* text color */
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px; 
    margin-bottom: 0;               /* removes default margin */
    justify-content: center;        /* center text horizontally in button */
    background-color: #fff;         /* optional: white background */
    border: none;                   /* optional: remove default border */
}

/* Optional: Keep the default collapse icon on the right */
.custom-accordion-button::after {
    margin-left: auto;
}
