
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #f3f3f3 !important;
      color: #3e3c1e;
      scroll-behavior: smooth;
    }

    /* custom color scheme: blue, white, gray */
    :root {
      --primary-blue: #0a4b7a;
      --primary-dark: #0a9005;
      --secondary-blue: #1e6f9f;
      --light-gray: #f1f5f9;
      --mid-gray: #cbd5e1;
      --dark-gray: #334155;
      --white: #ffffff;
    }
    a{
      text-decoration: none !important;
    }
    /* sticky navbar */
    .navbar {
      background-color: var(--white);
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      padding:0;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.7rem;
      letter-spacing: -0.5px;
      color: var(--primary-blue) !important;
    }
    .navbar-brand span {
      color: var(--secondary-blue);
      font-weight: 600;
    }
    .nav-link {
      font-weight: 600;
      color: var(--dark-gray) !important;
      margin: 0 0.2rem;
      transition: color 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--primary-blue) !important;
    }
    .navbar-brand img{
      width: 100px;
    }
    /* about drop */
    .about-hover-drop .dropdown-menu {
        display: none;
        transition: all 0.3s ease;
    }

    .about-hover-drop:hover .dropdown-menu {
        display: block;
    }
    /* Hero section */
   
    .hero {
      min-height: 85vh;
      display: flex;
      align-items: center;
      position: relative;
    }
    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 800;
      letter-spacing: -1px;
    }
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .hero {
        min-height: 70vh;
      }
    }
.about-p-div-p{
  text-align: justify;
}
    /* section titles */
    .section-title {
      font-weight: 700;
      font-size: 2.2rem;
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
      color: var(--primary-dark);
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary-blue);
      border-radius: 4px;
    }

    /* cards & hover */
    .service-card, .project-card {
      border: none !important;
      border-radius: 1.2rem;
      transition: transform 0.25s ease, box-shadow 0.25s;
      background: white;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    }
    .service-card:hover, .project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
      background-color: #0a2540;
      border: 0px;
      color: white;
      p{
        color: #cbd5e6 !important;
      }
      .service-icon i{
        color: #b9d0f0 !important;
      }
    }
    .service-icon {
      font-size: 2.8rem;
      color: var(--primary-blue);
      margin-bottom: 1rem;
    }
    .project-img {
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .project-card:hover .project-img {
      transform: scale(1.02);
    }
    .why-item {
      background: var(--white);
      padding: 1rem 1.2rem;
      border-radius: 1rem;
      box-shadow: 0 5px 12px rgba(0,0,0,0.02);
      border-left: 5px solid var(--primary-blue);
      transition: 0.2s;
    }
    .why-item i {
      color: var(--primary-blue);
      font-size: 1.8rem;
      margin-right: 1rem;
    }

    /* contact form */
    .contact-form {
      background: white;
      padding: 2rem;
      border-radius: 1.5rem;
      box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
    }
    footer {
      background: #0a2540;
      color: #cbd5e6;
    }
    footer a {
      text-decoration: none;
      color: #b9d0f0;
      transition: 0.2s;
    }
    footer a:hover {
      color: white;
      text-decoration: underline;
    }
    .map-iframe {
      border-radius: 1rem;
      width: 100%;
      height: 220px;
      border: 0;
    }
    .btn-outline-light-custom {
      border: 1px solid var(--primary-blue);
      color: var(--primary-blue);
      background: transparent;
    }
    .btn-outline-light-custom:hover {
      background: var(--primary-blue);
      color: white;
    }
    .form-control:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 0.2rem rgba(10,75,122,0.25);
    }

    /* category */
    .url-nav{
      background-color: var(--primary-blue);
      a{
        color: white;
      }
      .active{
        color: #fff;
      }
      .breadcrumb-item+.breadcrumb-item::before{
        color: white;
      }
    }
    .product-card{
      border: none;
      border-radius: 0.8rem;
      transition: transform 0.25s ease, box-shadow 0.25s;
      background: white;
      overflow: hidden;
      box-shadow: 0 0px 4px 2px rgba(1, 97, 31, 0.5);
      padding: 15px;
      margin: 10px;
      text-align: center;
      color: var(--dark-gray);
      img{
        height: 275px;
        width: 100%;
        object-fit: contain;
        transition: transform 0.4s;
      }
      
      &:hover{
        transform: translateY(-8px);
        box-shadow: 0 20px 30px -12px rgba(1, 200, 38, 0.15);
        img{
          /* transform: scale(1.02); */
        }
      }
      a{
        color: var(--dark-gray);
        font-weight: 600;
        transition: 0.2s;
        h5{
          margin-top: 1.5rem;
        }
        &:hover{
          color: var(--primary-blue);
        }
      }
    }
.cat-side-bar{
  background: var(--white);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.03);

  h5{
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 12px;

    &::before{
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      width: 4px;
      height: 18px;
      background: var(--primary-blue);
      border-radius: 2px;
    }
  }

  ul{
    list-style: none;
    padding: 0;
    margin: 0;

    li{
      margin-bottom: 6px;

      a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--dark-gray);
        padding: 10px 12px;
        border-radius: 0.6rem;
        transition: all 0.25s ease;
        font-size: 14px;
        position: relative;

        /* ICON (left side arrow) */
        &::before{
          content: "➜";
          margin-right: 8px;
          font-size: 12px;
          color: var(--primary-blue);
        }

        /* alternate background FIX */
        &:nth-child(even){
          background: var(--light-gray);
        }

        /* hover effect */
        &:hover{
          background: var(--primary-blue);
          color: #fff;
          transform: translateX(5px);
          box-shadow: 0 5px 12px rgba(0,0,0,0.08);

          &::before{
            color: #fff;
          }
        }
      }
    }
  }
}
.product-slider{
  padding-bottom: 40px;
  .slick-next, .slick-prev{
    background: var(--primary-blue);
    border-radius: 10%;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: white;
    i{
      color: white;
      font-size: 14px;
    }
  }
  .slick-next{
    right: -5px;
    top:-40px !important;
  }
  .slick-prev{
    left: 94%;
    top: -40px !important;
  }

}
.enquire-form{
  margin: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);

  h3{
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 12px;

    &::before{
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 4px;
      height: 22px;
      background: var(--primary-blue);
      border-radius: 2px;
    }
  }
}
.product-down-slider{
  img{
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.03);
  }
}

.team-section {
    padding: 60px 0;
    background: #f4f7f9;
    text-align: center;
}

.team-section h2 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.team-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #2980b9;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    margin: 10px 0 5px;
    color: #2c3e50;
}

.team-card p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 992px){
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .team-grid {
        grid-template-columns: 1fr;
    }
}
.about-main-div-p-l{
  text-align: justify;
  margin: 1.5rem 0;
}
.ceo-section {
    padding: 80px 0;
    background: #f4f7f9;
}

.ceo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Image */
.ceo-image img {
    width: 100%;
        height: 405px;
        object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Content */
.ceo-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

/* Heading */
.ceo-content h2 {
    color: #2980b9;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Quote */
.ceo-content .quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #2980b9;
    padding-left: 15px;
    margin-bottom: 20px;
}

/* Paragraph */
.ceo-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Name */
.ceo-content h4 {
    margin-top: 20px;
    color: #2c3e50;
}

/* Position */
.ceo-content span {
    color: #888;
    font-size: 14px;
}

/* Hover effect */
.ceo-content:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* Responsive */
@media(max-width: 992px){
    .ceo-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-content {
        padding: 20px;
    }
}
.project-section {
    margin: 60px 0;
}

/* Image */
.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Content */
.project-content {
    padding: 20px 30px;
}

.project-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.project-btn {
    display: inline-block;
    background: #2980b9;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.project-btn:hover {
    background: #1f6391;
}
button#goTopBtn {
    position: fixed;
    z-index: 11;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0A4B7A;
    border: 0px;
    color: #fff;
    font-size: 27px;
}
.btn-primary-custom {
      background-color: var(--primary-blue) !important;
      border: none;
      padding: 0.6rem 1.8rem;
      font-weight: 600;
      transition: all 0.3s;
      color: white !important;
    }
    .btn-primary-custom:hover {
      background-color: var(--primary-dark) !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(10,75,122,0.25);
      /* color: var(--dark-gray) !important; */
    }
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background: var(--primary-dark) !important;
  color: white !important;
  box-shadow: 0 6px 14px rgba(10,75,122,0.25);
}
.youtube-div{
  margin-bottom: 30px;
  iframe{
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
}
.client-img{
  background-color: #F1F5F9;
  margin: 10px;
  overflow: hidden;
  border-radius: 10px;
    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      }
}
.gallery-item{
  position: relative;
  width: 100%;
    height: 300px;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
  img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  &::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 45, 106, 0.2);
    transition: opacity 0.3s;
  }
  &:hover ::before{
    opacity: 0.8;
    background: rgba(2, 45, 106, 0.5);
  }
}
.service-p-div-c{
  text-align: justify;
  padding: 1rem 0px;
}
.main-slider{
  height: 600px;
  overflow: hidden;
  .slider-item{
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 10px;
    overflow: hidden;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      box-shadow: 0 10px 30px rgba(3, 137, 255, 0.1);
    }
    .slider-content{
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0%;
      left: 0%;
      color: white;
      padding: 20px;
      padding-top: 200px;
      padding-left: 50px;
      padding-right: 40%;
      /* background: linear-gradient(rgba(6,53,84,0.6), rgba(10,75,122,0.7)); */
    }
  }
}
.project-main-top-up-img-div{
  width: 100%;
  height: 550px;
  overflow: hidden;
  margin-bottom: 20px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    &:hover{
      transform: scale(1.05);
    }
  }
}