/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.custom-swiper{
    margin: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper {
  width: 100%;
  height: 550px; /* You can adjust this */
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  margin: auto;
  height: auto;
  max-height: 100%;
}

body {
  font-family: Arial, sans-serif;
  
  overflow-x: hidden;

}

h2{
        color: #0b1f66 !important;
}
header {
  position: relative;
  width: 100%;
  background-color: #f9fbfd;
  transition: all 0.4s ease;  /* Smooth transition */
  height: 80px;
  line-height: 80px;
  z-index: 999;
  box-shadow: none;           /* Default no shadow */
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);  /* Add shadow smoothly */
  background-color: #f9fbfd;
  transition: all 0.4s ease;
}



.container {
  max-width: 100%;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.logo img {
  height: 45px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 15px;
  color: #0b1f66;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #ff1212;
}

/* Hamburger Button (Mobile only) */
.hamburger {
  font-size: 26px;
  background: none;
  border: none;
  color: #0b1f66;
  display: none;
  cursor: pointer;
}

/* Default header style */
#navbar {
 
  width: 100%;
  background-color: #f9fbfd;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Sticky header style */
#navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.sidebar {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100vw;  /* full viewport width */
  height: 100vh; /* full viewport height */
  background-color: #ffffff !important; /* or whatever your color is */
  z-index: 9999;
  overflow-y: auto;
  padding: 30px;
  transform: translateX(-100%);
  
  transition: transform 0.3s ease;
}

.sidebar.active {
  transform: translateX(0);
}


.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-logo {
  height: 40px;
}

.closeBtn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.sidebar nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.sidebar nav a {
  text-decoration: none;
  font-size: 16px;
  margin: 12px 0;
  color: #0b1f66;
  transition: color 0.3s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  color: #a659b4;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* When Sidebar is Open */
.sidebar.open {
    transform: translateX(0%) !important;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive - Mobile View */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}



.simco-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}


.simco-section h1 {
  color: #0b1f66;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.simco-section h2 {
  color: #0b1f66;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
img {
  max-width: 100%;
  height: auto;
}


.product-image {
  max-width: 500px;
    flex: 1 1 50%;
  width: 100%;
  border-radius: 8px;
  margin: 0 auto 25px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.product-title {
  font-size: 18px;
  color: #b32527;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.description {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  font-size: 18px;
  color: #444;
  line-height: 2;
  text-align: justify;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .simco-section h1 {
    font-size: 24px;
  }

  .simco-section h2 {
    font-size: 18px;
  }

  .description {
    padding: 0 10px;
    font-size: 14px;
  }

  .product-image {
    max-width: 100%;
  }
}

      .features-section {
      padding: 20px 20px;
      text-align: center;
    }

    .features-section h2 {
      font-size: 28px;
      color: #0b1f66;
      margin-bottom: 10px;
    }

    .features-section p {
      color: #666;
      margin-bottom: 40px;
    }

    .feature-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-item {
      width: 45%;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
      gap: 20px;
    }

    .feature-item img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
    }

    .feature-text h3 {
      font-size: 18px;
      color: #0b1f66;
      margin-bottom: 10px;
    }

    .feature-text p {
      font-size: 14px;
      color: #444;
      line-height: 1.6;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .feature-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .feature-item img {
        width: 100%;
        max-width: 280px;
        height: auto;
      }

      .feature-text {
        padding: 10px;
      }
    }

    .product-feature {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
  }

  .honeycomb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 40px 20px;
  }

  .product-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
  }

  .product-card:nth-child(odd) {
    transform: translateY(30px); /* stagger odd cards for honeycomb effect */
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  .product-card h3 {
    font-size: 18px;
    margin: 12px 0 6px;
    color: #333;
  }

  .product-card p {
    font-size: 14px;
    color: #666;
    text-align: justify;
  }

  /* Responsive for smaller screens */
  @media (max-width: 900px) {
    .honeycomb-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .product-card:nth-child(odd) {
      transform: translateY(0);
    }
  }

  @media (max-width: 600px) {
    .honeycomb-grid {
      grid-template-columns: 1fr;
    }
  }
 
   .section-title {
      text-align: center;
      margin: 10px 20px 40px;
    }

    .section-title h2 {
      font-size: 32px;
      color: #0b1f66;
      margin: 0;
    }

    .section-title p {
      font-size: 16px;
      color: #666;
      margin-top: 8px;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto 80px;
      padding: 0 20px;
    }

    .grid-card {
      background: #f7f9fc;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0;
    }

    .grid-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .grid-card-content {
      padding: 16px;
    }

    .grid-card h4 {
      font-size: 16px;
      margin: 0 0 8px;
      color: #0b1f66;
    }

    .grid-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
    }

    .grid-card.full-color {
      background: linear-gradient(to top, #e64825, #f8663b);
      color: white;
      justify-content: flex-end;
      padding: 16px;
      height: 100%;
    }

    .grid-card.full-color img {
      display: none;
    }

    .grid-card.full-color h4 {
      color: white;
      font-weight: 600;
    }

    @media (max-width: 600px) {
      .section-title h2 {
        font-size: 24px;
      }

      .section-title p {
        font-size: 14px;
      }
    }
    
    .highlights-section {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .highlights-section h2 {
      text-align: center;
      font-size: 28px;
      color: #0b1f66;
      margin-bottom: 30px;
    }

    .highlights-section ul {
      list-style: disc;
      padding-left: 20px;
      line-height: 1.8;
    }

    .highlights-section ul li {
      font-size: 16px;
      margin-bottom: 10px;
    }

    @media (max-width: 600px) {
      .highlights-section h2 {
        font-size: 22px;
      }

      .highlights-section ul li {
        font-size: 14px;
      }
    }
     .business-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      gap: 30px;
      align-items: flex-start;
    }

    .business-text {
      flex: 1;
      min-width: 280px;
    }

    .business-text h4 {
      color: #9b4d9b;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .business-text h2 {
      font-size: 36px;
      color: #0b1f66;
      margin-bottom: 20px;
    }

    .business-text p {
      font-size: 16px;
      line-height: 1.8;
    }

    .image-grid {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      min-width: 280px;
    }

    .image-grid img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .business-section {
        flex-direction: column;
        align-items: center;
      }

      .business-text h2 {
        text-align: center;
      }

      .business-text p {
        text-align: justify;
      }
    }
    

    .expertise-section {
      background-color: #f3f5f9; /* Light background color */
      padding: 20px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .expertise-content {
      max-width: 900px;
      color: #333;
    }

    .expertise-content h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #0b1f66;
    }

    .expertise-content p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #444;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .expertise-content h2 {
        font-size: 1.6rem;
      }

      .expertise-content p {
        font-size: 1rem;
        padding: 0 10px;
      }
    }

.policy-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.policy-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.policy-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.policy-section h2::after {
  content: '';
  width: 100px;
  height: 4px;
  background-color: #ff0000;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

.policy-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  min-height: 200px;
}

.policy-card:hover {
  transform: translateY(-5px);
  background-color: #f0f4ff;
}

.policy-card h3 {
  font-size: 1.2rem;
  color: #353965;
  margin-bottom: 10px;
}

.policy-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

    
 .carousel-container {
  max-width: 100%;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  height: 250px; /* Base height */
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 14px;
  font-size: 16px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .carousel-container {
    height: 180px; /* Smaller height for mobile */
  }

  .caption {
    font-size: 14px;
    padding: 5px 10px;
    bottom: 10px;
    left: 15px;
  }
}
.map{
        color: #fe2929 !important;
}
.map-1{
   color: #353965 !important;
}


.info-slide-box {
  position: fixed;
  top:220px;
  left: -350px;
  width: 320px;
  background: linear-gradient(to bottom right, #e6f0ff, #ffffff);
  border-left: 6px solid #1a3c8b;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 9999;
  transition: left 0.5s ease;
  padding: 20px 18px;
  font-family: 'Segoe UI', sans-serif;
}

.info-slide-box.active {
  left: 20px;
}

.info-content h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #1a3c8b;
  font-weight: 700;
  border-bottom: 2px solid #c3d7f1;
  padding-bottom: 6px;
}

.info-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
}

.close-slide {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}

.close-slide:hover {
  color: #ff0000;
}
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background-color: #353965;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

#scrollToTopBtn.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

#scrollToTopBtn:hover {
  background-color: #4954a3; /* smooth bluish hover */
  transform: scale(1.15);
  transition: background-color 0.4s ease, transform 0.4s ease;
}

#scrollToTopBtn:active {
  transform: scale(1);
  transition: transform 0.1s ease;
}

@media (max-width: 767px) {
  .mb-view {
    text-align: center;
  }
}

.desktop-nav a.active,
.sidebar nav a.active {
  color: #ff1111; /* or your theme color */
  font-weight: bold;
  border-bottom: 2px solid #1a3c8b;
}




.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icons .icon {
  position: absolute;
  font-size: 24px;
  color: #d00000;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.icon1 { top: 10%; left: 20%; animation-delay: 0s; }
.icon2 { top: 20%; right: 10%; animation-delay: 1s; }
.icon3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.icon4 { bottom: 10%; right: 20%; animation-delay: 3s; }
.icon5 { top: 40%; left: 45%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  color: #fff;
}
.simco-section {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
              url('images/bg.jpg') center/cover no-repeat;
  padding: 10px 20px;
  text-align: center;
}
.ft-image{
    max-width: 200px;
   
    width: 50%;
}

.swiper-pagination {
  text-align: center;
  margin-top: 10px;
}

.swiper-pagination-bullet {
  background: red;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color:red !important; /* or any color you like */
}

