.logo img 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: #333;
      line-height: 1.6;
    }

    /* Top Bar */
    .top-bar {
      background-color: #ffffff;
      padding: 8px 20px;
      font-size: 14px;
    }

    .top-bar .container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-bar a {
      color: #0A3290;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-bar a:hover {
      color: #c9a227;
    }

    /* Main Navigation *
    .main-nav {
      background-color: #0A3290;
      padding: 0 20px;
    }

    .main-nav .container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      background-color: white;
      border-radius: 8px;
      padding: 8px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg {
      width: 35px;
      height: 35px;
      fill: #0A3290;
    }

    .logo-text {
      color: white;
      line-height: 1.1;
    }

    .logo-text .brand {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 2px;
    }

    .logo-text .tagline {
      font-size: 8px;
      letter-spacing: 1px;
      opacity: 0.8;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 10px;
      list-style: none;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      padding: 10px 15px;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #c9a227;
    }

    .search-box {
      position: relative;
    }

    .search-box input {
      width: 200px;
      padding: 10px 40px 10px 15px;
      border-radius: 25px;
      border: none;
      font-size: 14px;
      background-color: #f5f5f5;
    }

    .search-box button {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      color: #666;
    }



    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
    }*/

   /* =========================
   BANNER SECTION
========================= */
.banner{
    width:100%;
    overflow:hidden;
    background:#fff;
}

.banner img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

    .banner img{
        min-height:350px;
        object-fit:cover;
    }
}

@media(max-width:767px){

    .banner img{
        min-height:250px;
        object-fit:cover;
    }
}
    .banner h1 {
      font-size: 42px;
      font-weight: 800;
      font-style: normal;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .banner p {
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* Industries Section */
    .industries {
      padding: 60px 20px;
      background-color: #fff;
    }

    .industries .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: left;
      color: #000000;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .industry-card {
      text-align: center;
    }

    .industry-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 8px;
      /*border: 3px solid #0A3290;*/
      margin-bottom: 10px;
    }

    .industry-card p {
      font-size: 18px;
      font-weight: 500;
      color: #0A3290;
      margin-top: -9px;
      font-weight: 700;
    }

    /* About Section */
    .about {
      padding: 60px 20px;
      background-color: #f8f9fa;
    }

    .about .container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 300px 1fr 300px;
      gap: 40px;
      align-items: start;
    }

    .about-image img {
      width: 100%;
      border-radius: 8px;
    }

    .about-content h2 {
      color: #0A3290;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    .about-content .highlight {
      color: #0A3290;
      font-weight: 600;
    }

    .btn-primary {
      display: inline-block;
      background-color: #0A3290;
      color: white;
      padding: 12px 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .btn-primary:hover {
      background-color: #0A3290;
    }

    .testimonial {
      background-color: #0A3290;
      color: white;
      padding: 25px;
      border-radius: 8px;
    }

    .testimonial p {
      font-size: 14px;
      font-style: italic;
      margin-bottom: 15px;
    }

    .testimonial .author {
      font-weight: 600;
      font-style: normal;
    }

    .testimonial-dots {
      display: flex;
      gap: 8px;
      margin-top: 15px;
    }

    .testimonial-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.5);
    }

    .testimonial-dots span.active {
      background-color: white;
    }

    /* Resources Bar */
    .resources-bar {
      padding: 30px 20px;
      background-color: #fff;
      border-top: 1px solid #eee;
    }

    .resources-bar .container {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .resource-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .resource-item svg {
      width: 24px;
      height: 24px;
      fill: #0A3290;
    }

    .resource-item .text strong {
      display: block;
      font-size: 14px;
      color: #0A3290;
    }

    .resource-item .text span {
      font-size: 12px;
      color: #666;
    }

    .btn-outline {
      display: inline-block;
      border: 2px solid #0A3290;
      color: #0A3290;
      padding: 10px 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s;
    }

    .btn-outline:hover {
      background-color: #0A3290;
      color: white;
    }

    /* Global Reach Section */
    /*.global-reach {
      background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.9)),
                  url('imges/middle-east-map.jpg') center/cover;
      padding: 60px 20px;
      display: flex;
      align-items: center;
    }

    .global-reach .container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 60px;
      align-items: center;
    }

    .countries-list {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
    }

    .countries-list h3 {
      background-color: #0A3290;
      color: white;
      padding: 15px 20px;
      font-size: 16px;
    }

    .countries-list ul {
      list-style: none;
    }

    .countries-list li {
      padding: 12px 20px;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      color: #333;
    }

    .countries-list li:last-child {
      border-bottom: none;
    }*/

.global-reach {
  background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.9)),
                  url('imges/middle-east-map.jpg') center/cover;
  padding: 60px 0;
}

.global-reach .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SIDE – COUNTRY LIST */
.countries-list {
  width: 20%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.countries-list h3 {
  background: #0A3290;
  color: #fff;
  padding: 15px;
  margin: 0;
}

.countries-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.countries-list ul li {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

/* RIGHT SIDE – MAP */
.map-placeholder {
  width: 65%;
  min-height: 400px;
  /*background: url("imges/middle-east-map.jpg") center/contain no-repeat;*/
}

@media (max-width: 768px) {
  .global-reach .container {
    flex-direction: column;
  }

  .countries-list,
  .map-placeholder {
    width: 100%;
  }
}


    /* Team Section */
    .team-blog {
      padding: 60px 20px;
      background-color: #f8f9fa;
    }

    .team-blog .container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .team h2,
    .blog h2 {
      color: #0A3290;
      font-size: 28px;
      margin-bottom: 15px;
    }

    .team > p {
      font-size: 14px;
      color: #555;
      margin-bottom: 30px;
    }

    .team-members {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .team-member img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .team-member p {
      font-size: 13px;
      color: #333;
    }

    .blog-posts {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .blog-post h3 {
      font-size: 15px;
      color: #0A3290;
      margin-bottom: 5px;
    }

    .blog-post p {
      font-size: 13px;
      color: #666;
    }

    .btn-gold {
      display: inline-block;
      background-color: #0A3290;
      color: white;
      padding: 12px 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      margin-top: 20px;
      transition: background-color 0.3s;
    }

    .btn-gold:hover {
      background-color: #a88520;
    }

    /* Footer *
    .footer {
      background-color: #090b60;
      color: white;
      padding: 40px 20px;
    }

    .footer .container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 200px repeat(3, 1fr) 250px;
      gap: 40px;
    }

    .footer-logo .brand {
      font-size: 28px;
      font-weight: 800;
      font-style: italic;
    }

    .footer h4 {
      font-size: 14px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .footer ul {
      list-style: none;
    }

    .footer ul li {
      margin-bottom: 8px;
    }

    .footer a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.3s;
    }

    .footer a:hover {
      color: #c9a227;
    }

    .footer-contact p {
      font-size: 13px;
      margin-bottom: 8px;
      opacity: 0.8;
    }*/

    /* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A3290;
    color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 350px;
    z-index: 1000;
    display: none; /* Add this - hidden by default */
}

    .cookie-banner h4 {
      color: #c9a227;
      margin-bottom: 10px;
    }

    .cookie-banner p {
      font-size: 12px;
      margin-bottom: 15px;
      opacity: 0.9;
    }

    .cookie-buttons {
      display: flex;
      gap: 10px;
    }

    .cookie-buttons button {
      padding: 8px 20px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
    }

    .btn-decline {
      background: transparent;
      color: white;
      border: 1px solid white !important;
    }

    .btn-accept {
      background-color: #c9a227;
      color: white;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
      .industries-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .about .container {
        grid-template-columns: 1fr;
      }

      .about-image {
        display: none;
      }

      .global-reach .container {
        grid-template-columns: 1fr;
      }

      .team-blog .container {
        grid-template-columns: 1fr;
      }

      .footer .container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0A3290;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
      }

      .nav-links.active {
        display: flex;
      }

      .search-box {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .main-nav .container {
        position: relative;
      }

      .hero h1 {
        font-size: 28px;
      }

      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .resources-bar .container {
        flex-direction: column;
        text-align: center;
      }

      .team-members {
        grid-template-columns: 1fr;
      }

      .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
      }
    }

    @media (max-width: 480px) {
      .industries-grid {
        grid-template-columns: 1fr;
      }

      .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
      }
    }
 




    /* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: #0b3c5d;
  color: white;
}

.site-header input {
  margin-left: auto;
  padding: 8px;
  width: 260px;
}

/* Layout */
.catalog-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 20px;
}

/* Sidebar */
.filters {
  background: white;
  padding: 16px;
  border-radius: 6px;
}

.filters h3 {
  margin-top: 20px;
  font-size: 15px;
}

.filters label {
  display: block;
  font-size: 14px;
  margin: 6px 0;
}

/* Products */
.products h2 {
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.product-card h4 {
  font-size: 15px;
  margin: 12px 0 8px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  font-size: 13px;
  margin-bottom: 12px;
}

a {
    color: #004b87;
}

.product-card button {
  /*margin-top: auto;
  background: #f6d400;
  border: none;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;*/
  margin-top: auto;
  background-color: #f7ea48;
  color: #004b87;
  font-size: 14px;
  line-height: 19px;
  height: 28px;
  width: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Roboto condensed, sans-serif;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 20px;
  text-align: center;
  background: #0b3c5d;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .catalog-container {
    grid-template-columns: 1fr;
  }

  .site-header input {
    width: 160px;
  }
}


/* Breadcrumb */
.breadcrumb {
  padding: 10px 20px;
  font-size: 14px;
  background: white;
}

/* Main Layout */
.product-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 20px;
  padding: 20px;
}

/* Product Image */
.product-image img {
  width: 100%;
  background: white;
  padding: 15px;
}

/* Product Content */
.product-content {
  background: white;
  padding: 20px;
}

.product-content h1 {
  margin-top: 0;
  color: #005a9c;
}

.product-content ul {
  padding-left: 20px;
}

.downloads {
  margin-top: 20px;
}

.btn {
  background: #005a9c;
  color: white;
  padding: 10px 15px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
}

/* Contact Box */
.contact-box {
  background: white;
  padding: 20px;
}

.contact-box input,
.contact-box textarea,
.contact-box button {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.contact-box button {
  background: #f4e94d;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* CTA */
.cta {
  background: #005a9c;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.cta-form {
  margin-top: 15px;
}

.cta-form input {
  padding: 10px;
  margin-right: 10px;
  width: 200px;
}

.cta-form button {
  padding: 10px 20px;
  background: #f4e94d;
  border: none;
  cursor: pointer;
}




/* Header */
    .header {
      background-color: #ffffff;
      color: white;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 90px;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: bold;
      margin-top: 12px;
    }

    /* Desktop Navigation */
    .nav-menu {
      display: none;
      list-style: none;
      gap: 0;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.25rem;
      color: #000000;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: background 0.2s;
    }

    .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    /* Mega Menu Dropdown */
    .mega-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 800px;
      background: white;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      border: 1px solid #e5e7eb;
      z-index: 100;
    }

    .nav-item:hover .mega-menu {
      display: flex;
    }

    .mega-menu-sidebar {
      width: 180px;
      background: #f8f9fa;
      padding: 1rem;
      border-right: 1px solid #e5e7eb;
    }

    .sidebar-link {
      display: block;
      padding: 0.5rem 0;
      color: #1e3a5f;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .sidebar-link:hover {
      text-decoration: underline;
    }

    .mega-menu-content {
      flex: 1;
      padding: 1rem;
    }

    .shop-products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0rem;
    }

    .product-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem;
      border-radius: 0.375rem;
      text-decoration: none;
      color: #333;
      transition: background 0.2s;
    }

    .product-item:hover {
      background: #f3f4f6;
    }

    .product-img {
      width: 48px;
      height: 48px;
      background: #e5e7eb;
      border-radius: 0.25rem;
    }

    .product-name {
      font-size: 0.875rem;
      font-weight: 500;
    }

    /* Search */
    .search-box {
      display: none;
      position: relative;
    }

    .search-input {
      padding: 0.5rem 1rem 0.5rem 2.5rem;
      /*border: none;*/
      border-radius: 0.375rem;
      background: #f3f4f6;
      width: 250px;
      font-size: 0.875rem;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      padding: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-link {
      display: block;
      padding: 0.75rem 0;
      color: white;
      text-decoration: none;
      font-size: 0.875rem;
    }

    /* Desktop Styles */
    @media (min-width: 1024px) {
      .nav-menu {
        display: flex;
      }

      .search-box {
        display: block;
      }

      .menu-toggle {
        display: none;
      }

      .mobile-menu {
        display: none !important;
      }
    }

    /* Resources dropdown */
.resources-dropdown {
  position: relative;
}

.resources-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: none;
  z-index: 999;
}

.resources-menu li a {
  display: block;
  padding: 12px 16px;
  color: #0b4f8a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.resources-menu li:last-child a {
  border-bottom: none;
}

.resources-menu li a:hover {
  background: #f1f5f9;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 768px) {
  .resources-dropdown:hover .resources-menu {
    display: block;
  }
}


    /**about us**/
    /* Hero Section */
    .hero {
      background: rgb(9 11 96);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 15px;
    }

    .hero-subtitle {
      font-size: 18px;
      color: #ccc;
      margin-bottom: 20px;
    }

    .stats {
      display: flex;
      gap: 30px;
      margin-bottom: 30px;
    }

    .stat {
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.3);
      padding-right: 30px;
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: #f5c518;
    }

    .stat-label {
      font-size: 12px;
      color: #aaa;
    }

    .btn-primary {
      background: #f5c518;
      color: #1a3a6e;
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      margin-top: 12px;
    }

    .btn-primary:hover {
      background: #e0b000;
    }

    /* Timeline Section */
    .timeline-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .timeline-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .timeline-header h2 {
      font-size: 28px;
      color: #1a3a6e;
    }

    .timeline-header h2 span {
      font-weight: 400;
      color: #666;
    }

    .timeline-bar {
      background: #f5c518;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      overflow-x: auto;
      border-radius: 4px;
    }

    .timeline-year {
      color: #1a3a6e;
      font-weight: 600;
      white-space: nowrap;
      position: relative;
    }

    .timeline-year::after {
      content: '';
      width: 8px;
      height: 8px;
      background: #1a3a6e;
      border-radius: 50%;
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
    }

/* Values about Section */
 /* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Section */
.values-section {
  padding: 80px 0;
  background: #f8f9fb;
}

/* Layout */
.values-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.values-image {
  flex: 1;
}

.values-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* Content */
.values-content {
  flex: 1;
}

.values-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.values-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .values-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .values-image img {
    max-height: 350px;
  }

  .values-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .values-section {
    padding: 50px 0;
  }

  .values-content p {
    font-size: 14px;
  }
}

    /* Global Reach Section */
    .global-section {
      background: linear-gradient(135deg, #1a3a6e 0%, #0d2340 100%);
      color: white;
      padding: 60px 20px;
    }

    .global-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .global-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .global-section h2::before {
      content: '»';
      color: #f5c518;
      margin-right: 10px;
    }

    .accordion {
      background: white;
      color: #333;
      border-radius: 8px;
      overflow: hidden;
    }

    .accordion-item {
      border-bottom: 1px solid #eee;
    }

    .accordion-header {
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 500;
    }

    .accordion-header:hover {
      background: #f5f5f5;
    }

    .map-placeholder {
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 768px) {
    

      .mobile-menu-btn {
        display: block;
      }

      .hero-content {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 28px;
      }

      .stats {
        flex-wrap: wrap;
        gap: 20px;
      }

      .stat {
        border-right: none;
        padding-right: 0;
      }

      .timeline-header {
        grid-template-columns: 1fr;
      }

      .values-content {
        grid-template-columns: 1fr;
      }

      .global-content {
        grid-template-columns: 1fr;
      }

     

      .search-box {
        display: none;
      }
    }

    @media (max-width: 480px) {
     

      .stats {
        justify-content: center;
      }
    }


    /* Contact Section */
    .contact-section {
      background: #f5f5f5;
      padding: 60px 40px;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
    }

    .contact-info h2 {
      color: #0066a1;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .contact-info p {
      color: #555;
      margin-bottom: 30px;
      line-height: 1.8;
      text-align:justify;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #0066a1;
    }

    .contact-item svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .partner-link {
      margin-top: 40px;
    }

    .partner-link h3 {
      color: #0066a1;
      font-size: 20px;
      text-decoration: underline;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .partner-link p {
      color: #555;
      font-size: 14px;
    }

    /* Contact Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      font-family: inherit;
      background: white;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #0066a1;
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .submit-btn {
      background: #1a1a2e;
      color: white;
      padding: 16px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }

    .submit-btn:hover {
      background: #2a2a4e;
    }

    /* Map Placeholder */
    .map-section {
      background: #e0e0e0;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
     
      .search-box {
        display: none;
      }

      .hero {
        padding: 50px 20px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .contact-section {
        padding: 40px 20px;
      }

      .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
     @media (max-width: 480px) {
      .top-bar-left {
        flex-direction: column;
        gap: 8px;
        align-items: center;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }


    /*resources*/
    /* Hero Section */
    .pump {
      /*background: linear-gradient(135deg, rgba(26, 82, 118, 0.9), rgba(26, 82, 118, 0.8)), url('hero-bg.jpg');*/
      background: linear-gradient(135deg, #1a3a6e 0%, #0d2340 100%);
      background-size: cover;
      background-position: center;
      padding: 60px 40px 80px;
      color: #fff;
    }

    .pump h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .pump p {
      font-size: 18px;
      max-width: 500px;
      margin-bottom: 32px;
      opacity: 0.9;
    }

    .hero-search {
      display: flex;
      max-width: 600px;
    }

    .hero-search input {
      flex: 1;
      padding: 16px 20px;
      border: none;
      font-size: 16px;
      outline: none;
    }

    .hero-search button {
      background: #f1c40f;
      color: #1a5276;
      border: none;
      padding: 16px 32px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.3s;
    }

    .hero-search button:hover {
      background: #d4ac0d;
    }

    /* Cards Section */
    .cards-section {
      background: #f5f5f5;
      padding: 60px 40px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .card-image {
      height: 180px;
      background: linear-gradient(135deg, #3498db, #2980b9);
      position: relative;
      overflow: hidden;
    }

    .card-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.6));
    }

    .card-content {
      padding: 24px;
    }

    .card-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a5276;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .card-text {
      color: #666;
      font-size: 14px;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .card-link {
      color: #f1c40f;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s;
    }

    .card-link:hover {
      gap: 10px;
    }

    /* CTA Section */
    .cta-section {
      background: #1a5276;
      padding: 50px 40px;
    }

    .cta-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cta-title {
      color: #f1c40f;
      font-size: 28px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
      font-style: italic;
    }

    .cta-text {
      color: #fff;
      margin-bottom: 24px;
    }

    .cta-form {
      display: grid;
      grid-template-columns: 1fr 1fr 2fr auto;
      gap: 16px;
    }

    .cta-form input,
    .cta-form textarea {
      padding: 14px 16px;
      border: none;
      font-size: 14px;
      font-family: inherit;
      outline: none;
    }

    .cta-form input::placeholder,
    .cta-form textarea::placeholder {
      color: #999;
    }

    .cta-form button {
      background: #f1c40f;
      color: #1a5276;
      border: none;
      padding: 14px 48px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .cta-form button:hover {
      background: #d4ac0d;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }

  
      .cta-form {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      

      .pump {
        padding: 40px 20px 60px;
      }

      .pump h1 {
        font-size: 32px;
      }

      .pump p {
        font-size: 16px;
      }

      .hero-search {
        flex-direction: column;
      }

      .hero-search button {
        padding: 14px;
      }

      .cards-section {
        padding: 40px 20px;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 40px 20px;
      }

      .cta-title {
        font-size: 22px;
      }

      .cta-form {
        grid-template-columns: 1fr;
      }

     
    }

    @media (max-width: 480px) {
      .top-bar-left {
        flex-direction: column;
        gap: 8px;
        align-items: center;
      }

      .pump h1 {
        font-size: 28px;
      }

      .cta-title {
        font-size: 18px;
      }

     
    }


.img-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.img-popup img {
  width: 800px;
  max-width: 100%;
  height: auto;
}


.img-popup span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}





.product-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.product-card {
  text-align: center;
  border: 1px solid #ddd;
  padding: 15px;
  background: #fff;
}

.product-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Specs */
.specs {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.specs strong {
  display: inline-block;
  width: 100px;
}

.specs p:first-child {
  border-bottom: 1px solid #000; /* change color/width as needed */
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.specs p {
  border-bottom: 1px solid #ccc;
  padding: 4px 0;
}


/* Button */
.product-card button {
  width: 100%;
  padding: 12px;
  background: #ffeb3b;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.product-card button:hover {
  background: #fdd835;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}



 .container0 {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px;
    }
/* Breadcrumb */
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 30px;
      font-size: 14px;
    }

    .breadcrumb a {
      color: #0066b3;
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .breadcrumb span {
      color: #666;
    }

    /* Main Layout */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr 1fr 320px;
      gap: 40px;
    }

    /* Product Gallery */
    .product-gallery {
      display: flex;
      gap: 15px;
    }

    .gallery-thumbnails {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .thumbnail {
      width: 70px;
      height: 70px;
      border: 2px solid #ddd;
      border-radius: 4px;
      cursor: pointer;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .thumbnail:hover,
    .thumbnail.active {
      border-color: #0066b3;
    }

    .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .main-image {
      flex: 1;
      background: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 350px;
    }

    .main-image img {
      max-width: 100%;
      max-height: 350px;
      object-fit: contain;
    }

    /* Download Section */
    .download-section {
      margin-top: 30px;
    }

    .download-section h3 {
      color: #0066b3;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .download-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }

    .download-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #0066b3;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      min-width: 140px;
      transition: background 0.3s;
    }

    .download-btn:hover {
      background: #004d8a;
    }

    .download-btn svg {
      width: 18px;
      height: 18px;
    }

    .certifications {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .cert-icon {
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cert-icon img {
      max-width: 100%;
      max-height: 100%;
    }

    /* Product Info */
    .product-info h1 {
      color: #0066b3;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .product-description {
      color: #555;
      margin-bottom: 25px;
      font-size: 15px;
    }

    .compatibility-title {
      font-weight: 600;
      margin-bottom: 12px;
      color: #333;
    }

    .compatibility-list {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 30px;
    }

    .compatibility-list li {
      margin-bottom: 6px;
      color: #555;
      font-size: 14px;
    }

    /* Accordion */
    .accordion {
      border: 1px solid #ddd;
      border-radius: 4px;
      overflow: hidden;
    }

    .accordion-item {
      border-bottom: 1px solid #ddd;
    }

    .accordion-item:last-child {
      border-bottom: none;
    }

    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      background: #fff;
      cursor: pointer;
      font-weight: 500;
      color: #333;
      transition: background 0.3s;
    }

    .accordion-header:hover {
      background: #f5f5f5;
    }

    .accordion-icon {
      width: 25px;
      height: 25px;
      border: 2px solid #ddd;
      border-radius: 50%;
      position: relative;
    }

    .accordion-content {
      display: none;
      padding: 20px;
      background: #fafafa;
    }

    .accordion-item.active .accordion-content {
      display: block;
    }

    /* Contact Sidebar */
    .contact-sidebar {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      height: fit-content;
      position: sticky;
      top: 20px;
    }

    .contact-sidebar h3 {
      color: #0066b3;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .contact-sidebar p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      font-family: inherit;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #0066b3;
    }

    .contact-form textarea {
      min-height: 80px;
      resize: vertical;
    }

    .submit-btn {
      background: #e6c200;
      color: #333;
      border: none;
      padding: 12px 20px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .submit-btn:hover {
      background: #d4b300;
    }

    .contact-info {
      margin-top: 20px;
      font-size: 14px;
      text-align: left;
    }

    .contact-info p {
      margin-bottom: 8px;
    }

    .contact-info a {
      color: #0066b3;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .hours-label {
      color: #333;
      font-weight: 500;
      margin-top: 15px;
      margin-bottom: 5px;
    }

    /* Related Products */
    .related-section {
      margin-top: 60px;
    }

    .related-section h2 {
      color: #0066b3;
      font-size: 24px;
      margin-bottom: 30px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .product-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      transition: box-shadow 0.3s;
    }

    .product-card:hover {
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .product-card h4 {
      font-size: 16px;
      color: #333;
      margin-bottom: 15px;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-card-image {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .product-card-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .product-specs {
      text-align: left;
      font-size: 13px;
      margin-bottom: 15px;
    }

    .spec-row {
      display: flex;
      justify-content: space-between;
      padding: 6px 0;
      border-bottom: 1px solid #eee;
    }

    .spec-label {
      font-weight: 600;
      color: #0066b3;
    }

    .spec-value {
      color: #333;
    }

    .view-btn {
      display: block;
      width: 100%;
      background: #0066b3;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      text-transform: uppercase;
      transition: background 0.3s;
    }

    .view-btn:hover {
      background: #004d8a;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .product-layout {
        grid-template-columns: 1fr 1fr;
      }

      .contact-sidebar {
        grid-column: 1 / -1;
        position: static;
      }

      .related-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 992px) {
      .product-layout {
        grid-template-columns: 1fr;
      }

      .product-gallery {
        justify-content: center;
      }

      .main-image {
        max-width: 400px;
      }

      .related-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 15px;
      }

      .product-gallery {
        flex-direction: column-reverse;
        align-items: center;
      }

      .gallery-thumbnails {
        flex-direction: row;
        justify-content: center;
      }

      .main-image {
        width: 100%;
        max-width: 100%;
      }

      .product-info h1 {
        font-size: 24px;
      }

      .download-buttons {
        flex-direction: column;
      }

      .download-btn {
        width: 100%;
      }

      .related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
    }

    @media (max-width: 480px) {
      .breadcrumb {
        font-size: 12px;
      }

      .product-info h1 {
        font-size: 20px;
      }

      .thumbnail {
        width: 55px;
        height: 55px;
      }

      .certifications {
        flex-wrap: wrap;
      }
    }



 /*blog section page*/

/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f7f9fc;
  color:#222;
}

/* =========================
   BLOG SECTION
========================= */

.qt-blog-section{
  padding:90px 20px;
}

.qt-blog-heading{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
}

.qt-blog-heading span{
  display:inline-block;
  color:#0d6efd;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.qt-blog-heading h2{
  font-size:48px;
  color:#111;
  margin-bottom:15px;
  font-weight:700;
}

.qt-blog-heading p{
  font-size:17px;
  color:#666;
  line-height:1.8;
}

/* =========================
   BLOG GRID
========================= */

.qt-blog-container{
  max-width:1250px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* =========================
   BLOG CARD
========================= */

.qt-blog-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
  display:flex;
  flex-direction:column;
}

.qt-blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.qt-blog-image{
  overflow:hidden;
}

.qt-blog-image img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}

.qt-blog-card:hover .qt-blog-image img{
  transform:scale(1.08);
}

/* =========================
   CONTENT
========================= */

.qt-blog-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.qt-blog-tag{
  display:inline-block;
  width:max-content;
  background:#0d6efd;
  color:#fff;
  padding:7px 16px;
  border-radius:30px;
  font-size:13px;
  margin-bottom:18px;
  font-weight:600;
}

.qt-blog-content h3{
  font-size:22px;
  line-height:1.5;
  margin-bottom:16px;
  color:#111;
  font-weight:700;
}

.qt-blog-content p{
  font-size:15px;
  color:#666;
  margin-bottom:28px;
  line-height:1.8;
}

/* =========================
   BUTTON
========================= */

.qt-read-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:13px 28px;
  background:#111827;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  transition:0.3s ease;
  margin-top:auto;
}

.qt-read-btn:hover{
  background:#0d6efd;
  transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .qt-blog-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){

  .qt-blog-section{
    padding:70px 15px;
  }

  .qt-blog-heading h2{
    font-size:36px;
  }

  .qt-blog-heading p{
    font-size:15px;
  }

  .qt-blog-container{
    grid-template-columns:1fr;
    gap:25px;
  }

  .qt-blog-content{
    padding:24px;
  }

  .qt-blog-content h3{
    font-size:20px;
  }
}

@media (max-width:480px){

  .qt-blog-heading h2{
    font-size:30px;
  }

  .qt-blog-image img{
    height:220px;
  }

  .qt-read-btn{
    width:100%;
  }
}

/* blog single page*/


/* BLOG SINGLE (NO CLASH CSS) */

/* =========================
   HERO SECTION
========================= */

.hydraulic-hero-section{
    position: relative;
    width: 100%;
    min-height: 500px;

    /* DOWNLOADED IMAGE */
    background-image: url("imges/hydraulic-banner.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;
    overflow: hidden;
}

/* Overlay */
.hydraulic-hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

/* Content */
.hydraulic-hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hydraulic-hero-content h1{
    color: #fff;
    font-size: 46px;
    line-height: 1.4;
    font-weight: 700;
}

/* Responsive */
@media(max-width:768px){

    .hydraulic-hero-section{
        min-height: 350px;
        padding: 60px 15px;
    }

    .hydraulic-hero-content h1{
        font-size: 28px;
    }
}

/* =========================
   BLOG CONTAINER
========================= */
.blog-container{
  width:90%;
  max-width:1300px;
  margin:auto;
  padding:100px 0;
}

/* =========================
   BLOG GRID
========================= */
.blog-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

/* =========================
   BLOG CONTENT
========================= */
.blog-content{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.blog-image{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:35px;
}

.blog-image img{
  width:100%;
  display:block;
}

/* =========================
   BLOG TEXT
========================= */
.blog-content h2{
  font-size:34px;
  margin-bottom:20px;
  color:#0f172a;
}

.blog-content h3{
  margin-top:35px;
  margin-bottom:15px;
  font-size:26px;
  color:#111827;
}

.blog-content p{
  margin-bottom:18px;
  color:#555;
  font-size:16px;
}

.blog-content ul{
  margin-top:15px;
  margin-left:20px;
}

.blog-content ul li{
  margin-bottom:12px;
  color:#444;
}

/* =========================
   INFO BOX
========================= */
.info-box{
  background:#0f172a;
  padding:30px;
  border-radius:18px;
  margin:35px 0;
  color:#fff;
}

.info-box h4{
  margin-bottom:12px;
  font-size:22px;
}

.info-box p{
  color:#dbeafe;
}

/* =========================
   SIDEBAR
========================= */
.sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.sidebar-box{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 22%);
}

.sidebar-box h3{
  margin-bottom:20px;
  font-size:24px;
  color:#111827;
}

.sidebar-box ul{
  list-style:none;
}

.sidebar-box ul li{
  margin-bottom:15px;
}

.sidebar-box ul li a{
  text-decoration:none;
  color:#444;
  transition:0.3s;
}

.sidebar-box ul li a:hover{
  color:#00b4ff;
  padding-left:5px;
}

/* =========================
   CONTACT BOX
========================= */
.contact-box{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  text-align:center;
}

.contact-box h3{
  color:#fff;
}

.contact-box p{
  margin:15px 0;
  color:#cbd5e1;
}

.contact-btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 30px;
  background:#00b4ff;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}

.contact-btn:hover{
  transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-hero h1{
    font-size:40px;
  }

}

@media(max-width:600px){

  .blog-content{
    padding:25px;
  }

  .blog-hero{
    min-height:60vh;
  }

  .blog-hero h1{
    font-size:30px;
  }

  .blog-hero p{
    font-size:15px;
  }

  .blog-content h2{
    font-size:28px;
  }

  .blog-content h3{
    font-size:22px;
  }

}



/* client section*/

/* Section */
.client-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #000000;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.logo-track {
  display: flex;
  width: calc(100%);
  animation: scroll 20s linear infinite;
}

/* Logo */
.logo {
  flex: 0 0 20%;
  text-align: center;
  padding: 20px;
}

.logo img {
  width: 100%;
  /*height: 80px;*/
  object-fit: contain;
  /*filter: grayscale(100%);
  opacity: 0.7;*/
  transition: 0.3s;
}

.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .logo {
    flex: 0 0 25%;
  }
}

@media (max-width: 576px) {
  .logo {
    flex: 0 0 50%;
  }

  .logo img {
    width: 100px;
  }
}




/*floating icon*/
.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /*padding-bottom: 150px; /* Adjust to accommodate the floating icons */
  }
  
  /* Floating icons container styles */
  .floating-icons-container {
    position: fixed;
    bottom: 76px;
    right: 27px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
  }
  
  /* Individual icon styles */
  .floating-icon {
    background-color: #25D366; /* WhatsApp brand color */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline from links */
  }
  
  /* Icon hover effect */
  .floating-icon:hover {
    background-color: #128C7E; /* Change color on hover */
  }
  
  /* Text styles for icons */
  .icon-text {
    color: #333;
    font-size: 14px;
  }




/* about-us section page*/

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding:80px 0;
  background:#f8f9fc;
}

.about-section .container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.about-top{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:60px;
}

.section-tag{
  color:#d4a017;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:10px;
}

.about-top h2{
  font-size:42px;
  color:#111;
  margin-bottom:20px;
}

.about-top p{
  color:#555;
  line-height:1.8;
  margin-bottom:18px;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:20px;
  display:block;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.about-content p{
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

/* Features */
.about-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:30px;
}

.feature-box{
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.feature-box:hover{
  transform:translateY(-5px);
}

.feature-box h4{
  font-size:20px;
  margin-bottom:10px;
  color:#111;
}

.feature-box p{
  margin:0;
  font-size:15px;
}


/* =========================
   VISION & MISSION
========================= */

.vision-mission{
  /*padding:80px 0;*/
  background:#fff;
}

.vision-mission .container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.vm-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.vm-card{
  background:#f8f9fc;
  padding:40px;
  border-radius:20px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 18%);
}

.vm-icon{
  font-size:45px;
  margin-bottom:20px;
}

.vm-card h3{
  font-size:30px;
  margin-bottom:20px;
  color:#111;
}

.vm-card p{
  color:#555;
  line-height:1.8;
}

.vm-card ul{
  padding-left:18px;
}

.vm-card ul li{
  margin-bottom:12px;
  color:#555;
  line-height:1.7;
}


/* =========================
   CORE SECTION
========================= */
.core-section{
  padding: 90px 20px;
  background: #f7f9fc;
  font-family: Arial, sans-serif;
}

.core-section .container{
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.section-heading{
  text-align: center;
  margin-bottom: 60px;
}

.section-heading span{
  display: inline-block;
  color: #0a3290;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading h2{
  font-size: 42px;
  color: #111;
  margin-bottom: 15px;
}

.section-heading p{
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/* Values Grid */
.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.value-card{
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.value-card:hover{
  transform: translateY(-8px);
}

.value-card .icon{
  width: 55px;
  height: 55px;
  background: #0a3290;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.value-card h3{
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.value-card p{
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}



/* =========================
   RESPONSIVE
========================= */
@media(max-width: 992px){

  .values-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .choose-wrapper{
    grid-template-columns: 1fr;
  }

  .choose-left{
    text-align: center;
  }

}

@media(max-width: 768px){

  .section-heading h2,
  .choose-left h2{
    font-size: 32px;
  }

  .values-grid{
    grid-template-columns: 1fr;
  }

  .value-card,
  .choose-item{
    padding: 25px 20px;
  }

}

@media(max-width: 480px){

  .core-section{
    padding: 70px 15px;
  }

  .section-heading h2,
  .choose-left h2{
    font-size: 28px;
  }

  .choose-item{
    gap: 14px;
  }

  .choose-item span{
    min-width: 48px;
    height: 48px;
    font-size: 16px;
  }

}


/* =========================
   WHY CHOOSE SECTION
========================= */

.quad-choose-section{
  /*padding: 90px 20px;*/
  background: #f7f9fc;
}

.quad-choose-container{
  max-width: 1200px;
  margin: auto;
}

.quad-choose-heading{
  text-align: center;
  margin-bottom: 60px;
}

.quad-choose-heading span{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0a3290;
  margin-bottom: 12px;
}

.quad-choose-heading h2{
  font-size: 42px;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.2;
}

.quad-choose-heading p{
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

/* Grid */

.quad-choose-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.quad-choose-card{
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgb(0 0 0 / 15%);
  position: relative;
  overflow: hidden;
}

.quad-choose-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quad-icon{
  width: 60px;
  height: 60px;
  background: #0a3290;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  font-weight: bold;
}

.quad-choose-card h4{
  font-size: 22px;
  color: #111;
  margin-bottom: 15px;
}

.quad-choose-card p{
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

  .quad-choose-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .quad-choose-heading h2{
    font-size: 34px;
  }
}

@media (max-width: 768px){

  .quad-choose-section{
    padding: 70px 15px;
  }

  .quad-choose-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quad-choose-heading{
    margin-bottom: 40px;
  }

  .quad-choose-heading h2{
    font-size: 28px;
  }

  .quad-choose-heading p{
    font-size: 15px;
  }

  .quad-choose-card{
    padding: 28px 22px;
  }

  .quad-choose-card h4{
    font-size: 20px;
  }
}

/* =========================
   INDUSTRIES
========================= */

.industries{
  padding:80px 0;
  background:#fff;
}

.industries .container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.industry-item{
  background:#111827;
  color:#fff;
  padding:22px;
  border-radius:14px;
  text-align:center;
  font-weight:600;
  transition:0.3s ease;
}

.industry-item:hover{
  transform:translateY(-5px);
}


/* =========================
   PRODUCT RANGE
========================= */

.product-range{
  padding:80px 0;
  background:#f8f9fc;
}

.product-range .container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.product-card{
  background:#fff;
  padding:25px;
  border-radius:15px;
  text-align:center;
  font-weight:600;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.product-card:hover{
  background:#111827;
  color:#fff;
  transform:translateY(-5px);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .about-wrapper,
  .vm-grid,
  .choose-grid,
  .industry-grid,
  .product-grid{
    grid-template-columns:1fr 1fr;
  }

  .about-top h2,
  .section-title h2{
    font-size:34px;
  }
}

@media(max-width:768px){

  .about-section,
  .vision-mission,
  .why-choose,
  .industries,
  .product-range{
    padding:60px 0;
  }

  .about-wrapper,
  .vm-grid,
  .choose-grid,
  .industry-grid,
  .product-grid,
  .about-features{
    grid-template-columns:1fr;
  }

  .about-top h2,
  .section-title h2{
    font-size:28px;
  }

  .vm-card,
  .choose-card,
  .feature-box,
  .product-card{
    padding:25px;
  }
}


/* =========================
   WHY CHOOSE
========================= */

.why-choose{
  padding:70px 0;
  background:#f8f9fc;
}

.why-choose h2{
  text-align:center;
  font-size:34px;
  color:#0a2a8a;
  margin-bottom:50px;
  font-weight:700;
}

.choose-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.choose-box{
  background:#fff;
  padding:35px 25px;
  border-radius:14px;
  text-align:center;
  transition:0.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.choose-box:hover{
  transform:translateY(-8px);
}

.icon{
  font-size:40px;
  margin-bottom:20px;
}

.choose-box h3{
  font-size:22px;
  margin-bottom:15px;
  color:#0a2a8a;
}

.choose-box p{
  font-size:15px;
  line-height:1.8;
  color:#666;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
  background:#041d6b;
  padding:70px 0;
  color:#fff;
}

.cta-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.cta-left{
  flex:1;
}

.cta-left h2{
  font-size:42px;
  margin-bottom:20px;
  line-height:1.3;
}

.cta-left p{
  font-size:17px;
  color:#d6d6d6;
  margin-bottom:30px;
  line-height:1.7;
}

.cta-btn{
  display:inline-block;
  padding:16px 32px;
  background:#fff;
  color:#041d6b;
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
  transition:0.4s;
}

.cta-btn:hover{
  background:#dfe7ff;
}

.cta-right{
  flex:1;
  display:flex;
  gap:20px;
  justify-content:center;
}

.counter-box{
  border:1px solid rgba(255,255,255,0.2);
  padding:35px 25px;
  border-radius:14px;
  text-align:center;
  min-width:180px;
}

.counter-box h3{
  font-size:42px;
  margin-bottom:10px;
}

.counter-box p{
  color:#ddd;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:#03144d;
  color:#fff;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1.5fr 1.5fr;
  gap:40px;
  padding-bottom:50px;
}

.footer h2{
  font-size:36px;
  margin-bottom:20px;
}

.footer h3{
  font-size:18px;
  margin-bottom:25px;
}

.footer p{
  color:#c9c9c9;
  line-height:1.8;
}

.footer ul{
  list-style:none;
}

.footer ul li{
  margin-bottom:15px;
}

.footer ul li a{
  color:#d8d8d8;
  text-decoration:none;
  transition:0.3s;
}

.footer ul li a:hover{
  color:#fff;
}

.social-icons{
  margin-top:25px;
  display:flex;
  gap:15px;
}

.social-icons a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#fff;
  color:#03144d;
}

.contact-info li{
  color:#d6d6d6;
  line-height:1.8;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:25px 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer-policy{
  display:flex;
  gap:20px;
}

.footer-policy a{
  color:#d6d6d6;
  text-decoration:none;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .choose-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-flex{
    flex-direction:column;
    text-align:center;
  }

  .cta-right{
    flex-wrap:wrap;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .why-choose h2{
    font-size:28px;
  }

  .choose-grid{
    grid-template-columns:1fr;
  }

  .cta-left h2{
    font-size:32px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-policy{
    justify-content:center;
    flex-wrap:wrap;
  }

  .counter-box{
    width:100%;
  }
}


/*home blog section*/

  .news-section{
    max-width:1400px;
    margin:auto;
}

.news-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.news-title{
    font-size:48px;
    color:#0057a8;
    font-weight:700;
}

.news-arrows{
    display:flex;
    gap:12px;
}

.news-arrows button{
    width:55px;
    height:55px;
    border:none;
    background:#e7e7e7;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    transition:0.3s;
}

.news-arrows button:hover{
    background:#0057a8;
    color:#fff;
}

.news-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.news-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    transition:0.3s;
    box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-img{
    width:100%;
    height:220px;
    overflow:hidden;
}

.news-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.news-card:hover img{
    transform:scale(1.08);
}

.news-content{
    padding:25px;
}

.news-content h3{
    font-size:20px;
    line-height:1.3;
    margin-bottom:20px;
    color:#111;
}

.news-content p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.news-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.news-date{
    color:#0057a8;
    font-weight:700;
    font-size:15px;
}

.read-btn{
    background:#03144d;
    color:#ffffff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
}

.read-btn:hover{
    background:#0057a8;
    color:#fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

.news-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.news-title{
    font-size:38px;
}

.news-content h3{
    font-size:26px;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.news-top{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.news-wrapper{
    grid-template-columns:1fr;
}

.news-title{
    font-size:34px;
}

.news-content{
    padding:20px;
}

.news-content h3{
    font-size:24px;
}

.news-content p{
    font-size:16px;
}

.news-img{
    height:200px;
}

.read-btn{
    width:100%;
    justify-content:center;
}

.news-bottom{
    flex-direction:column;
    align-items:flex-start;
}

}

