html, body {
  overflow-x: hidden;
}


img, iframe {
  max-width: 100%;
  height: auto;
}

/* Color Variables */
:root {
    --primary-color: #1b82b3;
    --secondary-color: #737f85;
    --dark-color: #192e38;
    --light-bg: #f9f9f9;
    --text-color: #333;
  }
/* Preloader Fullscreen */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #192e38; /* Dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader Animation */
.loader {
  border: 6px solid #737f85; /* Secondary color */
  border-top: 6px solid #1b82b3; /* Primary color */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Keyframes for rotation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade out animation */
.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
/* Loader + Logo Container */
.loader-container {
  position: relative;
  width: 120px; /* Increased from 60px */
  height: 120px;
}

/* Loader Animation */
.loader {
  border: 10px solid #737f85; /* Slightly thicker border */
  border-top: 10px solid #1b82b3;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: spin 1s linear infinite;
}

/* Logo in center */
.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px; /* Larger logo to match bigger spinner */
  height: auto;
  transform: translate(-50%, -50%);
}


  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
  }
  
  [data-aos] {
    transition-timing-function: ease-in-out;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
  }
  
  a {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-color);
  }
  
/* Navbar Links - Bright for Blue Background */
.navbar {
    background-color: var(--dark-color);
  }
  
  .navbar-brand,
  .navbar-nav .nav-link {
    color: #fff !important;
  }
  
  .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
  }
.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffdd57; /* bright yellow hover */
  }
  
  .navbar-nav .nav-link.active {
    color: #ffdd57; /* active link same as hover */
    border-bottom: 2px solid #ffdd57;
  }
 
    /* Keep logo and contact details in one line */
    @media (max-width: 767px) {
      /* Main bar layout */
      .top-contact-bar {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 8px !important;
      }
    
      /* Logo section */
      .top-contact-bar > div:first-child {
        flex: 0 0 auto !important;
      }
      .top-contact-bar > div:first-child img {
        height: 70px !important;
        max-height: 70px !important;
      }
    
      /* Contact details stacked on the right */
      .top-contact-bar > div:last-child {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* LEFT aligned now */
        gap: 6px !important;
        text-align: left !important;
      }
    
      /* Row layout */
      .top-contact-bar .info-block {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important; /* Left aligned text */
        gap: 6px !important;
        margin: 0 !important;
        white-space: nowrap;
      }
    
      /* Icon fixed width for alignment */
      .top-contact-bar .info-block i {
        font-size: 16px !important;
        line-height: 1 !important;
        flex: 0 0 18px !important;
        text-align: center !important;
      }
    
      /* Smaller text */
      .top-contact-bar .info-block span {
        font-size: 12px !important;
        line-height: 1.2 !important;
      }
    }
    
  
 
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
  }


  /* Section background */
.about-section {
  background: linear-gradient(to right, #f8f9fa, #eef2f3);
}

/* Image wrapper with border glow */
.about-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* Badge style */
.since-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #031364;
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Button animation */
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
}
/* Group of Companies - Uniform Logo Sizes */
.company-box img {
    height: 120px; /* fixed height */
    width: 100%; /* takes full box width */
    object-fit: contain; /* keeps aspect ratio */
    display: block;
    margin: 0 auto; /* centers image */
  }
  /* ================================
   Group Companies
   ================================ */
.company-logos {
    padding: 60px 0;
  }
  
  .logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .logo-box {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .logo-box:hover {
    transform: translateY(-5px);
  }
  
  .logo-box img {
    max-width: 150px;
    margin-bottom: 10px;
  }
  
  /* ================================
   Stats Section
   ================================ */
/* Stats Section */
/* Funfacts Section */
.funfacts-section {
    background-color: #c9e9f6; /* Soft sky blue */
    overflow: hidden;
    padding-bottom: 20px;
    overflow: visible;
  }
  
  .funfacts-title {
    font-weight: 700;
    color: #192e38; /* Dark heading */
  }
  
  .funfacts-subtitle {
    font-size: 1.1rem;
    color: #555;
  }
  
  .stat-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  
  .stat-box h3 {
    color: #1b82b3;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 5px;
  }
  
  .stat-box p {
    margin: 0;
    color: #737f85;
    font-weight: 500;
  }
  
 /* Funfacts Section Fix */
.funfacts-section {
  position: relative;
  overflow: hidden; /* Prevent horizontal scroll */
}

/* Cutout Image Styling */
.cutout-img-wrapper {
  position: absolute;
  right: -45px; /* still sticks out visually */
  bottom: -300px;
}

.cutout-img {
  max-width: 400px;
  height: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 12px 12px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .cutout-img-wrapper {
    right: 0;
    bottom: -150px;
  }
  .cutout-img {
    max-width: 250px;
  }
}

  
  
  /* Expertise Section Styling */
.expertise-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(255, 255, 255);
  }
  
  /* =========================
   Footer Styles
   ========================= */
footer {
    background-color: #0c034b; /* Dark background */
    color: #ffffff; /* White text */
    font-size: 14px;
    line-height: 1.6;
  }
  
  footer a {
    color: #1b82b3; /* Primary color links */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #ffffff; /* Hover white */
  }
  
  footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #1b82b3;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  footer ul {
    padding: 0;
    margin: 0;
  }
  
  footer ul li {
    margin-bottom: 8px;
  }
  
  footer p {
    margin-bottom: 8px;
  }
  
  footer .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
  }
  
  footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  footer .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: none;
  }
  
  footer .btn-light {
    background-color: #1b82b3;
    color: #ffffff;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  footer .btn-light:hover {
    background-color: #145f85;
  }
  
  /* Divider */
  footer hr {
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Small text */
  footer .small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive */
  @media (max-width: 767px) {
    footer {
      text-align: center;
    }
  
    footer h5 {
      border-bottom: none;
    }
  }
  
  /* Force white text in footer forms */
footer .form-control {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  color: #ffffff !important;
}

/* White placeholder */
footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* On focus */
footer .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  outline: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

  /* group of companies pages  */

  /* Logo Box Styling */
/* Bigger Logo Box */
.logo-box {
  background-color: #ffffff;
  padding: 50px;                  /* Increased from 20px */
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Bigger Logo Image */
.company-logo-side {
  border-radius: 12px;
  max-width: 550px;               /* Increase from default */
  height: auto;
}

/* Section Background */
.company-brief-section {
  background: linear-gradient(135deg, #f8fafc, #eef3f6); /* Soft gradient */
  border-radius: 15px;
  padding: 60px 0; /* More breathing room */
}

/* Bigger Logo Box */
.logo-box {
  background-color: #ffffff;
  padding: 50px; /* was 40px */
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Bigger Logo */
.company-logo-side {
  border-radius: 12px;
  max-width: 320px; /* was ~280px */
  height: auto;
}


/* Heading Style */
.company-brief-section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #1b3b4d;
}

/* Lead Paragraph Style */
.company-brief-section .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5a63;
}

/* Strong Text */
.company-brief-section strong {
  color: #1b82b3;
}

/* Contact Info */
.company-brief-section p {
  margin-bottom: 10px;
}

/* Animation Delay */
[data-aos] {
  transition-delay: 0.1s;
}
.company-brief-section .logo-side {
  background: linear-gradient(135deg, #1b82b3, #146287);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}
.company-brief-section .logo-side .logo-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
}
/* Section Background */
.company-highlights {
  background: linear-gradient(135deg, #f8fafc, #eef3f6);
  border-radius: 15px;
}

/* Highlight Card */
.highlight-card {
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icon Circle */
.highlight-icon {
  background: linear-gradient(135deg, #1b82b3, #146287);
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(27,130,179,0.4);
}

/* Title */
.highlight-card h5 {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #1b3b4d;
}

/* Paragraph */
.highlight-card p {
  color: #4b5a63;
  font-size: 0.95rem;
}

/* Background with overlay */
.bottom-cta {
  position: relative;
  background: url('images/backgrounds/cta-bg.jpg') center/cover no-repeat;
}

.bottom-cta .cta-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 0;
}

/* CTA button style */
.btn-cta {
  background-color: #ff6600;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(255, 102, 0, 0.4);
}

.btn-cta:hover {
  background-color: #e65c00;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(255, 102, 0, 0.6);
}



/* our company */
.mission-box, .vision-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-box:hover, .vision-box:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}
.icon-wrapper {
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
}
.vision-box .icon-wrapper {
  background: rgba(255, 193, 7, 0.15);
}



/* board */
/* Background & section styling - Bright theme */
.board-section {
  position: relative;
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff); /* Light blue gradient */
  color: #003366; /* Default text in dark blue */
  overflow: hidden;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004c99; /* Deep blue */
  position: relative;
  z-index: 1;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #4da6ff, #0066cc);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Director image styling - smaller size */
.director-img {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  max-width: 280px; /* Smaller width */
  margin: auto;
}
.director-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.director-img:hover img {
  transform: scale(1.05);
}

/* Glassmorphism info box - light theme */
.glass-box {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(0,102,204,0.2);
  position: relative;
  z-index: 1;
}
.glass-box h3 {
  font-weight: 700;
  color: #0066cc; /* Blue shade for name */
}
.glass-box .position {
  display: block;
  color: #3399ff; /* Lighter blue */
  font-weight: 500;
  margin-bottom: 10px;
}
.glass-box p {
  color: #003366; /* Dark blue text */
  line-height: 1.6;
}

/* Hover lift effect */
.director-card {
  transition: transform 0.3s ease;
}
.director-card:hover {
  transform: translateY(-5px);
}


/* --- Careers Page Styles --- */

/* Section Titles */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004085;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004085, #00aaff);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Section subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Why Work Theme Container */
.why-work-theme {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 4rem 0;
  border-radius: 20px;
  margin-bottom: 4rem;
  box-shadow: 0 8px 24px rgba(0, 64, 133, 0.12);
}

/* Benefit Cards Container */
.benefit-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Benefit Box */
.benefit-box {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 64, 133, 0.15);
  text-align: center;
  flex: 1 1 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 64, 133, 0.3);
}

.benefit-box h3 {
  color: #004085;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.benefit-box p {
  color: #333;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Job Openings Section */
.job-openings-section {
  padding: 3rem 0 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Job Listings Container */
.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 2rem;
}

/* Individual Job Card */
.job-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 64, 133, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 64, 133, 0.25);
}

/* Job Card Title */
.job-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.4rem;
}

/* Location */
.location {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Job Description */
.job-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

/* Apply Button */
.apply-btn {
  background: linear-gradient(90deg, #004085, #00aaff);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 6px 12px rgba(0, 106, 255, 0.4);
}

.apply-btn:hover {
  background: linear-gradient(90deg, #003366, #007bff);
  box-shadow: 0 8px 18px rgba(0, 106, 255, 0.6);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .benefit-cards {
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .benefit-cards {
    flex-direction: column;
    align-items: center;
  }

  .job-listings {
    grid-template-columns: 1fr;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }
}


/* contact */

    /* Reset some form styles for consistency */
    input, textarea {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 1rem;
    }

    body {
      background: #f8fafc;
      color: #1a202c;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .contact-section {
      max-width: 1100px;
      margin: 4rem auto;
      padding: 2rem;
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    }

    .contact-section h2 {
      font-weight: 800;
      font-size: 3rem;
      color: #004085;
      margin-bottom: 1.25rem;
      text-align: center;
      position: relative;
    }

    .contact-section h2::after {
      content: '';
      display: block;
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #004085, #00aaff);
      margin: 0.5rem auto 2.5rem;
      border-radius: 3px;
    }

    .row-contact {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
    }

    /* Contact Info */
    .contact-info {
      flex: 1 1 350px;
      background: #e9f1ff;
      border-radius: 16px;
      padding: 2rem 2.5rem;
      box-shadow: 0 8px 24px rgba(0, 64, 133, 0.1);
      transition: box-shadow 0.3s ease;
      min-width: 320px;
    }

    .contact-info:hover {
      box-shadow: 0 16px 48px rgba(0, 64, 133, 0.15);
    }

    .contact-info h4 {
      font-weight: 700;
      font-size: 1.7rem;
      color: #002752;
      margin-bottom: 1.75rem;
      border-bottom: 2px solid #00aaff;
      padding-bottom: 0.5rem;
    }

    .contact-info p {
      font-size: 1.1rem;
      color: #1a202c;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .contact-info p i {
      font-size: 1.3rem;
      color: #004085;
      min-width: 25px;
      text-align: center;
    }

    /* Contact Form */
    .contact-form {
      flex: 2 1 500px;
      min-width: 320px;
    }

    .form-label {
      font-weight: 600;
      color: #003366;
    }

    .form-control {
      border-radius: 12px;
      border: 1.8px solid #004085;
      padding: 0.6rem 1rem;
      font-size: 1rem;
      color: #1a202c;
      box-shadow: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-control:focus {
      border-color: #00aaff;
      box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
      outline: none;
    }

    textarea.form-control {
      resize: vertical;
      min-height: 140px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .btn-submit {
      background: linear-gradient(90deg, #004085, #00aaff);
      border: none;
      color: #fff;
      font-weight: 700;
      padding: 0.8rem 2.5rem;
      border-radius: 30px;
      font-size: 1.2rem;
      transition: background 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      margin-top: 1.25rem;
      box-shadow: 0 6px 20px rgba(0, 64, 133, 0.2);
      display: inline-block;
    }

    .btn-submit:hover {
      background: linear-gradient(90deg, #003366, #0077cc);
      box-shadow: 0 10px 30px rgba(0, 64, 133, 0.35);
    }

    /* Responsive Map */
    .map-responsive {
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0, 64, 133, 0.15);
      margin-top: 3rem;
    }

    .map-responsive iframe {
      border: 0;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute;
      border-radius: 16px;
    }

    /* Validation messages */
    .was-validated .form-control:invalid {
      border-color: #dc3545;
      padding-right: 2.25rem;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='0 0 12 12'%3e%3cpath d='M11.5 1.5L1.5 11.5m0-10l10 10'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.1875rem) center;
      background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

    .was-validated .form-control:valid {
      border-color: #198754;
    }

    @media (max-width: 991px) {
      .row-contact {
        flex-direction: column;
      }
      .contact-info,
      .contact-form {
        min-width: 100%;
      }
      .contact-section {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
      }
    }

    /* apply modal code */
    /* Rounded form inputs */
#applyNowModal .form-control {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ddd;
}

#applyNowModal .form-control:focus {
  border-color: #1b82b3;
  box-shadow: 0 0 5px rgba(27,130,179,0.5);
}

/* Thank You checkmark animation */
.checkmark-container {
  width: 80px;
  height: 80px;
  display: inline-block;
}

.checkmark {
  width: 80px;
  height: 80px;
  stroke-width: 4;
  stroke: #28a745;
  stroke-miterlimit: 10;
  fill: none;
  animation: scaleIn 0.3s ease-in-out forwards;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(.65, 0, .45, 1) forwards;
}

.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(.65, 0, .45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes scaleIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
