
/* Topbar Styling */
.topbar {
    background-color: #f4f4f4;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    color: #333;
  }
  .topbar i {
    color: #0066cc;
    margin-right: 0.3rem;
  }
  .topbar a {
    color: #333;
    margin-left: 0.6rem;
    transition: color 0.3s;
  }
  .topbar a:hover {
    color: #0066cc;
  }
  
  /* Navbar Styling */
  .navbar {
    transition: all 0.4s ease-in-out;
    z-index: 999;
  }
  .navbar-brand img {
    height: 40px;
    object-fit: contain;
  }
  .nav-link {
    transition: all 0.3s ease;
  }
  .nav-link:hover,
  .nav-link:focus {
    color: #0066cc !important;
  }
  
  /* Dropdown */
  .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: normal;
    word-break: break-word;
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }
  .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #0066cc;
    border-radius: 10px;
  }
  .dropdown-item {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    white-space: normal;
    word-break: break-word;
    transition: all 0.2s ease-in-out;
  }
  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0066cc;
    padding-left: 1.5rem;
  }
  
      /* Dark Mode Styling */
      body.dark-mode {
        background-color: #121212;
        color: #f4f4f4;
      }
  
      body.dark-mode .navbar,
      body.dark-mode .topbar {
        background-color: #1c1c1c !important;
      }
  
      body.dark-mode .nav-link,
      body.dark-mode .navbar-brand span,
      body.dark-mode .topbar a {
        color: #ffffff !important;
      }
  
      body.dark-mode .btn-icon {
        color: #ffffff;
      }
    
    .hero {
      /* height: 100vh; */
      position: relative;
    }
  
    .carousel-item {
      height: 100%;
      object-fit: cover;
    }
  .form-content p {
      color:white;
      font-size:25px;
      text-align:center;
  }
    .carousel-caption {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
    }
  
    .carousel-caption h1 {
      font-size: 3.5rem;
      font-weight: 700;
    }
  
    .carousel-caption p {
      font-size: 1.25rem;
    }
  
    .carousel-caption .btn-primary {
      background-color: #0066cc;
      border-color: #005bb5;
    }
  
    .carousel-caption .btn-primary:hover {
      background-color: #005bb5;
      border-color: #004494;
    }
   
  .our-story-section {
    background-color: #f4f4f4;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #003B8B;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #333;
    font-weight: 400;
  }
  
  .story-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
  }
  
  .story-image {
    width: 40%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  
  .story-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .story-image:hover .story-image-img {
    transform: scale(1.05);
  }
  
  .story-text {
    width: 55%;
    color: #333;
    font-size: 18px;
    line-height: 1.8;
  }
  
  .story-paragraph {
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
  }
  
  @media (max-width: 768px) {
    .story-content {
      flex-direction: column;
      text-align: center;
    }
    
    .story-image {
      width: 80%;
      height: 250px;
      margin-bottom: 30px;
    }
  
    .story-text {
      width: 100%;
    }
  }
  
  
    .product-gallery-section img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      /* box-shadow: 0 4px 20px rgba(0,0,0,0.1);  */
      transition: transform 0.3s ease;
    }
  
    .product-gallery-section img:hover {
      transform: scale(1.03);
    }
  
    .swiper {
      padding-bottom: 30px;
    }
  .youtube-section {
    background: #ffffff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .youtube-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  
  .video-text {
    flex: 1 1 400px;
  }
  
  .video-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .video-text h2 span {
    width: 10px;
    height: 100%;
    background-color: #0066cc;
    display: inline-block;
    margin-right: 12px;
  }
  
  .video-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  
  .video-box {
    flex: 1 1 500px;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    /* border-radius: 16px;  */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* border-radius: 16px; */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .youtube-content {
      flex-direction: column;
    }
  
    .video-text, .video-box {
      width: 100%;
      text-align: center;
    }
  
    .video-text h2 {
      justify-content: center;
    }
  
  }
  
  
  .confidence-section {
    padding: 100px 20px;
    background: #f4f4f4;
    position: relative;
    text-align: center;
  }
  
  .confidence-wrapper {
    max-width: 1200px;
    margin: auto;
  }
  
  .confidence-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
  }
  
  .confidence-heading span {
    color: #0066cc;
  }
  
  .confidence-subtle-text {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 4px;
    margin-top: 10px;
    font-weight: 600;
  }
  
  .confidence-content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .confidence-image {
    width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .confidence-para {
    max-width: 600px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    text-align: left;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .confidence-content {
      flex-direction: column;
      text-align: center;
    }
  
    .confidence-para {
      text-align: center;
    }
  }
  .accordion-section {
    padding: 80px 20px;
    background: #ffffff;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .accordion-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003B8B;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .accordion-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .accordion-item {
    border-bottom: 1px solid #ddd;
  }
  
  .accordion-header {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    background: #f4f4f4;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #003B8B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .accordion-header:hover {
    background: #e6f0ff;
  }
  
  .accordion-header .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    fill: #003B8B;
  }
  
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 1rem;
    color: #333;
    padding: 0 20px;
  }
  
  .accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 20px;
  }
  
  .accordion-item.active .icon {
    transform: rotate(180deg);
  }
  .slider-section-bg {
        position: relative;
        background: url('your-background.jpg') no-repeat center center/cover;
        padding: 60px 0;
        overflow: hidden;
      }
  
      .slider-section-overlay {
        background: rgba(255, 255, 255, 0.92);
        padding: 40px 20px;
        position: relative;
        z-index: 2;
      }
  
      .custom-slider-title {
        text-align: center;
        font-size: 2.5rem;
        color: #003B8B;
        margin-bottom: 40px;
        font-weight: bold;
      }
  
      .product-slider-wrap {
        display: flex;
        overflow: hidden;
        position: relative;
      }
  
      .product-slider-track {
        display: flex;
        gap: 30px;
        animation: autoSlide 30s linear infinite;
      }
  
      .product-box-unique {
        flex: 0 0 300px;
        background: white;
        border-radius: 20px;
        /* box-shadow: 0 4px 20px rgba(0,0,0,0.1);  */
        overflow: hidden;
        transition: transform 0.3s ease;
      }
  
      .product-box-unique:hover {
        transform: translateY(-5px);
      }
  
      .product-img-unique {
        height: 260px;
        background-size: cover;
        background-position: center;
      }

      .product-content-unique {
        padding: 20px;
      }
  
      .product-name-unique {
        font-size: 1.5rem;
        color: #1C7031;
        margin-bottom: 10px;
        font-weight: 700;
      }
  
      .product-desc-unique {
        color: #555;
        font-size: 0.95rem;
        margin-bottom: 10px;
      }
  
      .product-price-unique {
        color: #D52B1E;
        font-weight: bold;
        font-size: 1rem;
      }
  
      @keyframes autoSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
  
      @media (max-width: 768px) {
        .product-box-unique {
          flex: 0 0 250px;
        }
      }
      .rao-about-section {
    background-color: #f4f8ff;
    position: relative;
  }
  
  .rao-image-wrapper img {
    border-radius: 1rem;
  }
  
  .rao-exp-box {
    bottom: -30px;
    left: 30px;
    border-left: 4px solid #0066cc;
    width: 180px;
    border-radius: 1rem;
  }
  
  .glass-box {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .rao-exp-box {
      position: static;
      margin-top: 20px;
    }
  }
  
  /* Floating SVG Styling */
  .float-svg {
    position: absolute;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
  }
  
  .svg-1 {
    top: -50px;
    left: -80px;
    width: 180px;
    height: 180px;
  }
  
  .svg-2 {
    bottom: -50px;
    right: -80px;
    width: 160px;
    height: 160px;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* Icon Animation */
  .animate-icon i {
    transition: transform 0.4s ease;
  }
  .animate-icon:hover i {
    transform: scale(1.2);
  }
  
    .swiper-container {
      width: 100%;
      max-width: 100%;  /* Ensure it doesn't overflow */
      overflow: hidden; /* Prevent any overflow beyond the container */
    }
  
    .swiper-slide {
      display: flex;
      justify-content: center; /* Center the images horizontally */
      align-items: center;     /* Center the images vertically */
    }
  
    .swiper-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;  /* Ensure images are properly scaled within their containers */
    }
    

    /* --- Footer Main --- */
.footer-section {
    background: #111; /* Clean dark */
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    color: #ccc; /* Light grey text */
  }
  
  /* --- Footer Headings --- */
  .footer-section h5 {
    color: #fff; /* Pure white heading */
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 20px;
    position: relative;
  }
  
  .footer-section h5::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #3399ff; /* Accent light blue line */
    margin-top: 10px;
    border-radius: 2px;
  }
  
  /* --- Footer Links --- */
  .footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
  }
  
  .footer-section a:hover {
    color: #66b3ff;
    text-decoration: underline;
  }
  
  /* --- Footer Lists --- */
  .footer-section ul {
    padding: 0;
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  /* --- Footer Text --- */
  .footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
  }
  
  /* --- Footer Bottom Line --- */
  .footer-section hr {
    border-color: #333;
  }
  
  /* --- Footer Copyright --- */
  .footer-section .text-center {
    font-size: 14px;
    margin-top: 30px;
    color: #777;
  }
  
  /* --- Responsive Footer --- */
  @media (max-width: 767px) {
    .footer-section {
      text-align: center;
    }
    .footer-section h5::after {
      margin-left: auto;
      margin-right: auto;
    }
  }



/* Product Page Styles */
.product-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-title {
  font-size: 2.8rem;
  color: #003B8B;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 1.3rem;
  color: #555;
}

.product-hero-image {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.section-title {
  font-size: 2.2rem;
  color: #003B8B;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #0066cc;
  margin: 15px auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 2rem;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.feature-card, .packaging-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover, .packaging-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.feature-icon i, .packaging-icon i {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i, 
.packaging-card:hover .packaging-icon i {
  transform: scale(1.2);
}

.quality-badge {
  transform: translate(-20px, 20px);
}

.gallery-image {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.03);
}

.specs-table th {
  font-weight: 600;
}

.product-cta {
  background: linear-gradient(135deg, #0066cc 0%, #003B8B 100%);
}

.related-product-card {
  transition: transform 0.3s ease;
}

.related-product-card:hover {
  transform: translateY(-5px);
}

.product-image-container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f8f9fa;
}

.product-image-container img {
  max-height: 160px;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .product-title {
    font-size: 2.2rem;
  }
  
  .product-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 60px 0;
    text-align: center;
  }
  
  .product-hero-image {
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .quality-badge {
    position: static !important;
    transform: none !important;
    margin-top: 20px;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}







/* Applications Section - Modern Layout */
.applications-section {
  background-color: #f8f9fa;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  color: #003B8B;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.application-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.application-item:hover {
  border-left-color: #0066cc;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* .application-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  color: #0066cc;
} */

/* .application-icon svg {
  width: 32px;
  height: 32px;
} */

.application-content {
  flex: 1;
}

.application-content h3 {
  font-size: 1.3rem;
  color: #003B8B;
  margin-bottom: 0.8rem;
}

.application-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.application-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.manufacturer-note {
  background: #0066cc;
  color: white;
  padding: 2rem;
  border-radius: 12px;
}

.manufacturer-note h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.manufacturer-note p {
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
  
  .application-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  /* .application-icon {
    margin-bottom: 1rem;
  } */
  
  .section-title {
    font-size: 1.8rem;
  }
}


