/* Custom Colors */
:root {
  --gnr-blue-darker: #003366;
  /* Dark blue for footer, some backgrounds */
  --gnr-blue-primary: ##0089d8e8;
  /* Primary blue for buttons, links, active states */
  --gnr-blue-hover: #313131;
  /* 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: "Montserrat", 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;
}

/* ========================================
   PREMIUM NAVBAR STYLES
   ======================================== */

.premium-navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0;
  height: 90px;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat" !important;
}
.premium-navbar.navbar-scrolled {
  padding: 0.5rem 0;
  background: rgba(26, 26, 26, 0.95) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.card-links {
  text-decoration: none;
  color: white;
}
.navbar-logo {
  height: 55px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.premium-navbar.navbar-scrolled .navbar-logo {
  height: 45px;
}

/* Desktop Navigation */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  padding: 0.75rem 1rem !important;
  font-size: 12px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00d4ff !important;
  transform: translateY(-2px);
}

/* Dropdown Styles */
.navbar-nav .dropdown-menu {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  /* border-radius: 8px;
  margin: 0.25rem; */
}

.navbar-nav .dropdown-item:hover {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  transform: translateX(5px);
}

.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: #0781aa;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background-color: #0781aa;
  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: none;
}

/* Premium Contact Button */
.contact-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  color: white;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Custom Hamburger Menu */
.custom-toggler {
  border: none;
  padding: 4px;
  background: transparent;
  width: 35px;
  height: 35px;
  position: relative;
  z-index: 1051;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  opacity: 1;
}

.custom-toggler:focus .hamburger-line,
.custom-toggler:hover .hamburger-line {
  background: #00d4ff;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Controls Wrapper */
.mobile-controls-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-contact-btn {
  background: transparent;
  border: none;
  width: 40px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 30px;
  transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
  transform: scale(1.1);
  color: #128c7e;
  background: rgba(37, 211, 102, 0.1);
}

/* ========================================
   MOBILE OFFCANVAS MENU
   ======================================== */

.mobile-menu {
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  width: 300px !important;
}

.mobile-menu .offcanvas-header {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* padding: 1.5rem; */
}

.mobile-logo {
  height: 40px;
  width: auto;
}

.mobile-nav {
  padding-top: 1rem;
}

.mobile-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 1rem 1.5rem;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff !important;
  transform: translateX(10px);
}

.mobile-nav .nav-link i {
  width: 20px;
  color: #00d4ff;
}

/* Mobile Dropdown */
.mobile-dropdown {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 0;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
  position: static !important;
  transform: none !important;
  display: none;
}

.mobile-nav .dropdown.show .mobile-dropdown {
  display: block;
}

.mobile-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  font-size: 14px;
  border: none;
  margin: 0;
}

.mobile-dropdown .dropdown-item:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  transform: translateX(5px);
}

/* Mobile Contact Section */
.mobile-contact-section {
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
  .premium-navbar {
    height: 75px;
  }
  .mobile-contact-section {
    display: none;
  }
}

.mobile-whatsapp-btn {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-contact-info {
  text-align: center;
}

.mobile-contact-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0.25rem 0;
}

.mobile-contact-info i {
  color: #00d4ff;
  width: 16px;
}

.footer-logo {
  height: 80px;
}

/* hero section slider start */
.js-slider-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
  padding-top: 20px;
}

.slider-container {
  width: 100%;
  height: 77vh;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 20px;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  width: 100%;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .slider-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 267px;
  }
  .js-slider-section {
    padding-top: 4px;
    height: 267px;
  }
  .slider {
    padding-top: 0px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 243px;
    width: 100%;
    padding-top: 0px;
  }
  .slider {
    padding-top: 0px;
  }
  .js-slider-section {
    /* height: 150px; */
    height: 243px;
  }
  .slide {
    height: 250px;
    object-fit: cover;
  }
}

/* hero section slider end */

/* About section css start */
.about-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 24px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}

/* Left Content */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #003366;
  margin-bottom: 20px;
  text-align: left;
  /* margin-left: 20px; */
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0781aa;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-btn:hover {
  background-color: #8dd2ea;
}

/* Right Image */
.about-image {
  flex: 1;
}
.abt-hide {
  display: none;
}

.about-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0; /* No border radius */
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .about-image img {
    max-width: 100%;
  }

  .about-image {
    order: -1;
    width: 100%;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 15px;
  }
  .about-image img {
    height: 150px;
    width: 100%;
    margin-top: 14px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
  .abt-hide {
    display: inline;
    font-size: 32px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 5px;
  }
  .abt-show {
    display: none;
  }
  .about-content p {
    text-align: justify;
  }
}
/* About section css end */

/* About container2 section css start */
/* ===== Company Info Section ===== */
.company-info {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  padding: 5px 20px;
}

/* Left Content */
.info-text {
  margin-left: 10px;
  flex: 1;
}

.info-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-left: 10px;
  color: #003366;
  margin-bottom: 20px;
}

.info-text p {
  color: #7f7f7f;
  /* margin-bottom: 15px; */
}

/* Right Image */
.info-image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-right: 10px;
}

.info-image img {
  margin-top: 10px;
  width: 90%;
  height: 30vh;
  object-fit: cover;
  border-radius: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .company-info {
    flex-direction: column;
    text-align: center;
  }

  .info-text h2 {
    font-size: 30px;
  }

  .info-image {
    width: 100%;
  }
  .info-image img {
    /* margin-top: 20px; */
  }
}

@media (max-width: 768px) {
  .info-image img {
    width: 100%;
    /* margin-top: 20px; */
  }
  .info-image {
    width: 100%;
  }
  .company-info {
    padding: 0px 15px;
    text-align: justify;
  }

  .info-text h2 {
    font-size: 26px;
    padding-top: 10px;
  }
}

/* About container2 section css end */

/* Our product start */
.list-item {
  width: 100%;
  padding-top: 20px;
  /* padding-left:30px; */
  background-color: #ededed;
}

.list-item .heading {
  text-align: start;
  font-size: 32px;
  font-weight: 800;
  margin-left: 70px;
  color: #003366;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.list-item .grid-container {
  display: grid;
  width: 90%;
  margin: 0 auto;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.list-item .item {
  position: relative;
  background-color: #eaeaea;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.list-item .item:hover {
  transform: scale(1.03);
}

.list-item .item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.list-item .item-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .list-item .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .list-item .item img {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .list-item .grid-container {
    grid-template-columns: 1fr;
  }
  .list-item .item img {
    height: 200px;
  }
}

/* Our product end */
/* navbar */
/* .navbar .container{
  height: 75px;
} */

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--gnr-blue-darker);
  margin-bottom: 2rem;
  text-align: center;
  /* Center align */
}

/* Scroll-trigge#0781aa 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: #ededed;
}

.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: #0781aa;
  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: #0d5788e7;
  color: white;
  transform: translateY(-2px);
}

/* Product pills centered on desktop */
.product-pills {
  justify-content: center;
}

.product-card {
  /* border: 1px solid var(--gnr-border-light); */
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0px 8px rgb(0 0 0 / 17%);
  /* filter: drop-shadow(2px 2px 2px grey); */
}

.product-card:hover {
  transform: translateY(-1px);
  /* More pronounced lift */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  /* Deeper shadow */
}

.product-card .card-img-top {
  height: 200px;
  object-fit: cover;
  /* 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: 0rem;
  /* 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.1rem;
  font-weight: bold;
  color: var(--gnr-blue-darker);
  /* color: #0781aa; */
  margin-bottom: 0.75rem;
}

.product-card .card-text {
  color: var(--gnr-text-muted);
  font-size: 0.75rem;
  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-btn2 {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.product-btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.product-btn.btn-outline-primary {
  /* color: var(--gnr-blue-primary);
  border-color: var(--gnr-blue-primary); */
  color: #0781aa;
  border-color: #0d5788e7;
}

.product-btn2.btn-outline-primary:hover {
  /* WhatsApp button hover color */
  background-color: #25d366;
  border-color: #25d366;
  color: var(--gnr-white);
  /* transform: translateY(-2px); */
}

.product-btn.btn-outline-primary:hover {
  /* background-color: var(--gnr-blue-primary); */
  background-color: #aa0707ff;
  border-color: #aa0707ff;
  color: var(--gnr-white);
  /* transform: translateY(-2px); */
}

/* WhatsApp button specific hover color */
.product-btn.btn-outline-primary[href*="wa.me"]:hover {
  background-color: #25d366;
  border-color: #25d366;
  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: #0d5788e7;
  border-color: #0781aa;
  color: var(--gnr-white);
}

.product-btn.btn-primary:hover {
  /* background-color: var(--gnr-blue-hover);
  border-color: var(--gnr-blue-hover); */
  background-color: #0781aa;
  border-color: #0d5788e7;
  /* transform: translateY(-2px); */
}

.load-more-btn {
  background: #0781aa;
  border-color: #0d5788e7;
  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: #0781aa;
  border-color: #0781aa;

  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);
  }
}

@media (max-width: 576px) {
  .about-img {
    height: 120px;
  }
}

/* .technology-image-container:hover .technology-image {
  transform: scale(1.03); 
} */

.more-details-btn {
  /* background-color: var(--gnr-blue-primary); */
  background-color: #0d5788e7;
  border-color: #0d5788e7;
  color: var(--gnr-white);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  width: fit-content;
  /* margin: 0px auto; */
}

.more-details-btn:hover {
  /* background-color: var(--gnr-blue-hover); */
  background-color: #0781aa;
  border-color: #0d5788e7;
  /* 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, #0d5788e7, #D4649D, #67C5EB,#50AD4D); */
  margin-bottom: 50px;
  background: linear-gradient(
    45deg,
    #949494 0%,
    #8b8b8b 20%,
    #e9e9e9 40%,
    #dadada 60%,
    #707070 80%,
    #afafaf 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: #0781aa;
  border-color: #696969;
  /* #0d5788e7 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: #0781aa;
  border-color: #0781aa;
  transform: translateY(-2px);
}

.contact-box-btn.btn-secondary {
  background-color: transparent;
  /* border-color: var(--gnr-blue-primary);
  color: var(--gnr-blue-primary); */

  border-color: #0d5788e7;
  color: #0d5788e7;
}

.contact-box-btn.btn-secondary:hover {
  background-color: #0781aa;
  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: #0781aa;
  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,
    #494949,
    #494949,
    #8d8d8d,
    #424242,
    #7e7e7e
  );
}

.rainbow {
  background: linear-gradient(
    90deg,
    #424242,
    rgb(61, 61, 61),
    #896969,
    #ec0000,
    rgb(255, 0, 0),
    #424242
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-img {
  height: 500px;
}
.desktop {
  display: block !important;
}
.mobile {
  display: none !important;
}
/* ========================================
   PREMIUM NAVBAR RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991.98px) {
  /* Mobile Navbar Adjustments */
  .premium-navbar {
    padding: 0.5rem 0;
  }

  .navbar-logo {
    height: 45px;
  }

  /* Hide desktop menu on mobile */
  .navbar-collapse {
    display: none !important;
  }

  .mobile-controls-wrapper {
    display: flex !important;
  }

  .contact-btn {
    padding: 0.5rem 1rem;
    font-size: 12px;
  }
}

.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 {
  /* display: none; */
  /* padding: 1rem !important;
    max-width: 80%;
    text-align: center; 
            margin-bottom: 40px; */
}

@media screen and (max-width: 767px) {
  .hero-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-content {
    width: 100%;
    margin-bottom: 400px;
  }
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
}

/*  .hero-content h1 {
    font-size: 13px;
  } */

/* .hero-content p {
    font-size: 10px;
  } */

.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: 1rem 2rem !important;
}

.technology-content h3 {
  font-size: 22px;
}

.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;
  font-size: 12px;
}

.breadcrumb li {
  font-size: 12px;
}
.section-subheading {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.contact {
  width: 100%;
  height: 250px;
  border: 0;
  outline: none;
}

@media (max-width: 767.98px) {
  body {
    padding-top: 60px;
    /* Adjust for smaller navbar height */
  }

  .hero-section {
    height: 300px;
    /* margin-top: -60px; */
  }

  .hero-carousel .item {
    height: 500px;
  }

  .section-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .section-subheading {
    font-size: 12px;
    font-weight: 400;
    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 {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #0781aa transparent;
    padding-bottom: 5px;
    gap: 10px;
    justify-content: flex-start;
  }

  .product-pills::-webkit-scrollbar {
    height: 6px;
  }

  .product-pills::-webkit-scrollbar-track {
    background: transparent;
  }

  .product-pills::-webkit-scrollbar-thumb {
    background-color: #0781aa;
    border-radius: 3px;
  }

  .product-pills .nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-pills .nav-link {
    white-space: nowrap;
    margin-right: 0;
    margin-bottom: 0;
    min-width: fit-content;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .technology-row .col-md-6 {
    order: unset !important;
    /* Reset order for mobile to stack naturally */
  }

  .technology-image-container {
    height: 250px;
    /* margin:0 10px; */
  }

  .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;
  }

  .owl-carousel {
    /* margin-top: 49px; */
  }

  .contact {
    height: 100px;
  }
}

.ratio {
  height: 40vh;
}

/* about page */
.abt-banner {
  position: relative;
  /* height: 70vh; */
  height: 50vh;
  overflow: hidden;
}

.abt-banner img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
}

/* Banner Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.banner-title {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-subtitle {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}

.abt-img {
  height: 500px;
  object-fit: cover;
}

/* Responsive banner */
@media (max-width: 768px) {
  .abt-banner {
    height: 500px;
    position: relative;
  }

  /* .abt-banner img {
    height: 70vh;
  }
   */
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .abt-banner {
    max-height: 200px;
    position: relative;
  }

  .abt-banner img {
    height: 250px;
  }

  .banner-overlay {
    position: absolute;
    /* height: 70vh; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .banner-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }
}

.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: #0781aa;
  border-color: #0781aa;
}

.yellow-btn:hover {
  background-color: #0781aa;
  border-color: #0781aa;
}

@media (max-width: 768px) {
  .banner-box h1 {
    font-size: 16px;
  }

  .banner-box p {
    font-size: 16px;
    padding: 4px;
    margin-left: 15px;
  }
  .contact-img {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .product-btn2 {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .more-details-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}

/* 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: #ffffffa9;
  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;
}

/* Contact Page */

.navbar-toggler {
  /* background-color: white; */
}

/* products section or pages */
/* Section Styling */
.product-section {
  padding: 30px 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: #0781aa;
}

/* 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: 1rem;
  }

  .mt-4 {
    margin-top: 20px;
  }

  .ratio {
    height: 150px;
  }
}

/* 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: #0781aa;
  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: #0781aa;
  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;
  }
  .contact-info .info-box {
    height: 100%;
  }
  .contact-info .info-box p {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* Tabs Section */
.tabs-section {
  padding: 10px 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;
}

/* Mobile horizontal scrolling for tabs */
@media (max-width: 767px) {
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .nav-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .nav-tabs .nav-item {
    flex-shrink: 0;
  }
}

.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: #0781aa;
  border: none;
  /* border-radius: 8px;
  box-shadow: 0 4px 12px #0781aa; */
}

/* 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: 4%;
}

.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: 9px;
  height: 9px;
  margin: 5px 7px;
  background: #0781aa;
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: black;
  border: 1px solid #2cafda;
}

.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;
}

.accessories p {
  text-align: center;
  font-size: 1.2rem;
  color: #0781aa;
  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; */
}

/* Contact Form Styles */
.form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0781aa;
  box-shadow: 0 0 0 0.2rem rgba(7, 129, 170, 0.15);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.invalid-feedback {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.form-label {
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
}

.alert {
  border-radius: 6px;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* 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: 32px;
  }

  .mt-5 {
    padding: 10px;
    margin-top: 1rem !important;
  }

  .product-image {
    margin-top: 10px;
    height: 250px;
  }

  .footer,
  .mb-4 {
    margin-bottom: 10px !important;
  }
}

/* whats app link  */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}
/* whats app link end */
.cctv-links {
  color: black;
  text-decoration: none;
}

.heading-minimal {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  /* color: #071635; */
  padding-bottom: 4px;
  /* border-bottom: 3px solid #0a58ff; */
  display: inline-block;
  /* text-transform: uppercase; */
} 
 .quotes {
    font-size: 42px;
    color: #ff0000;
    font-weight: 700;
    line-height: 1;
}

/* Tablet Screens */
@media (max-width: 992px) {
    .heading-minimal {
        font-size: 20px;
        margin-top: 30px;
    }

    .quotes {
        font-size: 34px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .heading-minimal {
        font-size: 16px;
        margin-top: -10px;
        line-height: 1.4;
        display: block;
        padding: 0 10px;
    }
    .quote-wrapper{
      margin-top: 30px;
    }

    .quotes {
        font-size: 26px;
    }
}

