body{
background-color:#fafafa !important;}


.since-text {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-weight: bold;
      font-size: 2rem;
      color: #0056b3;
      margin-right: 20px;
      white-space: nowrap;
    }

  ul.list-unstyled li a::before {
    content: "- ";
    margin-right: 4px;
  }

  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus,
  .dropdown-menu .dropdown-item.active,
  .dropdown-menu .dropdown-item:active {
    background-color: #0056b8 !important;
    color: #ffffff !important;
  }
    .image-stack {
      position: relative;
      width: 100%;
    }

    .image-stack img {
      width: 100%;
      height: auto;
      object-fit: cover;
      clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
      border-radius: 8px;
    }

    .image-stack .top-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 80%;
      z-index: 2;
    }

    .image-stack .bottom-image {
      position: relative;
      top: 100px;
      left: 100px;
      width: 85%;
      z-index: 1;
    }

    .section-content h6 {
      color: #0056b3;
      font-weight:bold;
      text-transform: uppercase;
    }

    .section-content h2 {
      font-weight: 700;
      font-size: 2rem;
    }

    .feature-icon {
      font-size: 2rem;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .btn-view {
      background-color: #0056b3;
      color: white;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 5px;
      text-transform: uppercase;
      text-decoration: none;
        clip-path: polygon(0 0, 89% 0, 100% 50%, 100% 100%, 0 100%);
      display: inline-block;
    }

    @media (max-width: 768px) {
      .since-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        text-align: center;
        margin-bottom: 10px;
      }

      .image-stack {
        margin-bottom: 30px;
      }

      .image-stack .top-image,
      .image-stack .bottom-image {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        clip-path: none;
      }
    }

    /* count */
  .statistics-section {
   
      color: white;
      position: relative;
      overflow: hidden;
    
    }

/*    .statistics-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://i.imgur.com/ab0UKX4.png') no-repeat left center; /* Replace with your image path */
      /* background-size: contain;
      opacity: 0.15;
      z-index: 0;
    }*/ */

    .statistics-content {
      position: relative;
      z-index: 1;
      padding: 45px 0;
    }

    .stat-title {
      font-size: 27px;
      font-weight: 700;
      margin-bottom: 10px;
      padding-left: 40px;
      padding-top: 5px;
    }

    .stat-subtitle {
      font-size: 18px;
      margin-bottom: 40px;
      padding-left: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 48px;
      font-weight: 700;
    }

    .stat-label {
      font-size: 18px;
    }

    @media (max-width: 767px) {
      .stat-number {
        font-size: 36px;
      }
    }

    /* who we are */
   .section-title {
      color: #0056b3;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .main-heading {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .feature-box {
      border: 1px dashed #0056b3;
      border-radius: 8px;
      padding: 20px;
      /* display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: center; */
      height: 100%;
    }
    .feature-box img{
      height: auto;
      width: 50px;
    }

    .feature-text {
      font-size: 15px;
      font-weight: 500;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
    }

    .left-image {
      max-width: 130px;
      margin-top: 40px;
      opacity: 0.1;
    }

    @media (max-width: 768px) {
      .main-heading {
        font-size: 22px;
      }

      .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }

      .feature-icon {
        order: -1;
      }
    }

  /* ===== SECTION HEADINGS ===== */
  .section-title-1 {
    color: #0056b3;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 10px;
  }

  .main-heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
  }

  /* ===== PRODUCT CARD ===== */
  .product-box {
    border-top: 2px solid #0056b3;
    padding: 20px;
    background-color: #0056b3;
    color: #fff;

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px; /* 🔥 All cards same height */
    transition: all 0.6s ease;
  }

  /* HOVER EFFECT */
  .product-box:hover {
    background: #f9f9f9;
    clip-path: polygon(-90% 0%, 26% 100%, 100% 100%, 100% 90%, 100% 0%, 69% 0%);
  }

  .product-box:hover h6,
  .product-box:hover p {
    color: #0056b3;
  }

  /* TEXT AREA */
  .product-content {
    flex: 1; /* 🔥 grows to fill available space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .product-box h6 {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
  }

  .product-box p {
    margin-bottom: 0;
    /*text-align: justify;*/
  }

  /* IMAGE CONTAINER */
  .product-image-container {
    margin-top: auto; /* 🔥 sticks image to bottom */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(100% 0%, 100% 100%, 88% 100%, 0% 100%, 0% 0%);
    min-height: 280px; /* mobile-friendly */
  }

  .product-image-container img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    clip-path: polygon(-69% 0%, 30% 100%, 100% 100%, 100% 90%, 100% 30%, 69% 0%);
  }

  /* ===== OWL CAROUSEL FIXES ===== */
  .owl-carousel .item {
    height: 100%;
    display: flex;
  }

  .owl-carousel .item a {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }
  .product-link{
      text-decoration: none;
  }

  /* ===== MOBILE RESPONSIVE ===== */
  @media (max-width: 768px) {
    .product-box {
      min-height: 500px;
    }

    .product-image-container {
      min-height: 220px;
      clip-path: none;
    }

    .product-image-container img {
      clip-path: none;
    }
  }


    .arrow-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .arrow-buttons .btn {
      border-radius: 6px;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .arrow-buttons .btn-primary {
      background-color: #0056b3;
      border: none;
    }

    /* our product */
    
    .section-title {
      color: #0056b3;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .main-heading {
      font-size: 26px;
      font-weight: 700;
      line-height: 1.4;
    }

    .product-box {
      border-top: 2px solid #0056b3;
      padding: 20px;
  background-color: #0056b3;
  color: #fff;


      height: 100%;
    }
  .product-box:hover {
    background: #f9f9f9;

  transition: 1s;
      clip-path: polygon(-90% 0%, 26% 100%, 100% 100%, 100% 90%, 100% 0%, 69% 0%);
}

.product-box:hover h6,
.product-box:hover p {
  color: #0056b3;
}


    .product-box.highlight {
      background: #0056b3;
      color: #fff;
      clip-path: polygon(-90% 0%, 26% 100%, 100% 100%, 100% 90%, 100% 0%, 69% 0%);

    }

    .product-box.highlight h6 {
      color: #fff;
    }

    .product-box h6 {
      font-weight: 700;
      font-size: 16px;
      color: #fff;
    }

    .product-image-container {
      position: relative;
      /* background-color: #f1f1f1; */
      clip-path: polygon(100% 0%, 100% 100%, 88% 100%, -4% 100%, 0% 0%);
      padding: 20px;
      margin-top: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-box.highlight .product-image-container {
      /* background-color: #fff; */
      clip-path:polygon(100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 1%);
    }

    .product-image-container img {
      max-width: 100%;
      height: auto;
          clip-path: polygon(-69% 0%, 30% 100%, 100% 100%, 100% 90%, 100% 30%, 69% 0%);
    }

    .arrow-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .arrow-buttons .btn {
      border-radius: 6px;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .arrow-buttons .btn-primary {
      background-color: #0056b3;
      border: none;
    }

    /* gallery */
   

  .blue-section {
      background-color: #0056b3;
      color: #fff;
      padding: 28px 20px;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, 93% 0, 100% 19%, 100% 100%, 0 100%);
    }
@media (max-width:768px) {

  .blue-section{
        clip-path: polygon(0 0, 93% 0, 100% 8%, 100% 100%, 0 100%);


  }
}
@media (max-width:425px) {
  .blue-section{
            clip-path: polygon(0 0, 89% 0, 100% 3%, 100% 100%, 0 100%);
    
  }
  
}
    .section-title {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .main-heading {
      font-size: 26px;
      font-weight: 700;
      line-height: 1.4;
    }

    .image-grid {
      margin-top: 40px;
    }

    .image-grid img {
      width: 100%;
      height: auto;
      height: 100%;
      object-fit: cover;
    }

    .clipped-image {
      clip-path: polygon(0 0, 100% 0, 100% 85%, 100% 100%, 0 100%)
    }

    @media (max-width: 768px) {
      .main-heading {
        font-size: 20px;
      }
    }

 .founder-section {
  padding: 37px 20px;
  background-color: #fff;
}

.founder-title {
  color: #0056b3;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.founder-heading {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
}

.founder-text p {
      margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.read-more {
  color: #0056b3;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.read-more:hover {
  text-decoration: underline;
}

.founder-image-wrapper {
     position: relative;
    width: 320px;
    height: 300px;
    margin: 0 auto;
}

.founder-circle-bg {
  background-color: #ffece7;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.founder-image {
position: absolute;
    top: 50%;
    left: 50%;
    /* width: 292px; */
    height: 344px;
    transform: translate(-50%, -50%);
    /* border-radius: 34%; */
    object-fit: cover;
    z-index: 2;
}



/* Responsive */
@media (max-width: 768px) {
  .founder-image-wrapper {
    margin-top: 30px;
    width: 220px;
    height: 220px;
  }

  .founder-heading {
    font-size: 22px;
  }

  .founder-text p {
    font-size: 15px;
  }
}
    /* testimonial  */
    
    .testimonial-section {
      background-color: #f3f7fb;
      padding: 60px 20px;
    }

    .section-title {
      color: #0056b3;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .main-heading {
      font-size: 26px;
      font-weight: 700;
    }

    .testimonial-card {
      background: white;
      border: none;
      border-radius: 4px;
      padding: 25px;
      position: relative;
clip-path: polygon(0% 0%, 76% 0%, 100% 30%, 100% 100%, 0% 100%);

      height: 100%;
    }

    .testimonial-card img.user-photo {
      width: 80px;
      height: 80px;
      /* border-radius: 50%; */
      object-fit: cover;
      margin-bottom: 15px;
    }

    .testimonial-card .stars {
      color: #ffc107;
      font-size: 16px;
    }

    .testimonial-card h6 {
      font-weight: 700;
      text-transform: uppercase;
      margin-top: 20px;
      margin-bottom: 4px;
    }

    .testimonial-card small {
      color: #666;
    }

    .avatar-group img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
      margin-left: -10px;
    }

    .avatar-group img:first-child {
      margin-left: 0;
    }

    .review-count {
      font-weight: 700;
      margin-left: 15px;
    }

    .arrow-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .arrow-buttons .btn {
      border-radius: 1px;
      width: 70px;
      height: 45px;
      background-color: #dde4ec;
      display: flex;
      align-items: center;
      justify-content: center;
  clip-path: polygon(0 0, 0 70%, 25% 100%, 100% 100%, 100% 0);
      padding: 0;
		border: none;
    }
.arrow-buttons .btn-1{
    border-radius: 1px;
      width: 70px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
    clip-path: polygon(0 0, 71% 0, 100% 42%, 100% 100%, 0 100%);
      padding: 0;
}
    .arrow-buttons .btn-primary {
      background-color: #0056b3;
      border: none;
    }
    /* footer0 */
     .footer {
      background-color: #1e1e1e;
      color: #ffffff;
      padding: 60px 20px 20px;
      font-size: 14px;
    }

    .footer h6 {
      text-transform: uppercase;
      font-weight: 800;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .footer a {
      color: #ccc;
      text-decoration: none;
    }

    /* .footer  {
      color: #fff;
    } */

    .footer .download-btn {
      background-color: #fff;
      color: #000;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 2px;
      display: inline-block;
      font-size: 13px;
      text-transform: uppercase;
      position: relative;
          clip-path: polygon(0 0, 100% 0, 100% 60%, 92% 100%, 0% 100%);
    }

    /*  */

    .footer .icon {
      color: #fff;
      margin-right: 8px;
      font-size: 20px;
      
    }

    .footer .social-icons a {
      margin-right: 12px;
      font-size: 16px;
      color: #ccc;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      margin-top: 30px;
      padding-top: 15px;
    }

    .footer-logo {
      background: #fff;
      color: #000;
      padding: 5px 15px;
      border-radius: 5px;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .footer .download-btn::after {
        display: none;
      }
    }

    .section-title-1{
      font-size: 22px;
      font-weight: 700;
      color: #0056b3;
      
    }

    /* about banner */
      .about-banner {
    background-color: #000; /* Black background */
  }

  .breadcrumb-text {
    font-size: 18px;
    color: #ccc;
    margin-top: 10px;
    font-weight: 500;
  }
  .display-4{
    font-size: 23px;
    font-weight: 700;

  }
  /*  value*/
    .values-section {
    background-color: #f8f9fa;
    color: #002a5c;
  }

  .value-box {
    transition: transform 0.3s ease;
  }

  .value-box:hover {
    transform: translateY(-8px);
  }

  .bg-blue-dark {
    background-color: transparent; /* Dark Blue */
    color: black;
  }

  .bg-blue-mid {
    background-color:#0056b3; /* Madhu Blue */
    color: white;
  }

  .bg-gray-light {
    background-color: transparent; /* Logo Triangle Gray */
    color: black;
  }

  .bg-blue-dark:hover{
    background-color:#0056b3;
    color: white;
  }
  .bg-blue-mid:hover{
    background-color:#0056b3;
  }
  .bg-gray-light:hover{
      background-color:#0056b3;
      color: white;
  }
  .icon {
    font-size: 40px;
  }

  @media (max-width: 768px) {
    .icon {
      font-size: 32px;
    }
  }

  /* contact */
  .inquiry-section {
  background-color: #fff;
  padding: 60px 0;
}

.container {
  width: 100%;
  /*max-width: 1200px;*/
  margin: auto;
}

.inquiry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left side (Form) */
.form-box {
  flex: 1 1 60%;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
}

.form-heading {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

.form-box form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ✅ Improved input-box responsiveness */
.input-box {
  flex: 1 1 48%;
  position: relative;
  margin-bottom: 15px;
}

.input-box.full {
  flex: 1 1 100%;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 45px 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  resize: none;
}

/* ✅ Improved icon positioning */
.input-box i,
.contact-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
}

/* Submit Button */
.form-box button {
  background: #003087;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 16px;
  color: #ccc;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
  transition: 0.3s;
  width: 100%;
}

.form-box button:hover {
  background: #002060;
  color: #fff;
}

/* Right Side (Info) */
.info-box {
  flex: 1 1 35%;
  background: #003087;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
}

.info-item i {
  font-size: 24px;
  color: #ccc;
}

.info-item label {
  font-weight: 500;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
  color: #ddd;
}

.info-item p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

hr {
  border: 0;
  border-top: 1px solid #444;
}

/* ✅ Responsive form stacking */
@media (max-width: 768px) {
  .inquiry-grid {
    flex-direction: column;
  }

  .input-box {
    flex: 1 1 100%;
  }

  .form-box,
  .info-box {
    width: 100%;
  }
}


.contact-icon{
  padding-right: 10px;
}
.custom-input {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
}

.custom-input:focus {
  outline: none;
  border-color: #003087;
  box-shadow: 0 0 0 3px rgba(0, 86, 184, 0.3); /* soft blue glow */
}


/* about section  */
.stats-section {
  background-color: #003087; /* Matches the blue in your image */
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 5px;
}


/* css -1 */
  body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Navbar */
   /* General navbar style */
.navbar {
  /* height: 100px; */
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
border-bottom: 1px solid #d8d8d8; /* Light grey like in image */
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05); /* Optional soft line */
  height: 100px;
}

/* Logo */
.navbar-brand img {
  height: 80px;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #333;
  padding: 0 18px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding-right: 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #0056b8;
  border-bottom: 2px solid #0056b8;
}

/* Inquiry button */
.inquiry-btn {
  background-color: #0056b8;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 40px 12px 40px;
  font-size: 13px;
  clip-path: polygon(0 0, 80% 0, 100% 42%, 100% 100%, 0 100%);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  height: 50px;
}

.inquiry-btn:hover {
  background-color: #0046a3;
}
 /* Hero Section */
    .headline {
      font-size: 2.7rem;
      font-weight: 800;
      color: #0056b8;
      border-left: 4px solid #0056b8;
      padding-left: 15px;
      line-height: 1.3;
      margin-bottom: 20px;
        font-family: Arial, sans-serif;

    }

    .subheadline {
      font-size: 2.2rem;
      font-weight: 700;
      color: #222;
      line-height: 1.2;
      font-family: Arial, sans-serif;
 
    }

    .tagline {
      font-family: 'Dancing Script', cursive;
      font-style: italic;
      font-size: 18px;
      color: #6c757d;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 1rem;
      color: #333;
        font-family: Arial, sans-serif;
        text-align: justify;
    }

    .hero-text strong {
      font-weight: 800;
        font-family: Arial, sans-serif;
    }
.heading-top{
    font-size: 1.4rem;
      font-weight: 800;
      color: #0056b8;
      line-height: 1.2;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 800;
letter-spacing: -0.5px;
text-transform: uppercase;
}
    /* Styled Button */
    .blue-btn {
      position: relative;
      background-color: #0056b8;
      color: white;
      border: none;
      padding: 14px 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: 0.3s;
      clip-path: polygon(0 0, 89% 0, 100% 50%, 100% 100%, 0 100%);
    }

    .blue-btn i {
      margin-left: 10px;
      font-size: 1rem;
    }

    .blue-btn:hover {
      background-color: #0046a3;
    }

    .machine-image {
      max-width: 100%;
      height: 500px;
    }
@media (max-width:768px) {
      .machine-image {
      max-width: 100%;
      height: 500px;
      padding-top: 10px;
    }
    
}
    @media (max-width: 768px) {
      .headline {
        font-size: 1.8rem;
      }

      .subheadline {
        font-size: 1.5rem;
      }
    }
.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 173px;
  color: #0056c1;
}

.images-wrapper {
  position: relative;
}

.top-image {
  width: 350px;
  height: 450px;
  overflow: hidden;
  clip-path: polygon(0 0, 80% 0, 100% 17%, 100% 100%, 0 100%);
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bottom-image {
  position: absolute;
  bottom: -50px;
  left: -120px;
  width: 280px;
  overflow: hidden;
  clip-path: polygon(0 0, 0 70%, 25% 100%, 100% 100%, 100% 0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff;
  border: 4px solid #fff;
}

.bottom-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .col-md-6.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    text-align: center;
  }

  .vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 10px;
    font-size: 28px;
  }

  .top-image {
    width: 100%;
    height: auto;
    clip-path: none;
  }

  .bottom-image {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
    clip-path: none;
    border: none;
    box-shadow: none;
  }

  .bottom-image img {
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .vertical-text {
    font-size: 22px;
  }

  .section-content h2 {
    font-size: 22px;
  }

  .section-content p, 
  .section-content h6 {
    font-size: 14px;
  }

  .btn-view {
    font-size: 14px;
    padding: 8px 16px;
  }
}

    .navbar-nav .nav-link {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      color: #333;
      margin-right: 20px;
    }

    .navbar-nav .nav-link.active {
      color: #003087;
      border-bottom: 2px solid #0056b3;;
    }

    .btn-inquiry {
      background-color: #0056b3;;
      color: white;
          clip-path: polygon(0 0, 86% 0, 100% 37%, 100% 100%, 0 100%);
text-decoration: none;
      font-weight: 600;
      padding: 8px 30px;
      border-radius: 0;
      text-transform: uppercase;
      position: relative;
    }

    .btn-inquiry::after {
      content: "↗";
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
    }

    .navbar-brand img {
      height: 80px;
    
    }
    strong{
      font-weight: 800;
      color: black;
    }
     .mobile-nav-bg {
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
.strong-text{
  font-weight: 700;
}
  @media (min-width: 992px) {
    .mobile-nav-bg {
      background-color: transparent;
      position: static;
      padding: 0;
      box-shadow: none;
    }
  }

  .statistics-content {
  position: relative;
}

@media (max-width: 768px) {
  .statistics-content {
    background-position: center top;
    background-size: cover;
  }
}
.feature-box{
  margin: 0px 10px;
}

.feature-box:hover{
  background-color:#bbbcbf;
  
}
.feature-box:hover .feature-text {
  color: white;
}
.feature-box:hover img {
    height: auto;
    width: 50px;
   
}

@media(max-width:425px){
  .section-statics{
    text-align: center;
    padding-bottom: 7px;
  }
}

.right-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

/* Responsive fix for mobile screens (425px and below) */
@media (max-width: 425px) {
  .right-content {
    justify-content: center !important;
    align-items: center !important;
  }
}
/* exhibitions page */
  .exhibitions-hero {
      background: url('hero.jpg') no-repeat center/cover;
      color: white;
      text-align: center;
      padding: 100px 20px 60px;
      background-color: #034da2;
    }
    .exhibitions-hero h1 {
      font-size: 48px;
      margin-bottom: 10px;
    }
    .exhibitions-hero p {
      font-size: 18px;
    }

    .tabs {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    .tab {
      padding: 10px 25px;
      border: none;
      background: #ddd;
      margin: 0 10px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
      border-radius: 5px;
    }
    .tab.active {
      background: #0078d4;
      color: white;
    }

    .exhibitions {
      display: flex;
      justify-content: center;
      padding: 40px 20px;
    }
    .exhibition-list {
      display: none;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      justify-content: center;
    }
    .exhibition-list.active {
      display: flex;
    }

    .card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      width: 300px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s forwards;
    }
    .card img {
          width: 100%;
    height: 245px;
   
    object-fit: contain;
    }
    .card-content {
      padding: 20px;
    }
    .card-content h3 {
      margin: 0 0 10px;
      color: #0078d4;
    }
    .card-content p {
      margin: 0 0 8px;
      font-size: 14px;
      color: #555;
    }

    @keyframes fadeInUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @media (max-width: 768px) {
      .exhibition-list {
        flex-direction: column;
        align-items: center;
      }
    }

 .dropdown-item.active,
.dropdown-item:active {
  background-color: #0056b8 !important; /* Light cream color */
  color: #ffffff !important; /* Adjust text color as needed */
}
@media(max-width:475px){
	.social-icons{
	display:none;
	}}/* ==========================================================================
   Shared Components (Product Grids, Positions, Clients)
   ========================================================================== */

/* Shared Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fdfdfd;
}

.product-logo {
    max-height: 50px;
    max-width: 80%;
    object-fit: contain;
}

.product-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.product-img {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/*.product-card:hover .product-img {*/
/*    transform: scale(1.05);*/
/*}*/

.product-footer {
    background: #0056b8;
    padding: 15px !important;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Career Page Positions */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.position-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.position-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.position-card .requirements {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Client Page Elements */
.clients-section {
    padding: 60px 0;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid #0056b8;
    border-radius: 50px;
    color: #0056b8;
    background: white;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active {
    background: #0056b8;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.marquee-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.marquee {
    display: flex;
    gap: 30px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.marquee-track img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
}

.marquee-left { animation: scroll-left 30s linear infinite; }
.marquee-right { animation: scroll-right 30s linear infinite; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ==========================================================================
   Hero Section and Breadcrumb Styles (Standardized)
   ========================================================================== */

.hero-section, .hero, .hero-1, .about-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: white !important;
    padding: 60px 0 45px !important;
    position: relative !important;
    overflow: hidden !important;
    line-height: normal !important;
    min-height: auto !important;
    display: block !important;
    text-align: left !important;
}

.hero-section::before,
.hero-section::after,
.hero::before,
.hero::after,
.hero-1::before,
.hero-1::after,
.about-banner::before,
.about-banner::after {
    display: none !important;
    content: none !important;
}

.breadcrum {
    margin-bottom: 0 !important;
}

.breadcrum p:first-child, .hero-section h1, .hero h1, .hero-1 h1, .about-banner h1 {
    font-size: 23px !important;
    font-weight: 800 !important;
    text-align: start !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    color: white !important;
}

.breadcrum p:nth-child(2), .breadcrum p.breadcrumb-links {
    font-size: 17px !important;
    font-weight: 600 !important;
    text-align: start !important;
    padding-top: 10px !important;
    position: relative !important;
    z-index: 10 !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
    color: white !important;
}

.breadcrum a {
    text-decoration: none !important;
    color: white !important;
    transition: color 0.3s !important;
}

.breadcrum a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.breadcrum span {
    color: white !important;
}

