
    * {
      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: #E1E1E1;
      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;
    }*/

    /* Hero Section */
    .banner {
      background: /*linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.85)),*/
                  url('imges/banner.jpg') center/cover;
      padding: 100px 20px;
      text-align: center;
      color: #e1e1e1;
    }

    .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: #0A3290;
      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: #0A3290;
      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;
    }

    .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: #0A3290;
      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: white;
      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: linear-gradient(135deg, #1a3a6e 0%, #0d2340 100%);
      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: center;
    }

    .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;
}

/* WRAPPER (REPLACED container) */
.blog-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #f9f9f9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

/* IMAGE */
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* TITLE */
.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

/* TEXT */
.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

/* BUTTON */
.read-more {
  margin-top: 15px;
  padding: 10px 20px;
  background: #1f70ba;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  text-align: center;
}

/* BUTTON HOVER */
.read-more:hover {
  background: #155a96;
}

/* CARD HOVER */
.blog-card:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* blog single*/


/* BLOG SINGLE (NO CLASH CSS) */

.blog-single-body{
  background:#f5f7fb;
  font-family:'Segoe UI', sans-serif;
}

.blog-single-container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* HEADER */
.blog-single-header{
  background:#1f70ba;
  color:#fff;
  padding:40px 0;
  text-align:center;
}

.blog-single-header h1{
  font-size:30px;
}

/* LAYOUT */
.blog-single-section{
  padding:50px 0;
}

.blog-single-wrapper{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

/* MAIN CONTENT */
.blog-single-content{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.blog-single-img{
  width:100%;
  border-radius:10px;
  margin-bottom:20px;
}

.blog-single-title{
  font-size:26px;
  margin-bottom:10px;
}

.blog-single-meta{
  font-size:14px;
  color:#888;
  margin-bottom:20px;
}

.blog-single-content p{
  margin-bottom:15px;
}

/* SIDEBAR */
.blog-single-sidebar{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.blog-single-widget{
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.blog-single-widget h3{
  font-size:18px;
  margin-bottom:10px;
  border-bottom:2px solid #1f70ba;
  display:inline-block;
}

.blog-single-widget ul{
  list-style:none;
}

.blog-single-widget ul li{
  margin-bottom:10px;
}

.blog-single-widget ul li a{
  text-decoration:none;
  color:#333;
}

.blog-single-widget ul li a:hover{
  color:#1f70ba;
}

/* COMMENTS */
.blog-single-comments{
  margin-top:40px;
}

.blog-single-comment{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.blog-single-comment img{
  width:50px;
  height:50px;
  border-radius:50%;
}

.blog-single-comment-box{
  background:#f0f3f9;
  padding:15px;
  border-radius:8px;
  width:100%;
}

/* FORM */
.blog-single-form input,
.blog-single-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:6px;
}

.blog-single-form button{
  background:#1f70ba;
  color:#fff;
  border:none;
  padding:10px 20px;
  border-radius:6px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .blog-single-wrapper{
    grid-template-columns:1fr;
  }
}


.blog-sidebar-form input,
.blog-sidebar-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

.blog-sidebar-form input:focus,
.blog-sidebar-form textarea:focus{
  border-color:#1f70ba;
  outline:none;
}

.blog-sidebar-form button{
  width:100%;
  background:#1f70ba;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
  font-weight:500;
}

.blog-sidebar-form button:hover{
  background:#155a96;
}



/* client section*/

/* Section */
.client-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #0a3290;
}

/* 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: 120px;
  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;
  }


