/* Custom Colors */
:root {
  --gnr-blue-darker: #003366; /* Dark blue for footer, some backgrounds */
  --gnr-blue-primary: #0056b3; /* Primary blue for buttons, links, active states */
  --gnr-blue-hover: #004085; /* Darker blue on hover */
  --gnr-gray-light: #f8f9fa; /* Light gray for section backgrounds, tabs */
  --gnr-gray-medium: #e9ecef; /* Slightly darker gray for tab borders */
  --gnr-text-dark: #343a40; /* Dark text for headings, body */
  --gnr-text-muted: #6c757d; /* Muted text for descriptions */
  --gnr-border-light: #dee2e6; /* Light border for cards, separators */
  --gnr-white: #ffffff;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--gnr-text-dark);
  line-height: 1.6;
  padding-top: 70px; /* Space for fixed navbar */
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

/* Global Transitions for interactive elements */
a,
button,
.nav-link,
.card,
.btn {
  transition: all 0.3s ease-in-out;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--gnr-border-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 1030; /* Ensure navbar is above other content */
  transition: all 0.3s ease-in-out; /* Smooth transition for sticky effect */
}

.navbar.navbar-scrolled {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* More prominent shadow when scrolled */
}

.navbar-brand img {
  height: 70px; /* Adjust as needed */
  width: auto;
  transition: height 0.3s ease-in-out; /* Smooth transition for logo size */
}

.navbar.navbar-scrolled .navbar-brand img {
  height: 30px; /* Smaller logo when scrolled */
}

.navbar-nav .nav-link {
    color: var(--bs-white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--gnr-border-light); /* Separator */
}

.navbar-nav .nav-item:last-child .nav-link {
  border-right: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  /* color: var(--gnr-blue-primary); */
  color:#fe4066;
  /* transform: translateY(-2px);  */
}

.navbar-nav .nav-item.dropdown .nav-link {
  border-right: 1px solid var(--gnr-border-light);
}

.navbar-nav .nav-item.dropdown:last-of-type .nav-link {
  border-right: none;

}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu .dropdown-item {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

/* Highlight bar effect */
.dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    /* background-color: #ff9800;  */
    background-color: #E53C25;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
    background-color: #fe4066; 
    color: #fff;
    padding-left: 25px; 
}

/* Show highlight bar on hover */
.dropdown-menu .dropdown-item:hover::before {
    transform: scaleY(1);
}


.navbar-nav .nav-item.ms-lg-3 .nav-link {
  border-right: none; /* Remove border for icons/buttons */
}

.navbar-nav .nav-item.ms-lg-3 .btn {
  border-right: none; /* Ensure button doesn't have border */
}

.contact-btn {
  /* background-color: var(--gnr-blue-primary); */
  background: #fe4066;
  border-color: var(--gnr-blue-primary);
  color: var(--gnr-white);
  padding: 0.5rem 1.2rem;
  border-radius: 0.25rem;
  font-weight: 600;
}
.footer-logo{
  height: 80px;
}

.contact-btn:hover {
  background-color: #E53C25;
  border-color: var(--gnr-blue-hover);
  transform: translateY(-2px); /* Subtle lift on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
  height: 700px; /* Fixed height for the carousel */
  overflow: hidden;
  margin-top: -70px; /* Pull up to cover navbar space */
  position: relative;
  z-index: 1; /* Ensure hero is below navbar but above other content */
}

.hero-carousel .item {
  height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-carousel .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 51, 102, 0.8) 0%, rgba(0, 51, 102, 0.5) 50%, rgba(0, 51, 102, 0) 100%);
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white background */
  backdrop-filter: blur(5px); /* Frosted glass effect */
  border-radius: 10px;
  padding: 1rem !important;
  max-width: 500px; /* Slightly wider content box */
  position: relative; /* Ensure content is above overlay */
  z-index: 1;
  text-align: left; /* Align text left as in image */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Deeper shadow for hero content */
}

.hero-content h1 {
  color: var(--gnr-white);
  font-size: 2rem; /* Larger font size */
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for readability */
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9); /* Lighter text for readability */
  font-size: 14px;
  margin-bottom: 0px;
}
.hero-slide {
    height: 100vh; /* Full screen height */
    overflow: hidden;
}
.hero-slide video {
    object-fit: cover;
}
.hero-btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.3rem;
  font-weight: 600;
}

.hero-btn.btn-primary {
   background: #fe4066;
  /* background-color: #fe4066; */
  border-color: var(--gnr-blue-primary);
  color: var(--gnr-white);
}

.hero-btn.btn-primary:hover {
  background: #E53C25;
  border-color: var(--gnr-blue-hover);
  transform: scale(1.05); /* Slight scale on hover */
}

.hero-btn.btn-secondary {
  background-color: transparent;
  border-color: var(--gnr-white);
  color: var(--gnr-white);
}

.hero-btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--gnr-white);
  color: var(--gnr-white);
  transform: scale(1.05); /* Slight scale on hover */
}

/* Owl Carousel Dots and Nav */
/* .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gnr-white);
  border-color: var(--gnr-white);
} */

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gnr-blue-darker);
  margin-bottom: 2rem;
  text-align: left; /* Default to left align */
}

/* Scroll-trigge#E53C25 fade-in animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform; /* Optimize for animation */
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Products Section */
.products-section {
  background-color: var(--gnr-white);
}

.product-tabs .nav-link {
  background-color: var(--gnr-gray-light);
  color: var(--gnr-text-dark);
  border: 1px solid var(--gnr-gray-medium); /* Add border */
  border-bottom: none; /* Remove bottom border for tab effect */
  border-radius: 0.25rem 0.25rem 0 0; /* Rounded top corners */
  padding: 1rem 2rem;
  font-weight: bold;
  margin-right: 5px;
}

.product-tabs .nav-link.active {
  background-color: var(--gnr-blue-darker);
  color: var(--gnr-white);
  border-color: var(--gnr-blue-darker);
  transform: translateY(-2px); /* Subtle lift on active */
}

.product-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}

.product-pills .nav-link {
  background-color: var(--gnr-gray-light);
  color: var(--gnr-text-dark);
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
  margin-right: 10px;
  margin-bottom: 10px;
}

.product-pills .nav-link.active {
  /* background-color: var(--gnr-blue-primary); */
    background: #fe4066;
  color: var(--gnr-white);
  transform: translateY(-2px); /* Subtle lift on active */
}

.product-pills .nav-link:hover:not(.active) {
  /* background-color: var(--gnr-gray-medium); */
  background: #E53C25;
  color: white;
  transform: translateY(-2px);
}

.product-card {
  border: 1px solid var(--gnr-border-light);
  border-radius: 0.5rem;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
  filter: drop-shadow(2px 2px 2px grey);
}

.product-card:hover {
  transform: translateY(-10px); /* More pronounced lift */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}

.product-card .card-img-top {
  height: 200px;
  object-fit: contain; /* Use contain to show full image */
  width: 100%;
  border-bottom: 1px solid var(--gnr-border-light);
  background-color: var(--gnr-gray-light); /* Background for images */
  padding: 1rem; /* Padding around image */
  transition: transform 0.3s ease-in-out; /* Smooth zoom transition */
}

.product-card:hover .card-img-top {
  transform: scale(1.05); /* Subtle zoom on image hover */
}

.product-card .card-body {
  padding: 1.5rem;
}

.product-card .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gnr-blue-darker);
  /* color: #E53C25; */
  margin-bottom: 0.75rem;
}

.product-card .card-text {
  color: var(--gnr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  min-height: 45px; /* Ensure consistent height for text */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
}

.product-btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.product-btn.btn-outline-primary {
  /* color: var(--gnr-blue-primary);
  border-color: var(--gnr-blue-primary); */
  color: #E53C25;
  border-color: #E53C25;
}

.product-btn.btn-outline-primary:hover {
  /* background-color: var(--gnr-blue-primary); */
  background-color: #fe4066;
  border-color: #fe4066;
  color: var(--gnr-white);
  transform: translateY(-2px);
}

.product-btn.btn-primary {
  /* For "More Details" button */
  /* background-color: var(--gnr-blue-primary); */
  /* border-color: var(--gnr-blue-primary); */
  background: #E53C25;
  border-color: #E53C25;
  color: var(--gnr-white);
}

.product-btn.btn-primary:hover {
  /* background-color: var(--gnr-blue-hover);
  border-color: var(--gnr-blue-hover); */
  background-color: #fe4066;
border-color: #fe4066;
  transform: translateY(-2px);
}

.load-more-btn {
  background: #E53C25;
  border-color: #E53C25;
  color: var(--gnr-white);
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 0.3rem;
  font-weight: 600;
}

.load-more-btn:hover {
  /* background-color: var(--gnr-blue-hover);
  border-color: var(--gnr-blue-hover); */

background-color: #fe4066;
border-color: #fe4066;


  transform: translateY(-3px); /* More pronounced lift */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Explore Technology Section */
.explore-technology-section {
  background-color: var(--gnr-gray-light); /* Light gray background for the section */
}

.technology-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1px; /* To make edges join */
}

.technology-row:last-child {
  margin-bottom: 0;
}

.technology-content {
  background-color: var(--gnr-white); /* White background for content blocks */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem !important;
  height: 100%; /* Ensure content fills its column */
}

.technology-content h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gnr-blue-darker);
  margin-bottom: 1rem;
}

.technology-content p {
  color: var(--gnr-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.technology-image-container {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technology-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the area */
  display: block;
  /* transition: transform 0.3s ease-in-out;  */
    animation: zoomInSlow 20s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomInSlow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* zoom in */
    }
    100% {
        transform: scale(1);
    }
}


/* .technology-image-container:hover .technology-image {
  transform: scale(1.03); 
} */

.more-details-btn {
  /* background-color: var(--gnr-blue-primary); */
  background-color: #fe4066;
   border-color: #c70b30;
  color: var(--gnr-white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  font-weight: 600;
  width: fit-content;
    margin: 0px auto;
}

.more-details-btn:hover {
  /* background-color: var(--gnr-blue-hover); */
  background-color: #fe4066;
 border-color: #c70b30;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* GNR News Section */
.gnr-news-section {
  background-color: var(--gnr-gray-light);
}

.news-card {
  background-color: var(--gnr-white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.news-card h3 {
  color: var(--gnr-blue-darker);
  font-weight: bold;
  font-size: 1.8rem;
}

.read-news-btn {
  background-color: var(--gnr-blue-primary);
  border-color: var(--gnr-blue-primary);
  color: var(--gnr-white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  font-weight: 600;
}

.read-news-btn:hover {
  background-color: var(--gnr-blue-hover);
  border-color: var(--gnr-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.news-article-card {
  background-color: var(--gnr-white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.news-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.news-article-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gnr-blue-darker);
  margin-bottom: 0.5rem;
}

.news-article-card .card-text {
  font-size: 0.9rem;
  color: var(--gnr-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
}

.news-article-card img {
  width: 100%;
  height: 100px; /* Fixed height for news images */
  object-fit: cover;
  border-radius: 0.25rem;
}

.read-article-btn {
  color: var(--gnr-blue-primary);
  font-weight: bold;
  text-decoration: none;
}

.read-article-btn:hover {
  color: var(--gnr-blue-hover);
  text-decoration: underline;
  transform: translateX(5px); /* Subtle slide on hover */
}

/* Contact Us Section */
.contact-us-section {
  /* background-color: var(--gnr-blue-primary); */
  /* background: linear-gradient(45deg, #DAB51E, #E73D25, #D4649D, #67C5EB,#50AD4D); */

background: linear-gradient(
  45deg, 
  #DAB51E 0%, 
  #E7A524 20%, 
  #E73D25 40%, 
  #D4649D 60%, 
  #67C5EB 80%, 
  #50AD4D 100%
);
  color: var(--gnr-white);
}

.contact-box {
  background-color: var(--gnr-white);
  color: var(--gnr-text-dark);
  border-radius: 0.5rem;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  filter: drop-shadow(2px 4px 6px grey);
}

.contact-box-btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  font-weight: 600;
}

.contact-box-btn.btn-primary {
  background-color: var(--gnr-blue-primary);
  border-color: var(--gnr-blue-primary);


  background-color:  #E73D25 ;
  border-color: #E73D25; 
  /* #E73D25 40%, ; */
  color: var(--gnr-white);
}

.contact-box-btn.btn-primary:hover {
  /* background-color: var(--gnr-blue-hover);
  border-color: var(--gnr-blue-hover); */

  background-color: #E53C25;
  border-color: #E53C25;
  transform: translateY(-2px);
}

.contact-box-btn.btn-secondary {
  background-color: transparent;
  /* border-color: var(--gnr-blue-primary);
  color: var(--gnr-blue-primary); */

    border-color:  #E73D25 ;
  color: #E73D25; 
}

.contact-box-btn.btn-secondary:hover {
  background-color: #E53C25;
  color: white;
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.3);
  /* Simple pulse animation */
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer */
.footer {
  /* background-color: var(--gnr-blue-darker); */
  background-color: #121212;
  color: var(--gnr-white);
      padding-top: 50px;
}
.copyright{
  padding: 10px 0px;
}
.footer h5 {
  color: var(--gnr-white);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 2;
  font-size: 15px;
}

.footer ul li a:hover {
  color: var(--gnr-white);
  text-decoration: underline;
  transform: translateX(5px); /* Subtle slide on hover */
}

.footer-contact-btn {
  /* background-color: var(--gnr-blue-primary); */
  background: #fe4066;
  border-color: var(--gnr-blue-primary);
  color: var(--gnr-white);
  padding: 0.5rem 1.2rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.footer-contact-btn:hover {
  background-color: var(--gnr-blue-hover);
  border-color: var(--gnr-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-divider {
  border-top: 1px solid white;
}

.social-icon-hover:hover {
  color: var(--gnr-blue-primary) !important; /* Override default text color */
  transform: scale(1.2); /* Pop effect */
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effects */
.social-icon:hover {
    transform: scale(1.15);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Custom Colors */
.facebook:hover { background: #3b5998; }
.twitter:hover { background: #1da1f2; }
.linkedin:hover { background: #0077b5; }
.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }


.rainbow{
  background: linear-gradient(90deg, #E53C25, orange, #E53C25, #5eb2d3, indigo, #51AD4B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.yout-video{
  height: 500px;
}
/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    border-right: none;
    border-bottom: 1px solid var(--gnr-border-light);
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .navbar-nav .nav-item.ms-lg-3 .btn {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  .navbar-nav .nav-item.ms-lg-3 .nav-link {
    width: 100%;
    text-align: center;
  }
  .hero-section {
    height: 600px;
  }
  .hero-carousel .item {
    height: 600px;
  }
  .hero-content {
    padding: 1rem !important;
    max-width: 100%;
    text-align: center; /* Center text on smaller screens */
  }
  .hero-content h1 {
    font-size: 16px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .product-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .product-pills .nav-link {
    /* padding: 0.5rem 1rem;
    font-size: 0.9rem; */
            padding: 12px;
        font-size: 12px;
  }
  .technology-content {
    padding: 2rem !important;
  }
  .technology-content h3 {
    font-size: 16px;
  }
  .technology-image-container {
    height: 300px; /* Adjust height for smaller screens */
  }
  .news-article-card .card-body {
    padding-left: 1rem !important;
  }
  .news-article-card img {
    height: 80px;
  }
  .contact-icon {
    font-size: 8rem;
  }
  .hero-btn {
    padding: 8px;
    font-size: 12px;
  }
  .head-btn{
    margin: 0px auto;
    justify-content: center;
  }
  .product-btn {
    font-size: 0.85rem;
    padding: 0.5rem 6px;
  }
  .yellow-btn{
    margin: 0px auto;
  }
  .breadcrumb li{
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 60px; /* Adjust for smaller navbar height */
  }
  .hero-section {
    height: 500px;
    margin-top: -60px;
  }
  .hero-carousel .item {
    height: 500px;
  }
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  .product-tabs {
    flex-direction: column;
  }
  .product-tabs .nav-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .product-tabs .nav-link {
    width: 100%;
    text-align: center;
  }
  .product-pills {
    justify-content: center;
  }
  .technology-row .col-md-6 {
    order: unset !important; /* Reset order for mobile to stack naturally */
  }
  .technology-image-container {
    height: 250px;
  }
  .contact-us-section .row {
    flex-direction: column;
  }
  .contact-icon {
    margin-top: 2rem;
  }
  .footer .col-lg-3,
  .footer .col-lg-2 {
    text-align: start;
  }
  .footer ul {
    padding-left: 0;
  }
  .mb-5 {
    margin-bottom: 14px !important;
  }
      .hero-content {
        display: none;
      }
}



/* about page */
.abt-banner {
  position: relative;
}
.abt-img{
  height: 50vh;
  object-fit: cover;
}
.banner-box {
  background-color: #0a2c4a; /* Dark blue background */
  border-radius: 12px;
  position: relative;
  margin-top: -40px; /* Overlap effect */
  z-index: 2;
}

.banner-box h1 {
  font-size: 2rem;
}
.banner-box p{
  background: white;
    padding: 10px;
    border-radius: 16px;
    color: black !important;
}
.yellow-btn{
  background-color: #fe4066;
  border-color: #fe4066;
}
.yellow-btn:hover{
  background-color: #E53C25;
  border-color: #E53C25;
}
@media (max-width: 768px) {
  .banner-box h1 {
    font-size: 1.5rem;
  }
  .banner-box p {
    font-size: 0.9rem;
  }
}

/* breadcrumb */
.bread{
  margin-top: 40px;
}
.prd video{
  height: 400px;
  width: 100vw;
  object-fit: cover;
}
.prd-section{
  padding-top: 40px;
  padding-bottom: 40px;
}

/* contact page */
.contact-info {
  background-color: #e9faff;
}

.contact-info .info-box {
  background-color: #b3e5fc;
  transition: all 0.3s ease;
      height: 250px;
}

.contact-info .info-box a{
  color: black;
  text-decoration: none;
}
.contact-info .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.nav-breadcrumb{
  padding: 20px !important;
}
.contact-info .icon-circle {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: 3px solid #1976d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .icon-circle img {
  width: 45px;
  height: 45px;
}
.navbar-toggler{
  background-color: white;
}

/* products section or pages */
/* Section Styling */
.product-section {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #f9f9ff, #eef2f7); */
    font-family: 'Segoe UI', sans-serif;
}

/* Titles */
.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #007bff;
    margin-bottom: 20px;
}

/* Description */
.product-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Category & Application Info */
.category-info {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #444;
}
.dropdown-item.active, .dropdown-item:active{
      background-color: #fe4066;
}
/* Buttons */
.btn-request {
    background-color: #007bff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-details {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Product Image */
.product-image {
    /* width: 100%;
    border-radius: 12px;
    */
    transition: transform 0.3s ease;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
        height: 400px;
    width: 100%;
    object-fit: contain;
    /* filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.08)); */
}

.product-image:hover {
    transform: scale(1.02);
}

/* Play Button on Image */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 123, 255, 0.85);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 86, 179, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .product-title {
        font-size: 1.2rem;
    }
    .product-subtitle {
        font-size: 1.1rem;
    }
    .mt-4 {
        margin-top: 20px;
    }
}


/* Features Section */
.features-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9ff, #eef2f7);
    font-family: 'Segoe UI', sans-serif;
}

/* Feature Item Box */
.feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Animation */
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.feature-icon {
    font-size: 2.5rem;
    color: #fe4066; 
    background: rgba(185, 153, 174, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #fe4066; 
    color: #fff;
    transform: scale(1.1);
}

/* Titles & Text */
.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.feature-item div:last-child {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 767px) {
    .feature-item {
        padding: 20px 15px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Tabs Section */
.tabs-section {
    padding: 50px 0;
    background: #f9f9ff;
    font-family: 'Segoe UI', sans-serif;
}

/* Tab Nav Styles */
.nav-tabs {
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.nav-tabs .nav-link {
    color: #555;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #fe4066; 
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px #fe4066; ;
}

/* Tab Content Area */
.tab-content {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); */
}

.tab-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.tab-content p,
.tab-content ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Applications List */
.applications-list {
    padding-left: 20px;
    margin: 0;
}

.applications-list li {
    margin-bottom: 6px;
    position: relative;
}

.applications-list li::before {
    content: "✔";
    position: absolute;
    left: -20px;
    color: #007bff;
    font-size: 0.9rem;
}

.slide-prd{
  margin-bottom: 60px;
}
.slide-prd .item{
  margin-bottom: 30px;
}

 /* Owl Carousel Custom Styles */
        .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
        }

        .owl-nav button {
            position: absolute;
            background-color: var(--primary-blue) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            font-size: 1.5rem !important;
        }

        .owl-nav .owl-prev {
            left: -25px;
        }

        .owl-nav .owl-next {
            right: -25px;
        }

        /* .owl-dots {
            text-align: center;
            margin-top: 2rem;
        }

        .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
        }

        .owl-dot.active {
            background-color: var(--primary-blue);
        } */



/* Owl Carousel Dots and Nav */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #fe4066;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: black;
  border-color: var(--gnr-white);
}
.index-btn{
  display: flex;
    justify-content: center;
}
.spare-img{
     height: 200px;
    width: 250px;
    object-fit: contain;
  margin: 0px auto;
  display: flex;
filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.4));
  margin-bottom: 20px;
}
.spare-parts p{
text-align: center;
    font-size: 1.2rem;
    color: #fe4066;
    font-weight: 600;
    margin-top: 20px;
}
.technology-content .rainbow{
  text-align: center;
}
.technology-content p{
  text-align: justify;
}
.testimonial-img img {
  height: 100px;
  object-fit:contain ;
  /* width: 100px; */
}
/* Responsive Adjustments */
@media (max-width: 767px) {
    .nav-tabs .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .tab-content {
      padding: 0px;
    }
    .abt-certi{
          height: 150px;
    margin: 0px auto;
    display: flex;
    }
    .features-section .col-md-6{
      margin-bottom: 30px !important;
    }
    .features-section{
    padding: 40px 0;
 }
 .rainbow {
    font-size: 22px;}
    .mt-5 {
    margin-top: 1rem !important;
}
.product-image {
 margin-top: 10px;
    height: 250px;}
    .footer ,.mb-4{
      margin-bottom: 4px !important;
    }
}
