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

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

    /* 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: #cfffcf;
      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;
      mix-blend-mode: multiply;
    }
    .navbar-brand span {
      color: var(--secondary-blue);
      font-weight: 600;
    }
    .nav-link {
      font-weight: 600;
      color: var(--dark-gray) !important;
      margin: 0 1.2rem;
      font-size: 20px !important;
      transition: color 0.2s !important;

    }
    .main-header-div .nav-link {
      position: relative;
      &::before {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--primary-blue);
        border-radius: 4px;
        transition: width 0.3s ease;
        
      }
    }
    .main-header-div .nav-link:hover::before, .main-header-div .nav-link.active::before {
      width: 100%;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--primary-blue) !important;
    }
    .navbar-brand img{
      width: 80px;
    }
    /* 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: 420px;
      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;
          font-size: 18px;
          height: 35px;
        }
        &: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: #ffffff;
  margin: 10px;
  overflow: hidden;
  height: 130px;
  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);
    }
  }
}
iframe {
    border: 0;
    width: 100%;
    height: 100%;
}
.gallery-overlay {
    pointer-events: none;
}
.down-relative{
  position: relative;
  .down-relative-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    padding: 10px 0;
    z-index: 10;

    li{
      padding: 8px 20px;

      a{
        color: var(--dark-gray);
        font-weight: 600;
        transition: all 0.25s ease;

        &:hover{
          color: var(--primary-blue);
        }
      }
    }
  }

  &:hover .down-relative-menu{
    display: block;
  }
}
.profile-btn{
  background:green;
  color:white;
  padding:3px 10px;
  display:inline-block;
  border-radius:5px;
  &:hover{
    backgorund:orange;
    
  }
}
/* MAIN CONTAINER */
.about-us-img-main-div{
    position: relative;
    width: 100%;
    height: 650px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FLOATING ANIMATION */
@keyframes floating {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* ROTATE LIGHT */
@keyframes rotateGlow {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/* MAIN IMAGE */
.first-img{
    position: absolute;
    top: 20px;
    left: 0;
    width: 88%;
    height: 430px;
    z-index: 2;

    transform-style: preserve-3d;
    transform: rotateY(-12deg) rotateX(5deg);
    transition: 0.6s ease;

    animation: floating 5s ease-in-out infinite;
}

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

    border-radius: 30px;
    border: 8px solid rgba(255,255,255,0.3);

    backdrop-filter: blur(10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        0 0 40px rgba(0,123,255,0.25);

    transition: 0.6s ease;
    animation: imganimation 0.78s ease-in-out infinite;
    
}

/* SECOND IMAGE */
.second-img{
    position: absolute;
    bottom: 0;
    right: -80px;

    width: 60%;
    height: 320px;

    z-index: 3;

    transform-style: preserve-3d;
    transform: rotateY(12deg) rotateX(-5deg);

    animation: floating 4s ease-in-out infinite;
}

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

    border-radius: 25px;

    border: 10px solid rgba(255, 255, 255, 0.25);
    animation: imganimation 0.78s ease-in-out infinite;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.3),
        0 0 30px rgba(255,0,150,0.2);

    transition: 0.6s ease;
}

/* HOVER EFFECT */
.about-us-img-main-div:hover .first-img{
    transform: rotateY(-5deg) rotateX(0deg) translateY(-10px);
}

.about-us-img-main-div:hover .second-img{
    transform: rotateY(5deg) rotateX(0deg) translateY(-15px);
}

.about-us-img-main-div:hover img{
    transform: scale(1.03);
}

/* GLOW EFFECT */
.glow-effect{
    position: absolute;
    width: 350px;
    height: 350px;

    background: linear-gradient(
        45deg,
        rgba(0,123,255,0.25),
        rgba(255,0,150,0.2),
        rgba(0,255,255,0.2)
    );

    filter: blur(60px);

    border-radius: 50%;

    z-index: 1;

    animation: rotateGlow 10s linear infinite;
}
@keyframes imganimation {
  0%{
        transform: rotate(0deg);
        filter: drop-shadow(0 0 1px rgba(7, 60, 85, 0.181));
    }

    20%{
        /* transform: rotate(180deg); */
        filter: drop-shadow(0 0 3px 2px #00f7ff);
    }
    40%{
        /* transform: rotate(180deg); */
        filter: drop-shadow(0 0 3px 2px #00f7ff);
    }
    60%{
        /* transform: rotate(180deg); */
        filter: drop-shadow(0 0 3px 2px #00f7ff);
    }
    80%{
        /* transform: rotate(180deg); */
        filter: drop-shadow(0 0 3px  2px #00f7ff);
    }

    100%{
        /* transform: rotate(360deg); */
        filter: drop-shadow(0 0 1px rgb(7, 60, 85));
    }
}
/* FLOATING CIRCLE */
.floating-circle{
    position: absolute;
    top: 80px;
    right: 20px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.2);

    z-index: 0;

    animation: floating 6s ease-in-out infinite;
}

/* RESPONSIVE */
@media(max-width: 992px){

    .about-us-img-main-div{
        height: 500px;
    }

    .first-img{
        width: 90%;
        height: 300px;
    }

    .second-img{
        width: 70%;
        height: 220px;
        right: 0;
    }
}

@media(max-width: 576px){

    .about-us-img-main-div{
        height: 420px;
    }

    .first-img{
        height: 240px;
    }

    .second-img{
        height: 180px;
    }
}
/* =========================================
   CONTACT CARD
========================================= */

.wow-contact-card{
    position: relative;

    padding: 40px;

    border-radius: 30px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    overflow: hidden;

    z-index: 1;

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.15);

    transition: 0.5s ease;
}

/* HOVER */

.wow-contact-card:hover{
    transform: translateY(-8px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.2);
}

/* =========================================
   GLOW EFFECT
========================================= */

.contact-glow{
    position: absolute;

    top: -100px;
    right: -100px;

    width: 250px;
    height: 250px;

    background: linear-gradient(
        45deg,
        rgba(0, 255, 26, 0.3),
        rgba(0, 255, 47, 0.2)
    );

    border-radius: 50%;

    filter: blur(70px);

    z-index: -1;

    animation: glowMove 6s ease-in-out infinite;
}

@keyframes glowMove{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================================
   HEADER
========================================= */

.contact-header h2{
    font-size: 36px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 10px;
}

.contact-header p{
    color: #666;
    margin: 0;
}

/* =========================================
   CONTACT ITEM
========================================= */

.contact-item{
    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 20px;

    margin-bottom: 20px;

    border-radius: 20px;

    background: rgba(255,255,255,0.5);

    transition: 0.4s ease;

    position: relative;

    overflow: hidden;
}

/* HOVER */

.contact-item:hover{
    transform: translateX(8px);

    background: rgba(255,255,255,0.8);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

/* ICON BOX */

.icon-box{
    min-width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #0066ff,
        #00c6ff
    );

    color: #fff;

    font-size: 24px;

    box-shadow:
        0 10px 20px rgba(0,102,255,0.25);

    position: relative;

    overflow: hidden;
}

/* ICON SHINE */

.icon-box::before{
    content: "";

    position: absolute;

    width: 200%;
    height: 200%;

    background: rgba(255,255,255,0.2);

    transform: rotate(45deg);

    left: -120%;
    top: -120%;

    transition: 0.6s;
}

.contact-item:hover .icon-box::before{
    left: 100%;
    top: 100%;
}

/* TEXT */

.contact-text h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0b1c39;
}

.contact-text p{
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* =========================================
   MAP
========================================= */

.map-wrapper{
    overflow: hidden;

    border-radius: 25px;

    border: 5px solid rgba(255,255,255,0.4);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.12);
}

.map-wrapper iframe{
    width: 100%;
    height: 460px;

    border: 0;

    transition: 0.5s ease;
}

.map-wrapper:hover iframe{
    transform: scale(1.03);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 768px){

    .wow-contact-card{
        padding: 25px;
    }

    .contact-header h2{
        font-size: 28px;
    }

    .contact-item{
        flex-direction: column;
        gap: 15px;
    }
}
/* =========================================
   FACEBOOK QR BOX
========================================= */

.facebook-qr-box{
    margin-top: 30px;

    padding: 25px;

    border-radius: 25px;

    background: linear-gradient(
        135deg,
        rgba(24,119,242,0.08),
        rgba(0,247,255,0.05)
    );

    border: 1px solid rgba(24,119,242,0.15);

    position: relative;

    overflow: hidden;

    transition: 0.5s ease;
}

/* HOVER */

.facebook-qr-box:hover{
    transform: translateY(-6px);

    box-shadow:
        0 15px 40px rgba(24,119,242,0.18);
}

/* GLOW */

.facebook-qr-box::before{
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    background: rgba(24,119,242,0.15);

    border-radius: 50%;

    filter: blur(50px);
}

/* =========================================
   HEADER
========================================= */

.qr-header{
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.qr-icon{
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #1877f2,
        #00c6ff
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 24px;

    box-shadow:
        0 10px 20px rgba(24,119,242,0.25);
}

.qr-header h5{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0b1c39;
}

.qr-header p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* =========================================
   QR IMAGE
========================================= */

.qr-image{
    text-align: center;
    margin-bottom: 20px;
}

.qr-image img{
    width: 180px;
    height: 180px;

    object-fit: cover;

    padding: 10px;

    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.1);

    transition: 0.5s ease;
}

.facebook-qr-box:hover .qr-image img{
    transform: scale(1.05) rotate(2deg);
}

/* =========================================
   FACEBOOK BUTTON
========================================= */

.facebook-btn{
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #1877f2,
        #00c6ff
    );

    color: #fff;

    font-weight: 600;

    text-decoration: none;

    transition: 0.4s ease;

    box-shadow:
        0 10px 20px rgba(24,119,242,0.2);
}

.facebook-btn:hover{
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(24,119,242,0.3);
}
/* =========================================
   FORM CONTAINER
========================================= */

.wow-contact-form{
    position: relative;

    padding: 45px;

    border-radius: 35px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.12);

    transition: 0.5s ease;
}

/* HOVER */

.wow-contact-form:hover{
    transform: translateY(-8px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.18);
}

/* =========================================
   GLOW EFFECT
========================================= */

.form-glow{
    position: absolute;

    top: -120px;
    left: -120px;

    width: 260px;
    height: 260px;

    background: linear-gradient(
        45deg,
        rgba(0, 255, 76, 0.25),
        rgba(0, 255, 76, 0.2)
    );

    border-radius: 50%;

    filter: blur(80px);

    z-index: 0;

    animation: formGlow 6s ease-in-out infinite;
}

@keyframes formGlow{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================================
   HEADER
========================================= */

.form-header{
    position: relative;
    z-index: 2;

    margin-bottom: 35px;
}

.form-header h2{
    font-size: 38px;
    font-weight: 800;

    color: #0b1c39;

    margin-bottom: 10px;
}

.form-header p{
    color: #666;
    margin: 0;
}

/* =========================================
   FORM GROUP
========================================= */

.form-group-custom{
    margin-bottom: 24px;

    position: relative;

    z-index: 2;
}

/* LABEL */

.form-group-custom label{
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    font-weight: 600;

    color: #0b1c39;
}

/* =========================================
   INPUTS
========================================= */

.custom-input,
.custom-file{
    width: 100%;

    border-radius: 18px;

    border: 1px solid rgba(0,0,0,0.08);

    background: rgba(255,255,255,0.65);

    padding: 16px 18px;

    font-size: 15px;

    transition: 0.4s ease;

    box-shadow:
        inset 0 2px 5px rgba(255,255,255,0.4);
}

/* FOCUS */

.custom-input:focus,
.custom-file:focus{
    border-color: #00c6ff;

    box-shadow:
        0 0 0 4px rgba(0,198,255,0.15);

    background: #fff;
}

/* TEXTAREA */

textarea.custom-input{
    resize: none;
}

/* =========================================
   FILE INPUT
========================================= */

.custom-file{
    padding: 14px;
}

/* =========================================
   BUTTON
========================================= */

.submit-btn{
    width: 100%;

    border: none;

    padding: 16px 25px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #0066ff,
        #00c6ff
    );

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    position: relative;

    overflow: hidden;

    transition: 0.5s ease;

    box-shadow:
        0 12px 25px rgba(0,102,255,0.25);
}

/* BUTTON SHINE */

.submit-btn::before{
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.2);

    transform: skewX(-25deg);

    transition: 0.7s;
}

.submit-btn:hover::before{
    left: 120%;
}

/* HOVER */

.submit-btn:hover{
    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(0,102,255,0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 768px){

    .wow-contact-form{
        padding: 28px;
    }

    .form-header h2{
        font-size: 30px;
    }
}

/* =========================================
   CAREER SECTION
========================================= */

.careers-section{
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef7ff
        );
}

/* =========================================
   MAIN WRAPPER
========================================= */

.career-main-wrapper{
    position: relative;

    padding: 70px;

    border-radius: 40px;

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(15px);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.08);
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.career-bg-glow{
    position: absolute;

    top: -120px;
    right: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
        linear-gradient(
            45deg,
            rgba(13, 255, 0, 0.25),
            rgba(0,247,255,0.15)
        );

    filter: blur(90px);

    z-index: 0;

    animation: glowMove 6s ease-in-out infinite;
}

@keyframes glowMove{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(20px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* =========================================
   LEFT CONTENT
========================================= */

.career-left-content{
    position: relative;

    z-index: 2;
}

.career-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #00ff2a,
            #033177
        );

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;
}

.career-left-content h2{
    font-size: 52px;
    font-weight: 800;

    line-height: 1.2;

    color: #0b1c39;

    margin-bottom: 25px;
}

.career-left-content p{
    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;
}

/* =========================================
   FEATURES
========================================= */

.career-features-list{
    display: grid;

    gap: 18px;
}

.career-feature{
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 18px;

    border-radius: 18px;

    background: rgba(255,255,255,0.75);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.05);

    transition: 0.4s ease;

    font-weight: 600;

    color: #0b1c39;
}

.career-feature:hover{
    transform: translateX(8px);
}

.career-feature i{
    color: #00a2ff;
}

/* =========================================
   FORM WRAPPER
========================================= */

.career-form-wrapper{
    position: relative;

    padding: 45px;

    border-radius: 35px;

    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(14px);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.1);
}

/* GLOW */

.form-top-glow{
    position: absolute;

    top: -80px;
    left: -80px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        linear-gradient(
            45deg,
            rgba(0, 255, 17, 0.2),
            rgba(3, 215, 3, 0.12)
        );

    filter: blur(70px);
}

/* =========================================
   FORM HEADER
========================================= */

.career-form-header{
    position: relative;

    z-index: 2;

    margin-bottom: 30px;
}

.career-form-header h3{
    font-size: 34px;
    font-weight: 800;

    color: #0b1c39;

    margin-bottom: 10px;
}

.career-form-header p{
    color: #666;
}

/* =========================================
   FORM GROUP
========================================= */

.career-form-group{
    margin-bottom: 24px;

    position: relative;

    z-index: 2;
}

.career-form-group label{
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    font-weight: 600;

    color: #0b1c39;
}

/* =========================================
   INPUTS
========================================= */

.career-input,
.career-file{
    width: 100%;

    border-radius: 18px;

    border: 1px solid rgba(0,0,0,0.08);

    background: rgba(255,255,255,0.8);

    padding: 16px 18px;

    transition: 0.4s ease;
}

.career-input:focus,
.career-file:focus{
    border-color: #00c6ff;

    box-shadow:
        0 0 0 4px rgba(0,198,255,0.15);

    background: #fff;
}

/* =========================================
   BUTTON
========================================= */

.career-submit-btn{
    width: 100%;

    border: none;

    padding: 16px 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #00ff44,
            #020c69
        );

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: 0.5s ease;

    box-shadow:
        0 12px 25px rgba(0, 255, 38, 0.25);
}

.career-submit-btn:hover{
    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(0, 255, 85, 0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 992px){

    .career-main-wrapper{
        padding: 35px;
    }

    .career-left-content h2{
        font-size: 38px;
    }

    .career-form-wrapper{
        margin-top: 40px;
    }
}

@media(max-width: 768px){

    .career-left-content h2{
        font-size: 30px;
    }

    .career-form-wrapper{
        padding: 28px;
    }
}
.npc-li{
    color: #fff !important;
}