/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999; /* ensures navbar stays on top of everything */
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #1F3040ff; /* gunmetal */
  height: 70px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* optional shadow */
}


.logo img {
  height: 60px;
}

.nav-links a {
  color: #F5FFFA; /* Mint Cream */
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  
}

.nav-links-quote a {
    color: #F5FFFA; /* Mint Cream */
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #0B7D8Bff; /*navy
  */
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto; /* pushes nav to the right */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}


.quote-button {
  background-color: #0B7D8B;
  padding: 8px 18px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.quote-button:hover {
  background-color: #095e69;
  transform: scale(1.05);
}


.carousel {
  position: relative;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider {
  display: flex;
  flex-direction: column;
}

.slide {
  display: none;
  position: relative;
  text-align: center;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0c1113; /* Pacific Cyan */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: #f5f5f5;
  }
  
  .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    animation: slideFade 10s infinite;
  }
  
  .carousel-image {
    width: 50%;
    height: 200%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .carousel-text {
    width: 50%;
    padding-left: 40px;
    box-sizing: border-box;
  }
  
  .carousel-text h2 {
    font-size: 2rem;
    color: #0B7D8Bff;
    margin-bottom: 10px;
  }
  
  .carousel-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1F3040ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .learn-more-btn:hover {
    background-color: #0B7D8Bff;
  }
  
  @keyframes slideFade {
    0% { opacity: 0; transform: translateX(-30px); }
    10% { opacity: 1; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(30px); }
  }
  .carousel-track-container {
    position: relative;
    width: 95%;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(15, 77, 146, 0.7);
    color: white;
    border: none;
    padding: 12px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
  }
  
  .carousel-btn:hover {
    background-color: rgba(28, 169, 201, 0.9);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  /* Product Section */
.product-section {
    padding: 60px 40px;
    background: linear-gradient(180deg, rgb(178, 180, 180) 0%, #fffffff6 100%);
    text-align: center;
  }

  .product-section1 {
    padding: 60px 40px;
    background: linear-gradient(180deg, #fffffff6  0%, rgb(178, 180, 180) 100%);
    text-align: center;
  }
  
  .product-section h2 {
    color: #0B7D8Bff;
    margin-bottom: 40px;
    font-size: 32px;
  }
  .values-section h2 {
    color: #0B7D8Bff;
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
  }
  .product-section1 h2 {
    color: #0B7D8Bff;
    margin-bottom: 40px;
    font-size: 32px;
  }

.division-section h2 {
  color: #0B7D8Bff;
  margin-bottom: 40px;
  font-size: 32px;
  text-align: center;
}
  
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .product-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    width: 220px;
    height: 270px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
   
  }
  
  .product-card:hover {
    transform: scale(1.05);
  }
  
  .product-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    font-size: 16px;
    color: #0F4D92;
    margin-bottom: 10px;
  }
  
  .product-link {
    text-decoration: none;
    color: white;
    background-color: #1F3040ff;
    padding: 8px 14px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
  }
  
  .product-link:hover {
    background-color: #148cae;
  }
  
  /* Map Section */
  .map-section {
    padding: 60px 40px;
    background-color: #e9ecef;
    text-align: center;
  }
  
  .map-section h2 {
    font-size: 35px;
    color: #0B7D8Bff;
    margin-bottom: 10px;
  }
  
  .map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
  }
  /* Get a Quote Section */
.quote-section-1{
    background-image: url('IMAGES/Sora\ image\ 1.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    position: relative;
    color: white;
    text-align: center;
    background-attachment: fixed; 
  }
  .quote-section-2{
    background-image: url('IMAGES/Sora\ image\ 2.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    position: relative;
    color: white;
    text-align: center;
    background-attachment: fixed; 
  }
  .quote-section-3{
    background-image: url('IMAGES/Sora\ image\ 3.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    position: relative;
    color: white;
    text-align: center;
   
  }
  
  .quote-overlay {
    background: rgba(114, 114, 114, 0.6); /* dark overlay for text readability */
    padding: 60px 30px;
    border-radius: 12px;
    display: inline-block;
    max-width: 700px;
    margin: auto;
  }
  
  .quote-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .quote-section p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .quote-btn {
    text-decoration: none;
    background-color: #0B7D8Bff;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .quote-btn:hover {
    background-color: rgb(13, 144, 161);
  }
  
  /* Footer Section */
.site-footer {
    background-color: #1F3040;
    color: white;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-column {
    flex: 1 1 300px;
    margin: 20px;
  }
  
  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #0B7D8Bff;
    display: inline-block;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #0B7D8Bff;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    filter: invert(1); /* makes icons white if they're black PNGs */
  }
  /* Footer Bottom Bar */
.footer-bottom {
    background-color: #1F3040;
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
    color: #ccc;
    border-top: 1px solid #2c445a;
  }
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
    color: #0B7D8Bff; /* or any highlight color */
  }
  
  .map-section {
    padding: 40px 0;
    background-color: #f4f4f4;
  }
  
  .map-box {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .map-frame {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
  }
  
  .map-overlay {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background-color: rgba(31, 48, 64, 0.9);
    color: white;
    padding: 20px 25px;
    max-width: 300px;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .map-overlay h3 {
    margin-top: 0;
    color: #7CFC00;
  }
  
  .map-overlay p {
    line-height: 1.6;
  }
  .contact-section {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0B7D8B;
  }
  
  .contact-form {
    max-width: 600px;
    margin: auto;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  .contact-form button {
    padding: 12px 24px;
    background-color: #1F3040;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #0B7D8B;
  }
/* About Page Styles */
.about-hero {
  padding: 100px 40px 60px;
  background-color: #e9ecef;
  text-align: center;
}

.about-intro h1 {
  font-size: 40px;
  color: rgb(255, 255, 255);
  margin-bottom: 32px;
}

.about-hero p {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-section {
  padding: 60px 40px;
  background-color: #ffffff;
}

.about-section h2 {
  font-size: 30px;
  color: #0F4D92;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: justify;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}

.value-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-align: center;
}

.value-card:hover {
  transform: scale(1.05);
}

.value-card h3 {
  color: #0B7D8Bff;
  margin-bottom: 10px;
  font-size: 20px;
}

.value-card p {
  font-size: 16px;
  color: #333;
}

.search-bar {
  background-color: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
}

.search-bar input[type="text"] {
  width: 60%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.search-bar button {
  padding: 12px 20px;
  background-color: #1F3040ff;
  color: white;
  border: none;
  border-radius: 6px;
  margin-left: 10px;
  font-weight: bold;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #0B7D8Bff;
}
  /* Search Results Styles */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-category {
  color: #666;
  font-size: 0.9em;
  margin: 5px 0;
}

.product-code {
  color: #888;
  font-size: 0.85em;
  margin: 5px 0 10px;
}

.product-link {
  display: inline-block;
  background-color: #1a73e8;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
}

.product-link:hover {
  background-color: #0d5bba;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 1.1em;
}
/* Search Form Styles */
.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.search-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 1em;
}

.search-form button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-form button:hover {
  background-color: #0d5bba;
}

.search-form button svg {
  width: 18px;
  height: 18px;
}

/* Home Categories Section */
.home-categories {
  padding: 5rem 0;
  background-color: #f9fafc;
}

.home-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: #1a365d;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #1a73e8;
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #4a5568;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.category-icon {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
}

.category-icon svg {
  width: 60px;
  height: 60px;
  fill: white;
}

.category-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1a365d;
}

.category-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.category-link {
  color: #38529b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.category-card:hover .category-link {
  color: #0d47a1;
}

.category-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.category-card:hover .category-link::after {
  transform: translateX(3px);
}

/* Category-specific colors */
.category-card.fibre-optic .category-icon {
  background: linear-gradient(135deg, #0B7D8Bff 0%, #7a8391 100%);
}

.category-card.fire-alarm .category-icon {
  background: linear-gradient(135deg, #0B7D8BFF 0%, #7a8391 100%);
}

.category-card.security .category-icon {
  background: linear-gradient(135deg, #0B7D8Bff 0%, #7a8391 100%);
}

.category-card.network .category-icon {
  background: linear-gradient(135deg, #0B7D8Bff 0%, #7a8391 100%);
}

.category-card.industrial .category-icon {
  background: linear-gradient(135deg, #0B7D8Bff 0%, #7a8391 100%);
}

.category-card.power .category-icon {
  background: linear-gradient(135deg, #0B7D8Bff 0%, #7a8391 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.whatsapp-tooltip {
  position: absolute;
  left: 80px;
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  left: 70px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }
  
  .whatsapp-icon {
    width: 25px;
    height: 25px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* Compliance Section */
.compliance-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.compliance-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #1a73e8;
  margin: 1rem auto;
  border-radius: 2px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.compliance-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #1F3040ff;
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.compliance-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 50%;
  color: rgb(11, 103, 139);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.compliance-card:hover .compliance-icon {
  background: #0B7D8B;
  color: white;
  transform: scale(1.1);
}

.compliance-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a365d;
}

.compliance-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title h2{
    color: #0B7D8Bff;
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;

  }
  
  .compliance-card {
    padding: 2rem 1.5rem;
  }
}