@import 'variables.css';
@import 'utilities.css';


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f8f9fa;
    position: relative;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  
  .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    margin-top: 2rem;
    color: #0056b3;
  }
/* Main Container */
.container {
    display: flex;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    gap: 80px;
    height: 560px;
}

/* Left Side - Image */
.image-container {
    flex: 1;
    display: flex;
    justify-content: end;
}

.image-container img {
    width: 100%;
    max-width: 550px;
    margin-left: -150px;
   
}

/* Right Side - Content */
.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section Title */
.section-title {
    font-size: 26px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Feature Box */
.feature-box {
    position: relative;
    border: 2px solid #ddd;
    padding: 12px;
    border-radius: 12px;
    text-align: left;
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e6f7ff, #d0eaff, #a8d0ff);
   
}

/* Border Glow Effect */
.feature-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;

    background: linear-gradient(90deg, #66b3ff, #a5c4fb, #99ccff);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

/* Glow Animation */
.feature-box:hover::before {
    opacity: 1;
    animation: borderMove 3s linear infinite;
}

/* Moving Border Animation */
@keyframes borderMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Gradient Text Effect */
.feature-box h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #007bff, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: color 0.3s ease;
}

/* Icon Styling */
.feature-box h3 i {
    color: #007bff;
    font-size: 24px;
}

/* Text Color Change on Hover */
.feature-box:hover h3 {
    background: linear-gradient(to right, #0033cc, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-container img {
        max-width: 500px;
        justify-content: end;
    }
}


@media (max-width: 480px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-container img {
        max-width: 500px;
    }
    .image-container {
        /* margin-left: 135px; */
        width: 70%;
    }
    .job-container {
        margin-top: 417px;
    }
}


/* Job Container */
.job-container {
    max-width: 600px;
    /* margin: 40px auto; */
    margin: 0 auto;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 26px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Job Box Hover Effect */
.job-box:hover, .apply-box:hover {
    background-color: #e6f7ff; /* Light Blue Background */
    border-color: #007bff; /* Blue Border */
    box-shadow: 0px 5px 15px rgba(0, 123, 255, 0.2);
}

/* Text & Icon Color Change on Hover */
.job-box:hover h3, .apply-box:hover h3 {
    color: #0056b3;
}

/* Email Link Hover Effect */
.apply-box a:hover {
    color: #0033cc;
    text-decoration: underline;
}

/* Job Box */
.job-box, .apply-box {
    position: relative;
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    margin-bottom: 15px;
    overflow: hidden;
}






/* Apply Section Styling */
.apply-box a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.apply-box a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
  .job-container {
      max-width: 100%;
      padding: 15px;
      margin-top: 363px;
  }

  .job-box, .apply-box {
      padding: 15px;
      font-size: 14px;
  }

  .section-title {
      font-size: 22px;
  }
}

@media (max-width: 576px) {
  .job-box, .apply-box {
      padding: 12px;
      font-size: 13px;
  }

  .section-title {
      font-size: 20px;
  }
}


.footer {
    background-color: #2f4f9a; /* Blue Background */
    color: white; /* White Text */
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .container-client {
    display: flex;
    gap: 49px;
    /* padding: 150px 100px; */
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 118px;
  }
  .card-client {
    width: 15%;
    height: 150px;
    border-radius: 15px;
    background: linear-gradient(135deg, #6a8ef6, #436db6);
    border: none;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 20px;
    color: white;
    font-weight: bold;
    transition: transform 0.3sease, box-shadow 0.3sease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .card-client h3 {
    font-size: 29px;
    font-weight: inherit;
  }
  .card-client:hover {
    transform: translateY(-6px);
    box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.2);
    color: #9bed84;
  }
  
  span {
    font-size: 45px;
    font-weight: bold;
  }
  
  
  @media (max-width: 992px) {
    .card-client {
      padding: 15px;
      height: 125px;
    }
    .container-client {
      gap: 12px;
    }
    .card-client h3 {
      font-size: 20px;
    }
    span {
      font-size: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .container-client {
      gap: 20px;
    }
    .card-client {
      width: 45%; /* Two cards per row */
      height: 140px;
    }
    .card-client h3 {
      font-size: 22px;
    }
    span {
      font-size: 35px;
    }
  }
  
  
  @media (max-width: 576px) {
    .container-client {
        gap: 5px;
    }
    .card-client {
      width: 45%; /* Two cards per row */
      height: 100px;
    }
    .card-client h3 {
      font-size: 22px;
    }
    span {
      font-size: 35px;
    }
  }
  
  
  
  
  @media (max-width: 480px) {
    .container-client {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
    }
  
    .card-client {
      flex-basis: 30%; /* Consistent width */
      height: 80px;
      padding: 5px;
      text-align: center;
    }
  
    .card-client:nth-child(n+4) { 
      flex-basis: 30%; /* Keeping all same size in the second row */
    }
  
    .card-client h3 {
      font-size: 15px;
    }
  
    span {
      font-size: 26px;
    }
  }
  
  
  .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  .scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding: 10px 0;
    background: #fff;
  }
  
  .scroll-container {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite; /* Continuous scrolling */
  }
  
  .scroll-container img {
    height: 134px;
    max-width: 1188px;
    object-fit: contain;
    border-radius: 5px;
  }
  
  /* Keyframes for infinite scrolling */
  @keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Move images left */
    }
  }
  
  

   .navbar {
    display: flex;
    width: 100%;
    position: fixed;
    z-index: 2;
    padding-top: 0px;
    /* background-color: white; */
    /* margin-top: -13px; */
  }
  
  /* Logo Section */
  .logo-container {
    background-color: white;
    width: 15%;
    padding: 0px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 46px;
    width: 100%;
    margin-top: 10px;
  }
  
  
  a.logo {
    width: 100%;
  }
  
  @media (max-width: 992px) {
   
   
    .logo-container {
      padding: 0px;
      width: 20%;
    }
  

    .nav-links-container {
      background-color: #1a2a5c;
      width: 80%;
    }
   
  }
  .nav-links-container {
    background-color: #1a2a5c;
    width: 85%;
    /* padding: 42px 0px; */
    padding: 15px;
    margin-top: -3px;
  }
  .nav-links-container ul {
    display: flex;
    justify-content: space-between;
  }
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    /* gap: 122px; */
  }
  
  
  .nav-links li::before {
    content: none !important;
  }
  ul,
  li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    position: relative;
  }
  
  /* Dot before menu items */
  
  /* Hover Effect */
  .nav-links a:hover {
    color: #30d330;
  }
  
  /* Mobile Menu Button */
  .menu-btn {
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Hide in desktop view */
  }
  
  .mobile-menu {
    display: none;
    background-color: #1a2a5c;
    padding: 15px;
    position: absolute;
    top: 100px;
    width: 72%;
    left: 126px;
    z-index: 2;
    transition: left 0.3s ease-in-out;
  } 
  
  
  .mobile-menu.active {
    display: block;
    position: fixed;
    margin-top: -49px;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  
  .mobile-menu li {
    padding: 10px;
  }
  
  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }
  
  
  @media (max-width: 480px) {
  .logo-container {
    background-color: white;
    width: 26%;
  
  }
  
  .nav-links-container {
    background-color: #1a2a5c;
    width: 65%;
  }
  
  
    
    
  
  .menu-btn {
    display: block;
  
  }
  
    .nav-links {
      display: none; 
    }
    .nav-links-container .nav-links {
      display: none; 
    }
    .logo-container {
      padding: 0px;
      width: 20%;
    }
  
    .hero-text h1 {
      font-size: 15px;
     
  }
  .navbar {

    margin-top: -12px;
  }
  
    .mobile-menu {
      display: none;
    }
    
  }
  
  
  
  @media (max-width: 576px) {
    .logo-container {
      background-color: white;
      width: 35%;
    
    }
    
    .nav-links-container {
      background-color: #1a2a5c;
      width: 65%;
    }
    
    
    .logo img {
      height: 52px;
      
    }
    .menu-btn {
      display: block;
     
    }
    
    }
  
   
  
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide menu items on small screens */
    }
    .nav-links-container .nav-links {
      display: none; /* Hide menu items on small screens */
    }
    .logo-container {
      padding: 0px;
      width: 35%;
    }
  
    .menu-btn {
      display: block; /* Show hamburger menu */
      /* margin-left: 250px; */
    }
    
    .mobile-menu {
      display: none;
    }
    .nav-links-container {
      background-color: #1a2a5c;
      width: 65%;
    }
    .hero-image img {
      margin-top: 40px;
  }
  }
  
  @media (max-width: 2800px) {
    .nav-links {
      /* gap: 118px; */
      justify-content: space-between;
    }
  }
  
  @media (max-width: 1500px) {
    .navbar{
      border: none;
    }
  }
  