/* ==================================================
   RESET & TYPOGRAPHY
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  font-family: 'Raleway', sans-serif;
  color: #000000;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
/* ================= TOP BAR ================= */ 
/* ================= TOP BAR ================= */
.top-bar {
  background: #0B3C78;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 0;
}

/* Flex Layout */
.top-bar .container {
  display: flex;
  justify-content: flex-end;   /* 🔥 Moves content to right */
  align-items: center;
  gap: 20px;
}

/* Icons */
.top-bar i {
  color: #1fc0cc;
  line-height: 2;
  position: relative;
  top: -4px;   /* fine tuning */
  margin-right: 5px;
}

/* Contact items */
.top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Links */
.top-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-bar a:hover {
  opacity: 0.8;
}



/* Each item spacing */ 
.top-left span {
  display: flex;
  align-items: flex-start;
  margin-right: 0;
  white-space: nowrap;
}

/* RIGHT SIDE (Social icons if any) */
.top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Right links */
.top-right a {
  color: #123B6D;
  margin-left: 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.top-right a:hover {
  color: #ffffff;
}

/* Phone number icon alignment */
.contact-number {
  display: flex;
  align-items: center;   /* ✅ Perfect vertical alignment */
}

.contact-number i {
  line-height: 1.5;
  margin-right: 6px;
  position: static;      /* ✅ Remove relative positioning */
}

/* Fix zig-zag number issue */
.contact-number .number {
  font-family: "Roboto Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Email text same style as number */
.contact-email {
  font-family: "Roboto Mono", "Courier New", monospace;
  letter-spacing: 0.4px;
  font-weight: 500;
}
/* Hide Top Bar on Mobile */
@media (max-width: 767px) {
  .top-bar {
    display: none !important;
  }
}


/* MAIN NAVBAR */
.mu-navbar {
  padding: 6px 0;
}

.mu-navbar .nav-link {
  font-weight: 600;
  color: #000000;
  padding: 10px 15px;
}

/* Hover Effect */
.mu-navbar .nav-link:hover {
  color: #ff6a00;
}
/* Active Page (works always) */
.mu-navbar .navbar-nav .nav-item.active .nav-link {
  color: #0B3C78 !important;
  font-weight: 900;
}

/* Mobile Active Background */
@media (max-width: 991px) {
  .mu-navbar .navbar-nav .nav-item.active .nav-link {
    background: #78a8dc;
    border-radius: 8px;
    color: #0B3C78 !important;
  }
}



/* CAREER BUTTON */
.career-btn {
  background: #0b3fb3;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.career-btn:hover {
  background: #0b3fb3;
}

/* ==================================================
   BUTTONS
================================================== */
.mu-primary-btn {
  background: #0b3fb3;
  color: #fff;
  padding: 14px 50px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.3s;
}

.mu-primary-btn:hover {
  background: #0b3fb3;
  color: #fff;
}



/* ==================================================
   SCROLL TO TOP
================================================== */
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 55px;
  height: 30px;
  background: #0091ea;
  color: #043a7c;
  font-size: 30px;
  line-height: 55px;
  text-align: center;
  display: none;
  z-index: 999;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.scrollToTop:hover {
  background: #0077c8;
}
/* Mobile Menu Background */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #f2f2f2;   /* light gray */
    padding: 20px 0;
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav .nav-link {
    color: #0B3C78 !important;
    font-weight: 600;
    padding: 12px 0;
    text-align: center;
  }

  .navbar-nav .nav-link:hover {
    color: #1fc0cc !important;
  }
}

/* ==================================================
   HEADER / NAVBAR
================================================== */
/* ================= NAVBAR ================= */
#mu-hero {
  width: 100%;
  background: #fff;
   
  transition: all 0.3s ease;
}

/* #mu-hero.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */

.mu-navbar {
  min-height: 70px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.mu-logo img {
  height: 60px;
  width: auto;
}

.mu-navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mu-navbar-nav li a {
  color: #0c0c0c !important;
  font-weight: 1200;
  padding: 6px 14px;
  border-radius: 20px;
  transition: 0.3s ease;
  text-decoration: none;
}

.mu-navbar-nav li a:hover,
.mu-navbar-nav li.active a {
  background: #f5f5f5;
  color: #054d7a !important;
}

/* Career button */
.career-btn {
  background: #0b3fb3;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.career-btn:hover {
  background: #0b3fb3 ;
}

/* Mobile */
@media (max-width: 992px) {
  .top-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .mu-navbar-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==================================================
   SLIDER
================================================== */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

/* Increase Image Height */
.slide img {
  width: 100%;
  height: 500px; /* Increased size */
  margin-top: 0px;
}

/* Dark overlay */
.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

/* Center Text */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 38px; /* Increased text size */
  font-weight: 800;
  text-align: center;
  z-index: 2;
  max-width: 900px;
  line-height: 1.3;
  text-shadow: 2px 3px 12px rgba(0,0,0,0.6);
}

/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

.prev { left: 25px; }
.next { right: 25px; }

.prev:hover, .next:hover {
  background: #007bff;
}
/* ===============================
   SERVICES SECTION
================================ */

#mu-service {
  background: #f8f9fa;
  padding: 80px 0;
}

/* Section Title */

#mu-service .section-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.section-underline {
  width: 80px;
  height: 4px;
  background: #0d5ba3;
  margin: 10px auto 0;
  border-radius: 5px;
}
/* ======================================
   MOBILE RESPONSIVE FIX
====================================== */

@media (max-width: 768px) {

  /* Slider Image Height Smaller */
  .slide img {
    height: 300px;
    object-fit: cover;
  }

  /* Slider Text Smaller */
  .slide-text {
    font-size: 20px;
    max-width: 90%;
    line-height: 1.4;
  }

  /* Buttons Smaller */
  .prev, .next {
    padding: 10px 14px;
    font-size: 18px;
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  /* Services Section Padding Reduce */
  #mu-service {
    padding: 50px 15px;
  }

  /* Section Title Smaller */
  #mu-service .section-title {
    font-size: 24px;
  }

  .section-underline {
    width: 60px;
    height: 3px;
  }
}

/* Service Box */

.service-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.service-box i {
  color: #0d5ba3;
  transition: 0.3s ease;
}

.service-box h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.service-box p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.7;
}

/* =================================
   MOBILE IMPROVEMENTS
================================= */

@media (max-width: 768px) {

  #mu-service {
    padding: 50px 15px;
  }

  .service-box {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
  }

  .service-box i {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-box h5 {
    font-size: 18px;
  }

  .service-box p {
    font-size: 14px;
    line-height: 1.6;
  }

  #mu-service .section-title {
    font-size: 24px;
  }
}

/* ===============================
   FORCE BOOTSTRAP MODAL VISIBILITY
   =============================== */

.modal {
  display: none;
}

.modal.show {
  display: block !important;
}

.modal-backdrop {
  opacity: 0.5 !important;
  display: block !important;
}

/* Custom Onboarding Modal Style */
.onboarding-modal .modal-content {
  border: 2px solid rgb(51, 0, 255);
  border-radius: 12px;
}

.onboarding-modal .modal-title {
  color: rgb(76, 76, 224);
  font-weight: 700;
  text-decoration: underline;
}

.onboarding-modal .modal-body p {
  color: rgb(0, 68, 255);
  font-size: 18px;
  line-height: 1.6;
}

.onboarding-modal a {
  font-weight: bold;
  color: #007bff;
}

/* ==============================
   FOOTER STYLE
============================== */

#mu-footer {
  background: linear-gradient(135deg, #0B3C78, #0B3C78);
  color: #ffffff;
  position: relative;
}

/* Footer Titles */
.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Blue Underline */
.footer-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #fffbfb;
  margin-bottom: 20px;
}
.footer-contact {
  font-family: "Open Sans", Arial, sans-serif;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;   /* FIX */
  gap: 14px;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-contact i {
  width: 24px;               /* FIXED width */
  text-align: center;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;            /* IMPORTANT */
}

.footer-contact span {
  line-height: 1.6;
  display: block;
  font-variant-numeric: tabular-nums;
}


/* Quick Links */
.footer-links li {
  margin-bottom: 12px;
  left: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #111112;
  padding-left: 5px;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #003658;
  text-align: center;
  line-height: 42px;
  border-radius: 6px;
  margin-right: 8px;
  transition: 0.3s;
}


/* Footer Text */
.footer-text {
  color: #ffffff;
  line-height: 1.7;
}

/* Bottom Bar */
.footer-bottom {
  background: #123B6D;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===========================
   FOOTER MOBILE FIX
=========================== */

@media (max-width: 768px) {

  #mu-footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-contact i {
    margin-top: 0;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-social a {
    margin: 5px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
    padding: 10px 0;
  }
}





/* ==================================================
   ABOUT PAGE HEADER
================================================== */

.about-header {
  position: relative;
  width: 100%;
  height: 60vh;              /* 🔥 responsive height */
  min-height: 380px;
  margin-top: 10px;          /* space for fixed navbar */    /* no extra gap */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Background Image */
.about-header .header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;    /* 🔥 fill full section */
  object-position: center;
  z-index: 1;
}


/* Header Content */
.about-header .header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.about-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 20px;
  opacity: 0.9;
}


/* About content section */
.about-content-section {
  background: #ffffff;
}

.about-content-section h3 {
  font-size: 26px;
  color: #000000;
}

.about-content-section h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.about-content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 16px;
}
/* =================================
   ABOUT PAGE RESPONSIVE
================================= */

@media (max-width: 992px) {
  .about-header h1 {
    font-size: 36px;
  }

  .about-header p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .about-header {
    height: 45vh;
    min-height: 280px;
    margin-top: 70px; /* adjust if navbar is fixed */
  }

  .about-header h1 {
    font-size: 28px;
  }

  .about-header p {
    font-size: 16px;
  }

  .about-content-section {
    padding: 50px 15px;
  }

  .about-content-section h3 {
    font-size: 22px;
  }

  .about-content-section h5 {
    font-size: 16px;
  }

  .about-content-section p {
    font-size: 14.5px;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {

  .about-header h1 {
    font-size: 24px;
  }

  .about-header p {
    font-size: 14px;
  }
}


/* ==================================================
   ABOUT US SECTION
================================================== */

#mu-about {
  background: #ffffff;
  padding: 100px 20px;
}

/* Section Heading */
#mu-about h2 {
  font-size: 36px;
  font-weight: 700;
  color: #02426a;
}

#mu-about .text-center p {
  max-width: 800px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
}

/* Image */
#mu-about img {
  border-radius: 15px;
}

/* Right Content */
#mu-about h4 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #000;
}

#mu-about p {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}

/* Values List */
#mu-about ul {
  padding-left: 0;
  margin-top: 15px;
}

#mu-about ul li {
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

#mu-about ul li i {
  font-size: 18px;
  margin-right: 8px;
}


/* ================= WHY CHOOSE US ================= */

.why-choose-section {
  padding: 80px 0;
  background: #f4f6f9;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.why-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* IMAGE */
.why-image {
  flex: 1;
}

.why-image img {
  width: 230%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* WHY BOX */
.why-box {
  flex: 1;
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* Hover Effect */
.why-box:hover {
  background: #0033a0;
  transform: translateY(-6px);
}

/* TITLE */
.why-box h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #000;
  transition: color 0.3s ease;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #000;
  transition: color 0.3s ease;
}

.why-list i {
  font-size: 20px;
  color: #0d6efd;
  transition: color 0.3s ease;
}

/* Hover Text + Icons */
.why-box:hover h2,
.why-box:hover .why-list li {
  color: #ffffff;
}

.why-box:hover .why-list i {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-wrapper {
    flex-direction: column;
  }
}
/* ====================================
   ABOUT & WHY SECTION RESPONSIVE FIX
==================================== */

@media (max-width: 992px) {

  #mu-about {
    padding: 70px 15px;
  }

  #mu-about h2 {
    font-size: 28px;
    text-align: center;
  }

  #mu-about h4 {
    font-size: 20px;
  }

  #mu-about p,
  #mu-about ul li {
    font-size: 14.5px;
  }

  .why-box h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .why-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .why-image img {
    height: auto;
  }

  .why-box {
    padding: 20px;
  }

  .why-list li {
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  #mu-about h2 {
    font-size: 24px;
  }

  .why-box h2 {
    font-size: 20px;
  }
}

/* Clients Section */
#our-clients {
  background: #ffffff;
}

/* ==================================================
   CONTACT PAGE HERO HEADER
================================================== */

#mu-page-header {
  text-align: center;
  color: #fff;
}

#mu-page-header h1 {
  font-weight: 800;
  letter-spacing: 2px;
}

#mu-page-header p {
  font-size: 18px;
  opacity: 0.9;
}


/* ============================
   MODERN CONTACT SECTION
============================ */

#mu-contact-modern {
  background: #ffffff;
}

.contact-info p {
  margin-bottom: 16px;
}

.contact-info strong {
  color: #000;
  display: block;
  margin-bottom: 4px;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
}

/* Phone font style */
.contact-phone a {
  font-family: "Roboto Mono", "Courier New", monospace;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* Location text */
.contact-location {
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #000;
}

/* FORM BOX */
.contact-form-box {
  background: #faf9f9;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


/* INPUT STYLE */
.modern-input {
  border: none;
  border-bottom: 1px solid #d1d5db;
  border-radius: 0;
  padding: 10px 4px;
  font-size: 15px;
}

.modern-input:focus {
  border-bottom: 2px solid #2563eb;
  box-shadow: none;
}

/* BUTTON */
.modern-btn {
  background: rgb(39, 37, 37);
  color: white;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  transition: 0.3s ease;
}

.modern-btn:hover {
  background: #2563eb;
}

/* Office card */
.office-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Title */
.office-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0b1f44;
}

/* Row layout */
.office-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

/* Icon circle */
.office-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3b73ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-icon i {
  color: #fff;
  font-size: 22px;
}

/* Text */
.office-row h6 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
}

.office-row p {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
}

.contact-link {
  text-decoration: none;
  color: #0d6efd;
  display: inline-block;
}

.contact-link:hover {
  text-decoration: underline;
}


/* Mobile */
@media (max-width: 767px) {
  .office-card {
    padding: 28px;
  }

  .office-title {
    font-size: 24px;
  }
}
.btn-submit {
  background: linear-gradient(45deg, #0B3C78, #1fc0cc);
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}



/* ==================================================
   SERVICES PAGE STYLE
================================================== */
/* ===============================
   SERVICE PAGE - MODERN STYLING
================================ */

#mu-service-page {
  background: linear-gradient(180deg, #f8f9fa, #eef4ff);
  padding: 90px 0;
  color: #333;
}

/* Section Title */
#mu-service-page .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #005ecb;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* Section Underline */
#mu-service-page .section-underline {
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #0091ea, #00c6ff);
  margin: 0 auto 55px auto;
  border-radius: 10px;
  border: none;
}

/* ===============================
   SERVICE BOXES
================================ */

.service-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 35px 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}



.course-box {
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid #f1f1f1;
}

.course-box:hover {
  background: #457bd7;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.course-icon {
  font-size: 40px;
  color: #1332ff;
  transition: 0.3s;
}

.course-box:hover .course-icon {
  color: #ffffff;
}



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

@media (max-width: 992px) {
  .service-box {
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  #mu-service-page .section-title {
    font-size: 30px;
  }

  .service-box {
    padding: 22px;
  }
}

@media (max-width: 576px) {
  #mu-service-page .section-title {
    font-size: 24px;
  }

  .service-box {
    padding: 18px;
  }
}

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

.btn-outline-primary {
  border: 2px solid #0091ea;
  color: #0091ea;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: linear-gradient(90deg, #0091ea, #00c6ff);
  color: #fff;
  transform: scale(1.05);
}
/* ==================================================
   CAREER IMAGES (OTHER SECTIONS)
================================================== */
.careers-section .career-img-wrapper img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

/* ==================================================
   MAIN CATEGORY SECTION
================================================== */
.career-category-section {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 60px 0;
}

/* Section title */
.career-category-section h2 {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 34px;
}

/* White container row */
.career-category-section .row {
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px;
}

/* ==================================================
   CATEGORY CARDS
================================================== */
.career-category-section .col-md-4 {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border-radius: 12px;
}

/* Hover effect */
.career-category-section .col-md-4:hover {
  background: #0b3fb3;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(11, 63, 179, 0.4);
}

/* Category icons */
.career-category-section img {
  display: block;
  margin: 0 auto 20px;
  height: 100px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Icon hover */
.career-category-section .col-md-4:hover img {
  transform: scale(1.15);
  filter: brightness(0) invert(1);
}

/* Category title */
.career-category-section h5 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  color: #000;
  transition: color 0.3s ease;
}

/* Open positions text */
.career-category-section p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Text hover */
.career-category-section .col-md-4:hover h5,
.career-category-section .col-md-4:hover p {
  color: #ffffff;
}

/* ==================================================
   CATEGORY MODAL
================================================== */
/* Modal header */
#categoryModal .modal-header {
  justify-content: center;
  position: relative;
}

#categoryModal .modal-title {
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: #000000;
}

#categoryModal .close {
  position: absolute;
  right: 15px;
}

/* Modal body text */
#categoryModal .modal-body,
#categoryModal .list-group-item {
  color: #000000;
}

/* List items */
#categoryList .list-group-item {
  cursor: pointer;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    color 0.25s ease;
}

/* Hover effect */
#categoryList .list-group-item:hover {
  background-color: #0b3fb3;
  color: #ffffff;
  transform: translateX(6px);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(11, 63, 179, 0.8);
  border-color: transparent;
}

/* ==================================================
   APPLY BUTTONS
================================================== */
#categoryModal .btn-primary,
#applyModal .btn-primary {
  background-color: #0b3fb3;
  border-color: #0b3fb3;
}

#categoryModal .btn-primary:hover,
#applyModal .btn-primary:hover {
  background-color: #0b3fb3;
  border-color: #0b3fb3;
  box-shadow: 0 5px 15px rgba(11, 63, 179, 0.6);
}

/* ==================================================
   EXPERIENCE MODAL
================================================== */
.exp-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

#experienceModal .modal-title {
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: #000000 !important;
}

#experienceModal .modal-header {
  position: relative;
}

#experienceModal .close {
  position: absolute;
  right: 15px;
}

/* ==================================================
   APPLY FORM MODAL
================================================== */
#applyModal .modal-title {
  width: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}

#applyModal .modal-header {
  position: relative;
}

#applyModal .close {
  position: absolute;
  right: 15px;
}

#applyModal label {
  color: #000000 !important;
  font-weight: 600;
}

/* Apply form section */
.apply-form-section {
  background: radial-gradient(circle at top, #111, #000);
}

.apply-form label {
  color: #ffffff;
  font-weight: 500;
}

.apply-form .form-control {
  background: transparent;
  border: 1px solid #6c757d;
  color: #ffffff;
  height: 48px;
}

.apply-form .form-control:focus {
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  border-color: #0b3fb3;
}

.apply-form textarea {
  height: auto;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 991px) {
  .career-category-section .col-md-4 {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .career-category-section img {
    height: 80px;
  }

  .career-category-section h5 {
    font-size: 20px;
  }

  .career-category-section p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .career-category-section .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .career-category-section h2 {
    font-size: 26px;
  }

  .career-category-section img {
    height: 65px;
  }

  .career-category-section h5 {
    font-size: 18px;
  }

  .career-category-section p {
    font-size: 14px;
  }
}


/* ===============================
   CTA BANNER
=============================== */
.cta-banner {
  background: linear-gradient(
      rgba(11, 63, 179, 0.65),
      rgba(11, 63, 179, 0.65)
    ),
    url("images/banner-bg.jpg"); /* optional texture image */
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

/* Flex container */
.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 text left, button right */
}

/* Heading */
.cta-flex h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

/* Button */
.cta-btn {
  background: #c6e400;
  color: #000000;
  padding: 14px 34px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffffff;
  color: #0b3fb3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 767px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-flex h2 {
    font-size: 28px;
  }
}


/* ===============================
   sticky issue 
   =============================== */
.main-header {
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
