
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --blue-dark: #014691;
  --blue-light: #33c2f0;
  --blue-mid: #004994;
  --brown-light: #8b6036;
  --brown-dark: #714b27;
  --navbar-height: 70px;
}



body {
  font-family: "Lato", system-ui, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* Header & Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 70px;
}

.navbar-nav .nav-link {
  color: var(--blue-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--blue-light) !important;
}

.navbar-nav .nav-link.active {
  color: var(--blue-light) !important;
  font-weight: 600;
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.navbar .dropdown-item {
  padding: 10px 20px;
  color: var(--blue-dark);
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: var(--blue-dark);
  color: white;
}

.learn-more-btn {
  background: var(--blue-light);
  color: white !important;
  border: none;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 70, 145, 0.3);
}

/* ------------------------------------------
   FIX 1: Dropdown should push content down
--------------------------------------------*/
.offcanvas .dropdown-menu {
  position: static !important;
  inset: unset !important; /* removes absolute positioning */
  transform: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 0 0 20px !important;
  background: transparent !important;
  border: none !important;
  display: none;
}

/* show submenu properly */
.offcanvas .dropdown-menu.show {
  display: block !important;
}

/* ------------------------------------------
   FIX 2: Remove big unwanted gap above submenu
--------------------------------------------*/
.offcanvas .dropdown-menu.show .dropdown-item:first-child {
  margin-top: 5px !important;
}

/* ------------------------------------------
   FIX 3: Clean submenu item spacing
--------------------------------------------*/
.offcanvas .dropdown-item {
  padding: 6px 0 !important;
  line-height: 1.2 !important;
  border-bottom: none !important;
  background: none !important;
}

/* ------------------------------------------
   FIX 4: Remove border under dropdown parent
--------------------------------------------*/
.offcanvas .dropdown-toggle {
  border-bottom: none !important;
}

/* ------------------------------------------
   FIX 5: Rotate arrow correctly
--------------------------------------------*/
.offcanvas .dropdown-toggle::after {
  float: right;
  margin-top: 8px;
  transition: transform 0.3s ease;
}

.offcanvas .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}


/* Hero Banner Section */
.hero-banner {
  height: 80vh;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #002b5c 100%);
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23003366" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btn {
  background: var(--blue-light);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-btn:hover {
  background: white;
  color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-content {
  display: flex;
  align-items: center;
}

.why-choose-text {
  padding-right: 50px;
}

.why-choose-text h2 {
  color: var(--blue-dark);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.why-choose-text p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-choose-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Enquiry Section */
.enquiry-section {
  padding: 80px 0;
  background: var(--blue-dark);
  color: white;
}

.enquiry-section h2 {
  text-align: left;
  margin-bottom: 40px;
  font-weight: 700;

}

.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: white;
  margin-bottom: 20px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--blue-light);
  box-shadow: 0 0 0 0.2rem rgba(51, 194, 240, 0.25);
  color: white;
}

.submit-btn {
  background: var(--blue-light);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: white;
  color: var(--blue-dark);
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 68px;
}

.footer-caption {
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}



.footer-heading {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--blue-light);
}

.contact-info {
  color: #a0aec0;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #a0aec0;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--blue-light);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #2d3748;
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .why-choose-content {
    flex-direction: column;
  }

  .why-choose-text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .services-section,
  .why-choose-section {
    padding: 70px 0;
  }

  .service-content {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .service-img {
    height: 180px;
    font-size: 2.5rem;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-heading {
    font-size: 1.1rem;
  }
}

@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }
}

.my-section {
  background-color: #000000;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.my-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23111" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-heading h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  /* background: linear-gradient(to right, #fff, var(--blue-light)); */
  -webkit-background-clip: text;
  background-clip: text;
  color: white;
}

.vision-mission-container {
  position: relative;
  z-index: 1;
}

/* .vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 40px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
} */

/* .vision-card::before,
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--blue-light), var(--blue-dark));
} */

.card-icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.card-icon h3 {
  margin-bottom: 0;
  padding-left: 5px;
}

.card-icon i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(51, 194, 240, 0.3);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: inline-block;
}

/* .card-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--blue-light);
  border-radius: 2px;
} */

.card-content {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
}

/* .bottom-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  z-index: 1;
} */

.bottom-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 7px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.floating-element-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.floating-element-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .section-heading h1 {
    font-size: 3rem;
  }

  .vision-card,
  .mission-card {
    padding: 40px 30px;
  }
}

@media (max-width: 992px) {
  .my-section {
    padding: 80px 0;
  }

  .section-heading h1 {
    font-size: 2.5rem;
  }

  .vision-card,
  .mission-card {
    margin-bottom: 0px;
  }

  .card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section-heading h1 {
    font-size: 2.2rem;
  }

  .vision-card,
  .mission-card {
    padding: 35px 25px;
  }

  .card-title {
    font-size: 1.5rem;
    text-align: left;
  }

  .card-content {
    font-size: 1rem;
    text-align: left;
  }

  /* .bottom-content {
    padding: 30px 25px;
    margin-top: 30px;
  } */
}

@media (max-width: 576px) {
  .my-section {
    padding: 60px 0;
  }

  .section-heading h1 {
    font-size: 1.9rem;
  }

  .vision-card,
  .mission-card {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .bottom-content {
    padding: 25px 20px;
  }

  .floating-element-1,
  .floating-element-2 {
    display: none;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* black overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 20px;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: var(--blue-light);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: var(--blue-mid);
  color: white;
}

:root {
  --blue-dark: #014691;
  --blue-light: #33c2f0;
  --blue-mid: #004994;
  --brown-light: #8b6036;
  --brown-dark: #714b27;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  color: var(--blue-dark);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: #64748b;
  font-size: 1.2rem !important;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 400px;
  margin-bottom: 30px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.077) 20%,
    /* top transparent */ rgb(0, 0, 0) 100% /* bottom darker */
  );
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 20px 15px;
  color: white;
  width: 100%;
}

.service-icon {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.service-content h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

.service-link {
  background: var(--blue-light);
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 12px 25px;
  border-radius: 50px;
  border: 2px solid var(--blue-light);
}

.service-link:hover {
  background: transparent;
  color: white;
  gap: 12px;
  border-color: white;
}

/* Background Images for each service */
.hr-service {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="%23003366"/><text x="50%" y="50%" font-family="Arial" font-size="20" fill="white" text-anchor="middle" dominant-baseline="middle">HR Services Background</text></svg>');
}

.it-service {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="%23004994"/><text x="50%" y="50%" font-family="Arial" font-size="20" fill="white" text-anchor="middle" dominant-baseline="middle">IT Services Background</text></svg>');
}

.training-service {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="%23014691"/><text x="50%" y="50%" font-family="Arial" font-size="20" fill="white" text-anchor="middle" dominant-baseline="middle">Training Academy Background</text></svg>');
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 2.5rem;
  }

  .service-card {
    height: 380px;
  }

  .service-content {
    padding: 35px 25px;
  }

  .service-icon {
    font-size: 2.3rem;
  }

  .service-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .service-card {
    height: 350px;
  }

  .service-content {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .service-card {
    height: 320px;
  }

  .service-content {
    padding: 25px 20px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .service-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .service-card {
    height: 300px;
  }

  .service-content {
    padding: 20px;
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-4px);
}

.social-icons a img {
  height: 20px;
}

/* For the dark section background */
.dark-section {
  background: var(--blue-dark);
  padding: 30px 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'DM Sans' !important;
}

.my-breadcum {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  margin-top: 50px;
}

.my-breadcum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/breacum-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat !important;
  background-position: center;
  z-index: -2;
}

.my-breadcum::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(24, 24, 24, 0.689) 0%,
    rgba(0, 0, 0, 0.37) 100%
  );
  z-index: -1;
}

.breadcum-content {
  text-align: center;
  color: white;
  max-width: 800px;
  z-index: 1;
}

.breadcum-title {
  font-size: 4.0rem;
  font-weight: 700;
  margin-bottom: 0px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcum-subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.breadcum-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcum-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.breadcum-links a:not(:last-child)::after {
  content: "/";
  margin: 0 0 0 5px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcum-links a:hover {
  color: #33c2f0;
  transform: translateY(-2px);
}

.breadcum-links .active {
  color: #33c2f0;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .my-breadcum {
    min-height: 250px;
  }

  .breadcum-title {
    font-size: 2rem;
  }

  .breadcum-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .my-breadcum {
    min-height: 200px;
  }

  .breadcum-title {
    font-size: 1.7rem;
  }

  .breadcum-subtitle {
    font-size: 0.9rem;
  }

  .breadcum-links {
    flex-direction: column;
    gap: 5px;
  }

  .breadcum-links a:not(:last-child)::after {
    display: none;
  }
}

:root {
  --blue-dark: #014691;
  --blue-light: #33c2f0;
  --blue-mid: #004994;
  --brown-light: #8b6036;
  --brown-dark: #714b27;
}

/* MAIN SECTION */
.about-us-inn {
  padding: 80px 0;
  background: #ffffff !important;
}

/* IMAGE BOX */
.about-us-inn .about-us-inn-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-us-inn .about-us-inn-img img:hover {
  transform: scale(1.03);
}

/* CONTENT */
.about-us-inn .about-us-inn-content h3 {
  color: var(--blue-dark);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
}

/* .about-us-inn .about-us-inn-content h3::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--blue-light);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 4px;
} */

.about-us-inn .about-us-inn-content p {
  font-size: 17px;
  color: #1c1c1c;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-us-inn {
    padding: 60px 0;
  }

  .about-us-inn .about-us-inn-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .about-us-inn .about-us-inn-img img {
    margin-bottom: 25px;
  }

  .about-us-inn .about-us-inn-content h3 {
    font-size: 24px;
  }

  .about-us-inn .about-us-inn-content p {
    font-size: 16px;
  }
}

.about-us-inn .about-us-inn-highlight {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 800px;
  border: 1px solid var(--blue-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  color: var(--blue-dark);
  font-weight: 600;
  line-height: 1.8;
  margin: 100px auto 0;
  position: relative;
}

.about-us-inn .about-us-inn-highlight i {
  color: var(--blue-light);
  font-size: 22px;
  margin: 0 6px;
}

:root {
  --blue-dark: #014691;
  --blue-mid: #004994;
  --blue-light: #33c2f0;
  --brown-dark: #714b27;
}

/* SECTION */
.recruitment-inn {
  padding: 80px 0;
  background: #f4f8ff;
}

.recruitment-inn.rec-inn-2 {
  background: #eef4ff;
}

/* SECTION HEADINGS */
.recruitment-inn .recruitment-inn-head h2 {
  color: var(--blue-dark);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.recruitment-inn .recruitment-inn-head p {
  /* color: var(--brown-dark); */
  font-size: 17px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 80px;
  line-height: 1.8;
}

/* REUSABLE CARD */
/* .recruitment-inn .recruitment-inn-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border: 1px solid #e7edf5;
  margin-bottom: 30px;
} */

.recruitment-inn .recruitment-inn-card h3 {
  color: var(--blue-mid);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.rec-inn-2 {
  background: white !important;
}

.recruitment-inn .recruitment-inn-card p {
  /* color: var(--brown-dark); */
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE BOX */
.recruitment-inn .recruitment-inn-img-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.recruitment-inn .recruitment-inn-img-box img {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s ease;
}

.recruitment-inn .recruitment-inn-img-box:hover img {
  transform: scale(1.05);
}

/* SECTION BOTTOM CTA */
.recruitment-inn h2 {
  text-align: center;
  color: var(--blue-mid);
  font-size: 30px;
  font-weight: 700;
  margin: 40px 0 12px;
}

.recruitment-inn a {
  display: inline-block;
  text-align: center;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-decoration: underline;
  transition: 0.3s ease;
}

.recruitment-inn a:hover {
  color: var(--blue-light);
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .recruitment-inn .recruitment-inn-card {
    padding: 25px;
  }

  .recruitment-inn .recruitment-inn-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .recruitment-inn {
    padding: 60px 0;
  }

  .recruitment-inn .recruitment-inn-head h2 {
    font-size: 28px;
  }

  .recruitment-inn h2 {
    font-size: 26px;
  }
}

/* CTA CARD MAIN WRAPPER */
.recruitment-inn.cta-card-sec {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* CARD */
.recruitment-inn .cta-card {
  position: relative;
  background: linear-gradient(135deg, #014691, #33c2f0);
  padding: 50px 40px;
  border-radius: 20px;
  color: #fff !important;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin: 100px auto 0;
}

.recruitment-inn .cta-card p {
  width: 600px;
  margin: 0 auto 30px;
}

/* SHAPES */
.recruitment-inn .cta-card .cta-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(20px);
  animation: floatShape 6s infinite ease-in-out alternate;
}

.recruitment-inn .cta-card .shape1 {
  top: -40px;
  left: -40px;
}

.recruitment-inn .cta-card .shape2 {
  bottom: -40px;
  right: -40px;
  animation-delay: 2s;
}

@keyframes floatShape {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.2) translateY(20px);
  }
}

/* HEADINGS */
.recruitment-inn .cta-card h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
  color: white;
}

/* CTA BUTTONS */
.recruitment-inn .cta-card .cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--blue-dark);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 30px;
  text-decoration: none;
  z-index: 10;
  position: relative;
  transition: 0.3s ease;
}

.recruitment-inn .cta-card .cta-btn:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-3px);
}

/* DIVIDER */
.recruitment-inn .cta-card hr {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  width: 70%;
  margin: 30px auto;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .recruitment-inn .cta-card {
    padding: 35px 20px;
  }
  .recruitment-inn .cta-card h2 {
    font-size: 22px;
  }
}

:root {
  --blue-dark: #014691;
  --blue-light: #33c2f0;
  --blue-mid: #004994;
}

.job-seek-inn {
  padding: 40px 0;
}

.job-seek-inn .job-seek-heading {
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.job-seek-inn .job-seek-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.job-seek-inn .job-seek-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.job-seek-inn .job-seek-card-header {
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.job-seek-inn .job-seek-card-title {
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.job-seek-inn .job-seek-card-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.job-seek-inn .job-seek-card-body {
  padding: 20px;
}

.job-seek-inn .job-seek-card-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.job-seek-inn .job-seek-card-desc.expanded {
  max-height: none;
}

.job-seek-inn .job-seek-card-desc.collapsed {
  max-height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.job-seek-inn .job-seek-card-footer {
  background-color: white;
  border-top: 1px solid #eee;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-seek-inn .job-seek-card-salary {
  color: var(--blue-mid);
  font-weight: 600;
  font-size: 1.1rem;
}

.job-seek-inn .job-seek-card-btn {
  background-color: var(--blue-light);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.job-seek-inn .job-seek-card-btn:hover {
  background-color: var(--blue-dark);
}

.job-seek-inn .job-seek-view-more {
  color: var(--blue-mid);
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
}

.job-seek-inn .job-seek-view-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.job-seek-inn .job-seek-view-more.expanded i {
  transform: rotate(180deg);
}

/* Filter Sidebar */
.job-seek-inn .job-seek-filter {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  position: sticky;
  top: 20px;
}

.job-seek-inn .job-seek-filter-title {
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 10px;
}

.job-seek-inn .job-seek-filter-group {
  margin-bottom: 25px;
}

.job-seek-inn .job-seek-filter-label {
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.job-seek-inn .job-seek-filter-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.job-seek-inn .job-seek-filter-input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(51, 194, 240, 0.2);
  outline: none;
}

.job-seek-inn .job-seek-filter-select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
}

.job-seek-inn .job-seek-filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-seek-inn .job-seek-filter-option {
  display: flex;
  align-items: center;
}

.job-seek-inn .job-seek-filter-checkbox {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue-light);
}

.job-seek-inn .job-seek-filter-option-label {
  color: #555;
  cursor: pointer;
}

.job-seek-inn .job-seek-filter-btn {
  background-color: var(--blue-dark);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-weight: 600;
  width: 100%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.job-seek-inn .job-seek-filter-btn:hover {
  background-color: var(--blue-mid);
}

/* Application Popup - FIXED */
.job-application-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.job-application-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.job-application-popup {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.job-application-popup-overlay.active .job-application-popup {
  transform: scale(1);
}

.job-application-popup-header {
  background-color: var(--blue-dark);
  color: white;
  padding: 20px 25px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-application-popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.job-application-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-application-popup-close:hover {
  color: var(--blue-light);
}

.job-application-popup-body {
  padding: 25px;
}

.job-application-popup-form-group {
  margin-bottom: 20px;
  position: relative;
}

.job-application-popup-form-label {
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.job-application-popup-form-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.job-application-popup-form-input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(51, 194, 240, 0.2);
  outline: none;
}

.job-application-popup-form-icon {
  position: absolute;
  left: 15px;
  top: 48px;
  color: var(--blue-mid);
  font-size: 1.1rem;
}

.job-application-popup-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  min-height: 120px;
  resize: vertical;
  transition: all 0.3s ease;
}

.job-application-popup-form-textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(51, 194, 240, 0.2);
  outline: none;
}

.job-application-popup-form-file {
  width: 100%;
  padding: 12px 15px;
  border: 1px dashed #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-application-popup-form-file:hover {
  border-color: var(--blue-light);
  background-color: #f0f9ff;
}

.job-application-popup-footer {
  padding: 20px 25px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.job-application-popup-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-application-popup-btn-cancel {
  background-color: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
}

.job-application-popup-btn-cancel:hover {
  background-color: #e9ecef;
}

.job-application-popup-btn-submit {
  background-color: var(--blue-dark);
  color: white;
}

.job-application-popup-btn-submit:hover {
  background-color: var(--blue-mid);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .job-seek-inn .job-seek-filter {
    position: static;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .job-seek-inn .job-seek-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .job-seek-inn .job-seek-card-btn {
    width: 100%;
  }

  .job-application-popup-footer {
    flex-direction: column;
  }

  .job-application-popup-btn {
    width: 100%;
  }
}

/* Custom Scrollbar for Popup */
.job-application-popup::-webkit-scrollbar {
  width: 8px;
}

.job-application-popup::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 0 10px 0;
}

.job-application-popup::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 4px;
}

.job-application-popup::-webkit-scrollbar-thumb:hover {
  background: var(--blue-dark);
}

/* Firefox Scrollbar */
.job-application-popup {
  scrollbar-width: thin;
  scrollbar-color: var(--blue-mid) #f1f1f1;
}

:root {
  --blue-dark: #014691;
  --blue-light: #33c2f0;
  --blue-mid: #004994;
}

/* Wrapper */
.contact-bg-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url("../images/cona.jpg");
  /* replace */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 50px;
}

/* Light black overlay left → right */
.contact-bg-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Right side form box */
.contact-form-box {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  /* background: var(--blue-mid); */
  padding: 25px;
  border-radius: 10px 0 0 10px;
  color: #000000;
  /* box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25); */
}

/* Input wrapper */
.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 12px;
  /* top: 50%; */
  top: 27px;
  transform: translateY(-50%);
  color: #004994;
  font-size: 16px;
}

.input-icon .form-control,
.input-icon textarea {
  padding-left: 40px;
  border-radius: 6px;
  border: none;
  background: #00000033;
}

/* Button */
.submit-btn {
  background: var(--blue-light);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 6px;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-bg-wrapper {
    height: auto;
    padding: 40px 0;
  }

  .contact-form-box {
    position: relative;
    transform: none;
    width: 100%;
    right: 0;
    border-radius: 10px;
    margin: 20px auto;
  }
}

/* Heading Styling */
.contact-us-inn h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: capitalize;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Paragraph Styling */
.contact-us-inn p {
  font-size: 17px;
  color: #444;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 575px) {
  .contact-us-inn h2 {
    font-size: 26px;
  }

  .contact-us-inn p {
    font-size: 15px;
  }
}

.section-padding {
  padding: 80px 0;
}

[id] {
  scroll-margin-top: 100px; /* Adjust this to the actual height of your navbar */
}

:root {
  --blue-dark: #014691;
  --blue-light: #33c2f0;
  --blue-mid: #004994;
}

.it-solution-inn {
  padding: 70px 0;
}

.it-solution-inn h2 {
  font-size: 45px;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: capitalize;
  margin-bottom: 50px;
  position: relative;
  text-align: center !important;

  padding-bottom: 8px;
}

/* MAIN WRAPPER */
.it-box {
  position: relative;
  display: flex;
  gap: 55px;

  align-items: center;
  padding: 20px;
}

.it-box {
  position: relative;
  display: flex;
  gap: 55px;
  align-items: center;
  padding: 25px;
  z-index: 2; /* above the after background */
}

/* Background block behind .it-box */
.it-box::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: #0146911c;
  border-radius: 0 0 80px 0;
  z-index: -1;
}

/* LEFT (IMAGE) = 50% */
.it-left {
  width: 40%;
  background-color: gray;
}

.main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.it-left img {
  aspect-ratio: 30/45;
  object-fit: cover;
}

/* RIGHT (CONTENT) = 50% */
.it-right {
  width: 60%;
  padding-right: 15px;
}

.it-right h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.it-right p {
  font-size: 16px;
  color: #333;
  text-align: justify;
  line-height: 1.6;
}

/* CHILD IMAGE */
.child-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  left: 33%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .it-box {
    flex-direction: column;
    text-align: center;
  }

  .it-left,
  .it-right {
    width: 100%;
  }

  .child-img {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, -40px);
    margin-bottom: -30px;
  }
}

@media (max-width: 575px) {
  .child-img {
    width: 110px;
    height: 110px;
  }

  .it-right h3 {
    font-size: 24px;
  }
}

:root {
  --primary-blue: #014691;
  --secondary-blue: #33c2f0;
  --light-blue: #e8f4f8;
}

.training-needs-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: white;
  padding: 80px 0;
}

.training-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.training-title {
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.training-subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.training-form-group {
  margin-bottom: 25px;
  position: relative;
}

.training-form-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.training-form-input:focus {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 2px rgba(51, 194, 240, 0.2);
  outline: none;
}

.training-form-icon {
  position: absolute;
  left: 15px;
  top: 27px;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.training-form-textarea {
  min-height: 120px;
  resize: vertical;
  padding-left: 45px;
}

.training-form-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.training-form-btn:hover {
  background: #033a7a;
  transform: translateY(-2px);
}

.career-training-section {
  padding: 80px 0;
  background: var(--light-blue);
}

.section-title {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-content {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.process-list {
  list-style: none;
  padding: 0;
}

.process-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
  line-height: 24px;
}

.process-list li:before {
  content: "•";
  color: var(--secondary-blue);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.highlight-box {
  background: white;
  border-left: 4px solid var(--secondary-blue);
  padding: 20px;
  border-radius: 5px;
  margin: 70px 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.corporate-training-section {
  padding: 80px 0;
  background: white;
}

.corporate-title {
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.corporate-content {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .training-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.3rem;
  }
}

.corporate-training-section img {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s ease;
}

.corporate-training-section img:hover {
  transform: scale(1.03);
}

.career-training-section img {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s ease;
}

.career-training-section img:hover {
  transform: scale(1.03);
}

p{
  font-family: Lato, sans-serif !important;
  font-size: 17px !important;
  line-height: 24px !important;


}


.footer-caption{
  font-size: 40px;
  font-weight: 900 !important;
  line-height: 50px;
  
}
