/* Navbar styling */
.navbar {
  background-color: #ffffff;
  /* color: black; */
}

.announce{
          display: flex; justify-content: center; flex-wrap: wrap; align-items: center; gap: 15px;
        }
    @media (max-width: 768px) {
            .announce{
              display: flex;
              justify-content: flex-start;
            }
        }
.navbar-nav .nav-item .nav-link {
  color: rgb(0, 0, 0);
  padding: 15px;
  font-size: 16px;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #4312f3;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
  background-color: #343a40;
  border-radius: 5px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: white;
  padding: 10px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

.navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff !important;
  border-radius: 0.5rem;
  padding-left: 12px;
  padding-right: 12px;
}

.animated-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  padding: 0;
}

.animated-toggler .bar {
  height: 3px;
  width: 100%;
  background-color: #81019b;
  border-radius: 5px;
  transition: 0.4s ease;
  transform-origin: center;
}

/* Animate to X when navbar is open */
.navbar-toggler[aria-expanded="true"] .top-bar {
  transform: rotate(45deg) translateY(8px);
}
.navbar-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .bottom-bar {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hamburger menu (mobile view) */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-color: #1900ff;
  color: black !important;
}

        /* Fix active nav link background */
.navbar .nav-link.active,
.navbar .nav-link:focus,
.navbar .nav-link.show {
  background-color: #09b1ff !important; /* Your preferred color */
  color: #fff !important;
  border-radius: 6px;
}

/* Optional: Improve hover for dropdown items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: #059bff !important;
  color: #fff !important;
}

/* Optional: Dropdown menus color fix */
.dropdown-menu {
  background-color: #444 !important;
  color: white;
}

/* Keep icons and links white on hover */
.navbar .nav-link i {
  color: white !important;
}

/* Make the navbar fully responsive */
@media (max-width: 768px) {
  .navbar-collapse {
    flex-direction: column;
    gap: 10px;
  }

  .navbar-nav {
    text-align: center;
    display: flex;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-menu .dropdown:hover > .dropdown-menu {
    display: block;
    left: 80%;
    top: 0;
    margin-top: 0;
  }
}

/* Hero section */



    /* Heading Styling */

    .hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-section h1 {
  
  margin-bottom: 20px;
  color: white;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  color: #fff;
  max-width: 800px;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.hero-subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background: linear-gradient(to right, #007bff, #0056b3);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}



/* Hero section end */

/* section 3 */
.feature-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  object-position: center;
}
.feature-card{
  border: 10px solid rgb(153, 0, 255);
  border-radius: 20px;
  margin-top: 10px;
}



/* section 4 */
        .product-section {
            padding: 40px 20px;
            background-color: #f9f9f9;
            text-align: center;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }

        .options {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .option {
            padding: 12px 25px;
            background-color: #ff4500;
            color: white;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .option:hover {
            background-color: #e03e00;
        }

        .content {
            margin-top: 20px;
            background-color: gray;
        }

        .content-item {
            display: block; /* Display all content initially */
            margin-bottom: 30px;
            text-align: left;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 30px;
        }

        

        .content-item.hide {
            display: none; /* Hide the content when it should be hidden */
        }

        .content-item iframe {
            max-width: 100%;
            height: 315px;
        }

        .content-text {
            width: 45%;
        }

        .content-text h3 {
            font-size: 2rem;
            color: #ffffff;
        }

        .content-text p {
            font-size: 1rem;
            color: #ffffff;
            margin: 20px 0;
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .option {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .content-item {
                flex-direction: column;
                text-align: center;
            }

            .content-text {
                width: 100%;
            }

            iframe {
                width: 100%;
            }
        }

        @media screen and (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }

            .option {
                padding: 10px 18px;
                font-size: 0.8rem;
            }
     .hero-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}
        }

/* section 5 */
.numbers-section {
    background-color: #f58a00;
    color: white;
    padding: 50px 0;
}

.numbers-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.numbers-section p {
    font-size: 1rem;
    margin-top: 10px;
}

.number-box {
    text-align: center;
    background-color: #ffffff;
    color: #f58a00;
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
}

.number-box h3 {
    font-size: 2rem;
    font-weight: bold;
}

.number-box p {
    font-size: 1rem;
}

.map {
    position: relative;
}

.map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .numbers-section h2 {
        font-size: 2rem;
    }

    .numbers-section p {
        font-size: 0.9rem;
    }

    .number-box h3 {
        font-size: 1.5rem;
    }

    .number-box p {
        font-size: 0.9rem;
    }

    .map img {
        max-width: 100%;
        height: auto;
    }
}

/*  section 6 */
.img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures the image never gets cropped */
}



/* section 7 */
/* General Section Styling */
.events-strengths-section {
  background-color: #f7f7f7;
  padding: 50px 0;
}

.events h2, .strengths h2 {
  font-size: 2rem;
  color: #333;
}

.event, .strength {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-container {
  display: flex;
  align-items: center;
}

.event-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.event-details h3 {
  font-size: 1.25rem;
  margin: 0;
}

.event-details p {
  font-size: 1rem;
  color: #777;
}

.strength {
  display: flex;
  align-items: center;
}

.icon {
  font-size: 2rem;
  color: #f66a0a;
  margin-right: 20px;
}

.strength-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.strength-text p {
  font-size: 1rem;
  color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-container {
    flex-direction: column;
    text-align: center;
  }

  .event-icon {
    margin-bottom: 15px;
  }

  .strength {
    flex-direction: column;
    text-align: center;
  }

  .icon {
    margin-bottom: 10px;
  }
}


/* section 8 testimonial */
#testimonials {
  background-color: #f7f7f7;
}

.testimonial-card {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-icon {
  font-size: 3rem;
  color: #f66a0a;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-top: 30px;
}

.testimonial-author {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}

.testimonial-position {
  font-size: 1rem;
  color: #888;
  margin-top: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #f66a0a;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    font-size: 1.1rem;
  }
}


/* section 9 */
.manufacturing-card {
  background-color: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manufacturing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* aboutus section 1  */
.hero-section {
  background: url('image/pexels-csanq-21560380.jpg') center center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
}



.hero-section .btn {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #f66a0a;
  border: none;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.hero-section .btn:hover {
  background-color: #d45a00;
}


/* aboutus section 2 */
.about-us {
  padding: 50px 0;
}

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1.2rem;
  color: #555;
}

.about-us img {
    /* min-height: 400px; */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-us img:hover {
  transform: scale(1.05);
}

/* aboutus section 3 */
.our-vision {
  background-color: #f0f0f0;
  padding: 50px 0;
}

.our-vision i {
  font-size: 3rem;
  color: #f66a0a;
  margin-bottom: 20px;
}

.our-vision h3 {
  font-size: 2rem;
  color: #333;
}

.our-vision p {
  font-size: 1.2rem;
  color: #555;
}

/* aboutus section 31 */
.our-story-section {
  background-color: #f9f9f9;
}

.our-story-section h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.our-story-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* aboutus section 3.2 */
.timeline-box {
  background-color: #ffffff;
  border: 2px solid #ff6600;
  border-radius: 12px;
  padding: 20px 15px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.timeline-box:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.timeline-box:hover .year {
  color: #fff;
}

.timeline-box .year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 10px;
}

.timeline-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* aboutus section 3.3 */
.why-box {
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.why-box:hover {
  border-color: #ff6600;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
}

.why-box .icon {
  font-size: 2rem;
  color: #ff6600;
}

.highlight {
  color: #ff6600;
  font-weight: 500;
}

.stat-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.stat-box:hover {
  background-color: #ff6600;
  color: #fff;
}

.stat-number {
  color: #ff6600;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-box:hover .stat-number {
  color: #fff;
}


/* aboutus section 4 */
.our-team {
  padding: 50px 0;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.team-member h5 {
  margin-top: 20px;
  font-size: 1.25rem;
}

.team-member p {
  color: #777;
}


/* aboutus section 5 */
.milestones {
  background-color: #fff;
  padding: 50px 0;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}



.timeline li h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.timeline li p {
  font-size: 1rem;
  color: #777;
}

.timeline li {
  border-left: 3px solid #ff6600;
  padding-left: 20px;
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: #ff6600;
  border-radius: 50%;
}


/* aboutus section 6 */
.contact-info {
  padding: 50px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.contact-list i {
  color: #f66a0a;
  margin-right: 10px;
}

.contact-info form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info .btn {
  background-color: #f66a0a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}


/* contactus section 1 */
.category-list .list-group-item {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.category-list .list-group-item:hover {
  background-color: #ffe9d6;
}

.card img {
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.bg-gradient-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.bg-gradient-box:hover {
  background: rgba(255, 255, 255, 0.1);
}



/* catalouge */
.catalogue-btn {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.catalogue-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.catalogue-btn:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}



/* footer section */

.footer {
  background: #0b2239;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-newsletter {
  text-align: center;
  padding-bottom: 30px;
}

.footer-newsletter h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #00c6ff;
}

.footer-newsletter p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-newsletter input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  width: 250px;
}

.footer-newsletter button {
  background: #0072ff;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #005ed9;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-category {
  flex: 1 1 200px;
  margin: 10px 0;
}

.footer-category h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c6ff;
}

.footer-category ul {
  list-style: none;
  padding: 0;
}

.footer-category ul li {
  margin: 6px 0;
}

.footer-category ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-category ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
}

.footer-contact, .footer-social {
  flex: 1 1 300px;
}

.footer-contact a {
  color: #00c6ff;
  text-decoration: none;
}

.footer-social h4 {
  margin-bottom: 10px;
  color: #00c6ff;
}

.footer-social a {
  font-size: 20px;
  color: #ccc;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-strip {
  text-align: center;
  background-color: #071a2c;
  padding: 15px 0;
  font-size: 14px;
  color: #aaa;
}



  .call-icon {
    position: fixed;
    bottom: 90px; /* Adjust according to WhatsApp button */
    right: 20px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #0072ff);
    border-radius: 50%; /* Perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: blink 1.5s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .call-icon:hover {
    transform: scale(1.1);
  }

  .call-icon i {
    color: white;
    font-size: 24px;
  }

  /* Blinking animation */
  @keyframes blink {
    0%, 100% { box-shadow: 0 0 20px #3902ff; }
    50% { box-shadow: 0 0 20px #28a745; }
  }



/* Sticky WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
 height: 50px;
 width: 50px;
 border-radius: 50%;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  z-index: 100;
  font-size: 50px;
}

.whatsapp-icon i{
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-icon a{
    text-decoration: none;
}


.whatsapp-icon img:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-category {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-newsletter {
    width: 100%;
    text-align: center;
  }

  .footer-social {
    text-align: center;
    margin-top: 20px;
  }

  .footer-bottom {
    text-align: center;
  }
}

