:root {
    --primary-blue: #0066cc;
    --secondary-blue: #3498db;
    --dark-blue: #1a3246;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-color: #ffffff;
    --overlay-background: rgba(0, 0, 0, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    line-height: 1.6;
    scroll-behavior: smooth;
    color: var(--dark-blue);
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  header {
    background: linear-gradient(
      to right,
      #0056a6,
      #40a5dd
    ); /* Light blue-gray for a modern look */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 15px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white; /* Matches the primary blue tone */
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: white; /* Matches the hover state to primary blue */
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: white; /* Matches the primary blue tone */
    margin: 3px 0;
    transition: 0.4s;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links.mobile {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #eef2f8; /* Subtle blue-gray for a cohesive color palette */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      gap: 1rem;
      text-align: center;
    }
  
    .nav-links.mobile a {
      padding: 0.5rem 0;
      color: #333;
    }
  
    .nav-links.mobile a:hover {
      color: #0056a6;
    }
  }
  
  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 20px auto;
    overflow: hidden;
  }
  
  .hero-slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  
  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-background);
  }
  
  .hero-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-slide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-slide-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  
  .hero-slide-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.3s;
  }
  
  .hero-slide-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease 0.6s;
  }
  
  .hero-slide-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.6s;
  }
  
  .hero-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
  }
  
  .hero-slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .hero-slider-dot.active {
    background-color: var(--white);
    width: 20px;
    border-radius: 10px;
  }
  
  .hero-slide.active .hero-slide-text h1,
  .hero-slide.active .hero-slide-text p,
  .hero-slide.active .hero-slide-btn,
  .hero-slide.active .hero-slide-image {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero-slider {
      height: 500px;
    }
  
    .hero-slide-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-slide-text {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .hero-slide-text h1 {
      font-size: 2rem;
    }
  
    .hero-slide-text p {
      font-size: 1rem;
    }
  
    .hero-slide-image {
      justify-content: center;
      margin-top: 20px;
    }
  }
  
  .about-us {
    padding: 80px 20px;
    background-color: #ffffff;
  }
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
  }
  
  .header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a365d, #2b4c7e);
    margin: 15px auto;
    border-radius: 2px;
  }
  
  .about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: stretch;
  }
  
  /* Left Section */
  .about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .about-image {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: translateY(-5px);
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
  }
  
  /* Right Section */
  .about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .right-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .region-section {
    margin-bottom: 2rem;
  }
  .region-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
  }
  .highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    border-left: 4px solid #1a365d;
    padding-left: 20px;
  }
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateX(5px);
    background-color: #edf2f7;
  }
  
  .feature-icon {
    font-size: 1.5rem;
    min-width: 40px;
  }
  
  .feature-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
  }
  
  .cta-section {
    margin-top: auto;
  }
  
  .read-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0056a6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
  }
  
  .service-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
  }
  
  .highlight-box {
    background: #f8f9fa;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .highlight-box:hover {
    transform: translateY(-5px);
    background-color: #edf2f7;
  }
  
  .highlight-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
  }
  
  .highlight-box h3 {
    color: #2c3e50;
    margin: 15px 0 10px;
    font-size: 1.2rem;
  }
  
  .highlight-box p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
  }
  
  @media (max-width: 1024px) {
    .service-highlights {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
  
    .about-image {
      height: 300px;
    }
  
    .service-highlights {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  .products-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #2c3e50;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007cc2, #3498db);
    border-radius: 2px;
  }
  
  .section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
  }
  /* General Section Styles */
  .products-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .usp-title h2 {
    text-align: start;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
  }
  
  .section-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Products Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  /* Product Card */
  .product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
  }
  
  .product-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 140%;
    height: 108%;
    background: linear-gradient(
      45deg,
      transparent,
      rgba(59, 169, 243, 0.05),
      transparent
    );
    transform: rotate(-45deg);
    opacity: 0.5;
    transition: opacity 0.5s ease;
  }
  
  .product-card:hover::before {
    opacity: 1;
  }
  
  .product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .product-title {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
  }
  
  .product-description {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .product-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
    border: 1px solid black;
  }
  
  .product-tag:hover {
    background-color: #3498db;
    color: white;
  }
  
  /* Product Slider */
  .product-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .product-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .product-slider-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .product-slider-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Slider Buttons */
  .product-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .product-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .product-slider-btn-prev {
    left: 10px;
  }
  
  .product-slider-btn-next {
    right: 10px;
  }
  
  /* Slider Dots */
  .product-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .product-slider-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .product-slider-dot.active {
    background: #3498db;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
    .product-slider {
      height: 200px;
    }
  }
  
  .contact-section {
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 60px;
    margin-top: 10px;
  }
  
  .contact-form {
    flex: 1 1 500px;
    padding: 40px;
    background-color: white;
  }
  
  .contact-google-map {
    flex: 1 1 500px;
  }
  
  .contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
  }
  
  .contact-form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #2c3e50;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .contact-button {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .contact-button:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 450px;
  }
  
  @media (max-width: 768px) {
    .contact-form-container {
      flex-direction: column;
    }
  
    .contact-form,
    .contact-google-map {
      flex-basis: 100%;
    }
  
    .contact-form {
      padding: 30px 20px;
    }
  }
  
  /* Footer  */
  footer {
    background-color: #f4f4f4;
    color: #333;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
  }
  
  .footer-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
  }
  
  .company-info p {
    color: #6c757d;
    line-height: 1.6;
  }
  
  .social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .social-icon {
    color: #6c757d;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  
  .social-icon:hover {
    color: #0066cc;
    transform: scale(1.2);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
  }
  
  .footer-links a {
    color: #6c757d;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  
  .footer-links a:hover {
    color: #0066cc;
    border-bottom: 1px solid #0066cc;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
  }
  
  .contact-item svg {
    stroke: #0066cc;
    flex-shrink: 0;
  }
  
  .copyright {
    margin-top: 2.5rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  /* Animation for fade-in effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* CTA Section Styles */
  .cta-section {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(to right, #0056a6, #007cc2);
    padding: 60px 20px;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .cta-button {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .cta-primary {
    background-color: #0056a6;
    color: #fff;
    border: none;
  }
  
  .cta-primary:hover {
    background: #d89a00;
  }
  
  .cta-secondary {
    background-color: #fff;
    color: black;
    border: 2px solid #fff;
  }
  
  .cta-secondary:hover {
    background: transparent;
    color: #fff;
  }
  
  /* Section Container */
  .why-choose-us {
    text-align: center;
    background-color: #f9f9f9;
    padding: 60px 20px;
  }
  
  .why-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    position: relative;
  }
  
  .why-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #007cc2;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  /* Cards Container */
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
  }
  
  /* Individual Cards */
  .card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .card:hover .card-icon img {
    transform: rotate(360deg);
  }
  
  .card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0056a6;
    font-weight: bold;
  }
  
  .card-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive Grid: 3 columns for large screens */
  @media (min-width: 1024px) {
    .cards-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* 2 columns for medium screens */
  @media (max-width: 1024px) {
    .cards-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* 1 column for small screens */
  @media (max-width: 768px) {
    .cards-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* General Styles */
  .industry-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #0056a6;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  /* Content Section */
  .industry-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .industry-text {
    flex: 1 1 45%;
    text-align: left;
  }
  
  .industry-text h3 {
    font-size: 1.8rem;
    color: #0056a6;
    margin-bottom: 20px;
  }
  
  .features-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
  
  .features-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
  }
  
  .features-list li::before {
    content: "✔";
    color: #f4b400;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
  }
  
  /* Image Section */
  .industry-image {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .industry-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .industry-content {
      flex-direction: column;
      text-align: center;
    }
  
    .industry-text {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .features-list {
      text-align: left;
      padding-left: 15px;
    }
  
    .industry-image {
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 2rem;
    }
  
    .section-description {
      font-size: 1rem;
    }
  
    .industry-text h3 {
      font-size: 1.5rem;
    }
  
    .read-more {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  }
  
  /* Work-bench */
  
  .work-section {
    background: linear-gradient(135deg, #0056a6, #74c6f4);
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .work-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Titles and text content */
  .work-section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .work-section-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.8;
  }
  
  /* Content layout */
  .work-section-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  /* Text content area */
  .work-content-text {
    flex: 1 1 45%;
    text-align: left;
  }
  
  .work-content-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .work-description {
    margin-bottom: 30px;
    line-height: 1.8;
  }
  
  /* Applications section */
  .applications-title {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .application-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .application-item::before {
    content: "✔";
    color: #ffffff;
  }
  
  /* CTA Button */
  .work-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #0056a6;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  
  .work-cta-button:hover {
    background-color: #0056a6;
    color: #fff;
    transform: scale(1.1);
  }
  
  /* Image and Slider Container */
  .work-content-image {
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .work-slider-container {
    width: 100%;
    position: relative;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Slider components */
  .work-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .work-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
  }
  
  .work-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Slider Navigation */
  .work-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .work-slider-nav:hover {
    background: rgba(255, 255, 255, 1);
  }
  
  .work-prev {
    left: 20px;
  }
  
  .work-next {
    right: 20px;
  }
  
  /* Slider Dots */
  .work-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }
  
  .work-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .work-dot.work-active {
    width: 16px;
    border-radius: 4px;
    background: white;
  }
  
  /* Arrow icons */
  .work-arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
  }
  
  .work-arrow-left {
    transform: rotate(135deg);
  }
  
  .work-arrow-right {
    transform: rotate(-45deg);
  }
  
  /* Background animation */
  .work-section::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: work-float 6s infinite ease-in-out;
    z-index: 0;
  }
  
  @keyframes work-float {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(20px, 20px);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .work-section-content {
      gap: 40px;
    }
  
    .work-content-text,
    .work-content-image {
      flex: 1 1 100%;
      max-width: 800px;
      margin: 0 auto;
    }
  
    .work-slider-container {
      height: 350px;
    }
  }
  
  @media (max-width: 768px) {
    .work-section-content {
      flex-direction: column;
    }
  
    .work-content-text {
      text-align: center;
    }
  
    .applications-grid {
      grid-template-columns: 1fr;
    }
  
    .application-item {
      justify-content: center;
    }
  
    .work-slider-container {
      height: 300px;
      border-radius: 10px;
    }
  
    .work-slider-nav {
      width: 35px;
      height: 35px;
    }
  
    .work-arrow {
      padding: 3px;
    }
  }
  
  @media (max-width: 480px) {
    .work-section-title {
      font-size: 2rem;
    }
  
    .work-section-description {
      font-size: 1rem;
    }
  
    .work-content-text h3 {
      font-size: 1.5rem;
    }
  
    .work-cta-button {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  
    .work-slider-container {
      height: 250px;
    }
  }
  