/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-primary{
  border-radius: 10px !important;
      padding: 12px 34px;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** Section Title End ***/



/*** Navbar Start ***/

/* ===== TOP BAR ===== */

.top-info-bar {
  width: 100%;
    background-color: #5A8DEE  !important;
      backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 25px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.left-info span:hover {
  color: #0057fc;
}
.left-white {
  color: #fff!important;
}
.left-white:hover {
  color: #0057fc!important;
}

.left-info i {
  margin-right: 6px;
  color: #0057fc;
}

.right-info a {
  margin-left: 15px;
  color: #0057fc;
  font-size: 22px;
  transition: 0.3s;
}

.right-info a:hover {
  color: #fff;
}


/* ---------------------------
   MAIN NAVBAR (GLASS WITH BLUE COLOR)
---------------------------- */
/* ---------------------------
   PREMIUM GLASS NAVBAR
---------------------------- */
.glass-navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ALIGNING CONTENT */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* LOGO + BRAND */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 90px;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  background-color: #5A8DEE;
  -webkit-background-clip: text;
  color: transparent;   /* Gradient text */
  letter-spacing: 0.7px;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #2a88e6;
  border-radius: 50px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #2a88e6;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

/* BUTTON */
.quote-btn {
  background-color: #5A8DEE;
  color: #fff;
  padding: 12px 34px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(42, 136, 230, 0.35);
}

.quote-btn:hover {
     background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

/* MOBILE */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  
}

/* ---------------------------
   MOBILE MENU ICON
---------------------------- */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #2a88e6;
}

/* ---------------------------
   MOBILE SIDEBAR (ASIDE)
---------------------------- */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 5px 0 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 2000;
  padding: 25px;
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-header h2 {
  font-size: 22px;
  color: #2a88e6;
  font-weight: 700;
}

.sidebar-header i {
  font-size: 24px;
  cursor: pointer;
  color: #2a88e6;
}

.sidebar-links {
  list-style: none;
  margin-top: 25px;
  padding-left: 0;
}

.sidebar-links li {
  margin-bottom: 18px;
}

.sidebar-links a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.sidebar-links a:hover {
  color: #2a88e6;
}

/* Sidebar Button */
.quote-btn-sidebar {
  background: linear-gradient(90deg, #2a88e6, #00b1ff);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff !important;
  display: inline-block;
  margin-top: 10px;
}


/* ---------------------------
   RESPONSIVE
---------------------------- */
@media (max-width: 991px) {

  /* Hide desktop menu */
  .nav-links,
  .quote-btn {
    display: none;
  }

  /* Show mobile menu icon */
  .menu-icon {
    display: block;
  }

}

/*** Navbar End ***/
.bg-breadcrumb {
    background-color: #5A8DEE;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 0px 0 0px 0;
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* Carousel Buttons */
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.4s;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    margin-left: -40px;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-right: -40px;
}

/* Indicators */
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin: 0 8px;
    transition: 0.4s;
}

.carousel-header .carousel .carousel-indicators li.active {
    border-color: var(--bs-secondary);
}

/* Image & Caption */
.carousel-header .carousel-inner .carousel-item {
    height: 90vh;
    position: relative;
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6));
    padding: 20px;
}

/* ------------------------------ */
/* 📱 MOBILE RESPONSIVE (Best Look) */
/* ------------------------------ */
@media (max-width: 768px) {

    .carousel-header {
        height: 600px;
        width: 100%;
    }

    .carousel-header .carousel-inner .carousel-item {
        height: 600px;
    }

    .carousel-caption h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 1rem !important;
    }

    .carousel-caption a {
        padding: 10px 22px !important;
        font-size: 0.9rem !important;
    }

    /* Controls position */
    .carousel-control-prev .carousel-control-prev-icon,
    .carousel-control-next .carousel-control-next-icon {
        margin: 0 !important;
        width: 2.8rem;
        height: 2.8rem;
        margin-top: 150px !important;
    }

    /* Indicators adjust */
    .carousel-indicators {
        bottom: 20px !important;
    }

    .carousel-indicators li {
        width: 6px;
        height: 6px;
        border-width: 6px;
        margin: 0 5px;
    }
}

/* ------------------------------- */
/* 📱 SMALL MOBILE (Below 480px) */
/* ------------------------------- */
@media (max-width: 480px) {

    .carousel-header {
        height: 600px;
    }

    .carousel-inner .carousel-item {
        height: 520px;
    }

    .carousel-caption h1 {
        font-size: 1.7rem !important;
    }

    .carousel-caption a {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        margin-top: 380px !important;
    }
}

/*** Carousel Hero Header End ***/





/* ===== VISA INFO SECTION ===== */
.visa-info-section {
  position: relative;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #111;
  width: 100%;
  min-height: 90vh;
  background-image: url("/img/aabout33.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.visa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* ===== LEFT IMAGE ===== */
.visa-image-wrapper {
  position: relative;
  flex: 1;
  max-width: 460px;
}

.visa-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.20);
}

/* ===== EXPERIENCE CARD ===== */
.visa-experience-card {
  position: absolute;
  bottom: -35px;
  left: -35px;
  background: #fff;
  border: 8px solid #5A8DEE;
  padding: 25px 30px;
  max-width: 230px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.visa-experience-card h1 {
  color: #5A8DEE;
  font-size: 56px;
  margin: 0;
}

.visa-experience-card p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* ===== RIGHT CONTENT ===== */
.visa-content {
  flex: 1.3;
  color: #111;
}

.visa-subtitle {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.visa-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.visa-highlight {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.visa-description {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.visa-btn {
  background: #5A8DEE;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.visa-btn:hover {
  transform: translateY(-3px);
}

/* ===== ANIMATION (Base State) ===== */
.animate-fade-slide {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

/* When visible */
.animate-fade-slide.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: image comes from left, text from right */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.9s ease-out;
}

.animate-left.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.9s ease-out;
}

.animate-right.show {
  opacity: 1;
  transform: translateX(0);
}


/* ===== TABLET VIEW ===== */
@media (max-width: 991px) {
  .visa-info-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .visa-row {
    flex-direction: column;
    text-align: center;
  }

  .visa-content {
    order: 2;
  }

  .visa-image-wrapper {
    max-width: 70%;
    margin: 0 auto;
  }


  .visa-title {
    font-size: 30px;
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 575px) {
  .visa-info-section {
    padding: 50px 15px;
  }

  .visa-row {
    gap: 30px;
  }

  .visa-image-wrapper {
    max-width: 90%;
  }

  .visa-title {
    font-size: 24px;
  }

  .visa-experience-card {
    max-width: 200px;
    padding: 18px 22px;
  }

  .visa-experience-card h1 {
    font-size: 42px;
  }
}

.type-visa{
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #5A8DEE;
    font-weight: 700;
        font-family: "Poppins", sans-serif;
}

/* ===== VISA SECTION ===== */
.visa-section {
  padding: 100px 10%;
  font-family: "Poppins", sans-serif;
  background: #bed4ff;
}

/* ===== Header ===== */
.visa-header {
  justify-content: space-between;
  align-items: start;
  margin-bottom: 60px;
  text-align: center;
}

.visa-header-left {
  flex: 1;
  min-width: 260px;
}

.visa-subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.visa-title {
  font-size: 40px;
  font-weight: 700;
  color: #2E2E4E;
  margin-bottom: 15px;
  line-height: 1.3;
}

.visa-line {
  width: 45px;
  height: 3px;
  background: #5A8DEE;
  margin: 10px auto 0; /* centers it horizontally */
  text-align: center;
}


.visa-header-right {
  flex: 1;
  min-width: 260px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Card Section ===== */
.visa-card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.visa-card {
  background: #f9fafb;
  border-radius: 8px;
  text-align: center;
  padding: 40px 25px;
  flex: 1;
  min-width: 230px;
  max-width: 300px;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.visa-card:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #5A8DEE ;
  transform: translateY(-8px);
}

.visa-card.active {
  background: #fff;
  /* border-bottom: 3px solid #5A8DEE ; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.visa-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.visa-icon.red {
  color: #5A8DEE ;
}

.visa-icon.blue {
  color: #5A8DEE ;
}

.visa-type {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.visa-name {
  font-size: 22px;
  color: #2E2E4E;
  font-weight: 600;
  margin-bottom: 15px;
}

.visa-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .visa-header {
    flex-direction: column;
    gap: 25px;
  }
  .visa-card-container {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .visa-title {
    font-size: 28px;
  }
  .visa-card {
    padding: 30px 20px;
  }
}




.faq-section {
  /* padding: 100px 0; */
  background: url('/img/bgFAQ3.jpg') no-repeat center/cover;
  font-family: 'Poppins', sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 6px 20px;
}

.faq-image img {
  width: 500px;
  height: auto;
  object-fit: contain;
}

.faq-content {
  flex: 1;
}

.faq-subtitle {
  font-size: 14px;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}

.faq-title {
  font-size: 40px;
  color: #2E2E4E;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.faq-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: linear-gradient(90deg, #5A8DEE, #5A8DEE);
  color: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
  opacity: 1;
}

.faq-question {
  width: 100%;
  background: #f9f9f9;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 25px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .faq-container {
    flex-direction: column;
    text-align: center;
  }

    .faq-image img {
        width: 400px;
        background-color: #5A8DEE;
    }

  .faq-title {
    font-size: 32px;
  }
}










/* ========= BACKGROUND SECTION ========= */
/* ===== Background ===== */
.ucx-service-area {
  position: relative;
  padding: 100px 20px;
  background-image: url('/img/bgservice1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
}

.ucx-service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

.ucx-service-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ===== SERVICE TITLE STYLING ===== */
.ucx-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: inline-block;
  
  /* Floating Animation */
  animation: ucxFloat 4s ease-in-out infinite;
  
  /* Glow */
  text-shadow: 0 0 10px #5A8DEE, 
               0 0 20px #5A8DEE, 
               0 0 35px #5A8DEE;
}



/* Floating Animation Keyframes */
@keyframes ucxFloat {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}




.ucx-subtitle {
  color: #e9e9e9;
  margin-bottom: 50px;
}

/* ===== Grid ===== */
.ucx-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
}

/* ===== Card ===== */
.ucx-card {
  position: relative;
  background: rgba(255,255,255,0.15);
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  cursor: pointer;
  overflow: hidden;

  transform-style: preserve-3d;

  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease;
}

/* Slide-in animation */
.ucx-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Image Reveal */
.ucx-img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.35s ease;
  z-index: 1;
}

.ucx-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ucx-card:hover .ucx-img-wrap {
  opacity: 1;
}

/* Dark overlay on hover */
.ucx-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.ucx-card:hover::after {
  opacity: 1;
}

/* Border Animation */
.ucx-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #00ffe7, #00a2ff, #00ffc6) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}
.ucx-card:hover .ucx-border {
  opacity: 1;
}

/* Card Content */
.ucx-icon,
.ucx-card-title,
.ucx-card-text {
  position: relative;
  z-index: 2;
}

.ucx-icon {
  font-size: 50px;
  color: #00eaff;
  margin-bottom: 18px;
}

.ucx-card-title {
  font-size: 23px;
  color: white;
}

.ucx-card-text {
  color: #eaeaea;
  font-size: 15px;
}











/*** Service Start ***/

.service-section {
    text-align: center;
    justify-items: center;

    /* ✅ Background Image */
    background-image: url("/img/service-bg2.jpg"); /* Change this to your actual image path */
    background-size: cover;          /* Full coverage */
    background-position: center;     /* Center image */
    background-repeat: no-repeat;    /* No repeating */
    background-attachment: fixed;    /* Parallax effect (optional) */

    padding: 60px 20px;
    position: relative;
}

/* Optional Overlay for better readability */
.service-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* dark transparent overlay */
    z-index: 0;
}

.service-section * {
    position: relative;
    z-index: 1;
}

/* Section Title */
.service-section .section-titl {
    font-size: 36px;
    margin: 40px auto;
    color: #5A8DEE;
    text-align: center;
    position: relative;
    padding: 10px 0;
    animation: fadeInDown 1s ease;
    width: fit-content;
}

.section-titl.show {
    opacity: 1;
    transform: translateY(0);
}

.section-titl::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #2E2E4E;
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.section-titl.show::after {
    width: 60px;
}

/* Animation for heading */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Row layout */
.row-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    max-width: 1180px;
}



/* --- Product Slider --- */
.slider-sectionnn {
  padding-top: 25px;
  padding-bottom: 30px;
  background: #f9f9f9;
  overflow: hidden;
  width: 100%; /* changed from 1513px to make responsive */
}

/* Title Styling */
.slider-titleee {
  font-size: 36px;
  margin: 40px auto;
  color: #5A8DEE;
  text-align: center;
  position: relative;
  padding: 10px 0;
  animation: fadeInDown 1s ease;
  width: fit-content;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}

/* Active state (when in view or on load) */
.slider-titleee.show {
  opacity: 1;
  transform: translateY(0);
}

/* Underline effect */
.slider-titleee::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #2E2E4E;
  margin: 12px auto 0;
  border-radius: 2px;
  transition: width 0.6s ease;
}

/* Animate underline on load or scroll */
.slider-titleee.show::after {
  width: 60px;
}

/* Keyframe animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-containerrr { position:relative; overflow:hidden; height: 210px; }
.slider-trackkk { display:flex; will-change: transform; }
.slideee { flex:0 0 auto; width:250px; margin:0 10px; }
.product-carddd { background:#fff; border-radius:10px; overflow:hidden; text-align:center; box-shadow:0 4px 15px rgba(0,0,0,0.1); }
.product-carddd img { width:100%; display:block; }
.product-carddd h3 a { text-decoration:none; color:#333; }
/* .product-infoo { padding:10px; } */
.buy-btn { display:inline-block; padding:8px 15px; background:#ff3333; color:#fff; border-radius:5px; margin-top:10px; text-decoration:none; }
.buy-btn:hover { background:#cc2929; }
.arrow { position:absolute; top:50%; transform:translateY(-50%); font-size:2rem; color:#333; background:rgba(255,255,255,0.8); padding:5px 10px; border-radius:50%; cursor:pointer; z-index:10; }
.arrow.left { left:10px; }
.arrow.right { right:10px; }
@media(max-width:768px){ .slide{ width:100%; } }


/* --- Service Box --- */
.box {
    height: 270px;
    width: 22%;
    background-color: black;
    /* margin: 10px; */
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition:
        transform 0.6s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        opacity 0.6s ease;
}

.box.show {
    opacity: 1;
    transform: translateY(0);
}

.box:hover {
    background-color: #5A8DEE;
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.5);
}

.box img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.5s ease, opacity 0.5s ease;
    filter: grayscale(0%);
}

.box:hover img {
    transform: scale(1.1) translateY(-5px);
    opacity: 0.95;
}

.box h3 {
    font-family: system-ui;
    font-size: 15px;
    text-align: center;
    color: white;
       padding: 5px;
    padding-top: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0px;
}

.box:hover h3 {
    transform: translateY(-5px);
    opacity: 1;
}

/* ----------------- Responsive ----------------- */
@media screen and (max-width: 1024px) {
    .box {
        width: 45%;
        /* 2 boxes per row on tablets */
    }
}

@media screen and (max-width: 768px) {
    .box {
        width: 90%;
        /* 1 box per row on mobiles */
    }

    .service-section .section-titl {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .service-section .section-titl {
        font-size: 22px;
    }

    .box {
        height: 220px;
    }

    .box img {
        height: 160px;
    }

    .box h3 {
        font-size: 14px;
    }
}



/*** Service End ***/


/* icons */

.contact-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.contact-icon {
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-icon.phone {
  background-color: #007bff; /* Blue for Call */
}

/* .contact-icon:hover {
  transform: scale(1.1);
  background-color: #128c7e;
} */


/* Existing about-section styles remain the same */
.about-sectionn {
    background-color: #F9FAFB;
    padding: 80px 20px;
    overflow: hidden;
}

.about-containerr {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}



/* Section title animations */
.section-titleee {
    font-size: 32px;
    font-weight: 700;
    color: #5A8DEE;
    margin-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
    /* center the heading */
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
}


.section-titleee.show {
    opacity: 1;
    transform: translateY(0);
}

.section-titleee::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #2E2E4E;
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.section-titleee.show::after {
    width: 60px;
}

/* Paragraph animations */
.about-contenttt p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.about-contenttt p.show {
    opacity: 1;
    transform: translateY(0);
}



/* Responsive adjustments */
@media screen and (max-width: 1024px) {

    .about-contenttt{
        flex: 1 1 45%;
    }
}

@media screen and (max-width: 768px) {
    .about-containerr {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .section-titleee {
        font-size: 28px;
    }

    .about-contenttt p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .section-titleee {
        font-size: 22px;
    }

    .about-contenttt p {
        font-size: 14px;
    }

   
    
}
html, body {
    overflow-x: hidden !important;
}


/* Image styling with slide-in effect start */
.abouttt-image {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;             /* ✔ Prevents scrollbar */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: scale(1.05);        /* ✔ Safe animation */
    transition: all 0.5s ease-out;
}

/* When it appears */
.abouttt-image.show {
    opacity: 1;
    transform: scale(1);           /* ✔ Smooth reveal */
}

/* Image styling */
.abouttt-image img {
    width: 100%;
    height: auto;             /* ✔ Keep proportions */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Gradient overlay */
.abouttt-image .image-overlayy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.4), rgba(255, 193, 7, 0.2));
    pointer-events: none;
    transition: background 0.5s ease;
}

/* Hover zoom (if needed) */
.abouttt-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .abouttt-image {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .abouttt-image {
        width: 100%;
    }
}



/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: stagger delays via inline style or classes */

/* testimonial */
.testbg{
    background-image: url("/img/testimonialBG2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: 85px 20px;
}

/* testimonial */
.uc-testimonial-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 60px auto;
  font-family: 'Poppins', sans-serif;
}

.uc-testimonial-heading {
  text-align: center;
  font-size: 40px;
  margin-bottom: 25px;
  color: #5A8DEE ;
}

.uc-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  border-radius: 20px;
}

.uc-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.uc-slide {
  min-width: 100%;
  background: #ffffff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

.uc-client-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin-bottom: 12px;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.uc-review-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.uc-stars {
  font-size: 20px;
  color: #ffb400;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.uc-client-name {
  margin-top: 10px;
  font-weight: 600;
  color: #5A8DEE ;
}

/* ARROWS */
.uc-arrow {
  position: absolute;
  top: 45%;
  background: #5A8DEE ;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.uc-arrow:hover {
  background: #333;
  color: #5A8DEE ;
}

.uc-left { left: 10px; }
.uc-right { right: 10px; }

/* DOTS */
.uc-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.uc-dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s;
}

.uc-dots .uc-active {
  background: #5A8DEE;
  transform: scale(1.25);
}

/* Responsive */
@media (max-width: 600px) {
  .uc-arrow {
    font-size: 18px;
    padding: 8px 12px;
  }
}

/* About Section Container */
.about-section {
    max-width: 1150px;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Animate when visible */
.about-section.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Section Heading */
.about-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: #5A8DEE;
    position: relative;
}

/* Underline effect */
.about-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #2E2E4E;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.about-section h2:hover::after {
    transform: scaleX(1);
}

/* Paragraph Text */
.about-section p {
    line-height: 1.8;
    font-size: 18px;
    color: #333;
    text-align: justify;
    transition: color 0.5s ease, transform 0.5s ease;
}

/* Hover effect for paragraph */
.about-section:hover p {
    color: #2E2E4E;
    transform: translateY(-5px);
}

/* Smooth scroll fade in */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about end */


/* Working in Canada Visa Services start */

/* WRAPPER */
.bg-img-section {
    width: 100%;
    padding: 10px;
    background-image: url("/img/slider3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;  /* required */
    z-index: 1;
}

.bg-img-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.44); /* black overlay */
   
    z-index: -1;
}

/* Keep inner content above overlay */
.bg-img-section > * {
    position: relative;
    z-index: 2;
}


/* GLASS CONTAINER */
.contentt {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;

    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    position: relative;
    overflow: hidden;
}

/* GLASS LIGHT EFFECT */
.contentt::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(25deg);
    pointer-events: none;
}

/* HEADING */
.centerr {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    color: #2E2E4E;
    margin-bottom: 30px;
    animation: fadeSlideDown 1s ease forwards;
    opacity: 0;
}

.centerr::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #5A8DEE;
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.centerr:hover::after {
    transform: scaleX(1);
}

/* PARAGRAPH BOXES */
.sections {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;

    padding: 12px 18px;
    border-left: 4px solid #5A8DEE;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

/* Paragraph text */
.sections p {
    line-height: 1.75;
    font-size: 17px;
    color: #fff;
    margin: 0;
}

.sections.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FLOATING SHAPES */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(90, 141, 238, 0.22);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.shape1 { width: 90px; height: 90px; top: -40px; left: -40px; }
.shape2 { width: 140px; height: 140px; bottom: -70px; right: -70px; animation-delay: 1.5s; }
.shape3 { width: 70px; height: 70px; top: 180px; right: -30px; animation-delay: 3s; }

/* ANIMATIONS */
@keyframes fadeSlideDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-18px) translateX(18px); }
}

/* ============================================
   📱 MOBILE RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {

    .contentt {
        padding: 22px;
        margin: 20px auto;
    }

    .centerr {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .sections {
        padding: 10px 15px;
        border-left-width: 3px;
    }

    .sections p {
        font-size: 15px;
        line-height: 1.65;
    }

    /* Reduce shape sizes for mobile */
    .shape1 { width: 60px; height: 60px; top: -20px; left: -20px; }
    .shape2 { width: 90px; height: 90px; bottom: -40px; right: -40px; }
    .shape3 { width: 50px; height: 50px; top: 150px; right: -20px; }

}

@media (max-width: 480px) {

    .contentt {
        padding: 18px;
    }

    .centerr {
        font-size: 22px;
    }

    .sections p {
        font-size: 14.5px;
    }
}
/* Working in Canada Visa Services end */


.uc-loop {
    width: 100%;
    overflow: hidden;
    background: #5A8DEE;
   
    white-space: nowrap;
    position: relative;
  }

  .uc-track {
    display: inline-block;
    white-space: nowrap;
    animation: ucScroll 30s linear infinite;
  }

  .uc-item {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #2E2E4E;
    margin: 0 10px;
    display: inline-block;
  }

  @keyframes ucScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Mobile */
  @media (max-width: 600px) {
    .uc-item { font-size: 20px; margin: 0 25px; }
  }



/*   Family Members start*/

/* ===============================
   BACKGROUND SECTION
================================= */
.bg-image {
    width: 100%;
    min-height: 100vh;
    background-image: url("/img/slider4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 15px;

    position: relative;   /* required */
    z-index: 1;
}

.bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.44);  /* black overlay */
   
    z-index: -1;
}

/* keep your content above overlay */
.bg-image > * {
    position: relative;
    z-index: 2;
}


/* ===============================
   GLASS CONTENT BOX
================================= */
.content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 35px 30px;

    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

    position: relative;
    overflow: hidden;
}

.content::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(25deg);
    pointer-events: none;
}


/* ===============================
   HEADER
================================= */
.header {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    color: #2E2E4E;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(-40px);
    transition: all 1s ease-out;
}

.header.visible {
    opacity: 1;
    transform: translateY(0);
}

.header::after {
    content: '';
    width: 90px;
    height: 4px;
    background-color: #5A8DEE;
    display: block;
    margin: 15px auto 0;
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.header:hover::after {
    transform: scaleX(1);
}


/* ===============================
   PARAGRAPHS
================================= */
.content p {
    font-size: 17px;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 20px;
    transition: color 0.4s ease, transform 0.4s ease;
}




/* ===============================
   BULLET LIST
================================= */
.list {
    list-style-type: none;
    padding-left: 0;
}

.list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
    line-height: 1.7;

    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease-out;
}

.list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.list li:before {
    content: "🍁";
    margin-right: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.list li:hover:before {
    transform: scale(1.3) rotate(12deg);
}


/* ===============================
   FOOTER GLASS BOX
================================= */
.footerr {
    max-width: 1050px;
    margin: 35px auto 0;
    padding: 18px 12px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);

    text-align: center;
    font-size: 15px;
    color: #fff;

    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s ease-out;
}

.footerr.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-text:hover {
    color: #2E2E4E;
}


/* ===============================
   📱 RESPONSIVE DESIGN
================================= */

@media (max-width: 900px) {
    .content {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {

    .header {
        font-size: 30px;
    }

    .content {
        padding: 25px 20px;
        margin-top: 20px;
    }

    .content p {
        font-size: 16px;
    }

    .list li {
        font-size: 15px;
    }

    .footerr {
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width: 480px) {

    .header {
        font-size: 26px;
    }

    .content {
        padding: 20px 15px;
    }

    .content p {
        font-size: 15px;
    }

    .list li {
        font-size: 14px;
    }
}

  /* Family Members end */

/* Header */
/* Shared animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}


 .immg-loop-box {
      width: 100%;
      overflow: hidden;
      background: #5A8DEE;

      white-space: nowrap;

      position: relative;
    }

    .immg-loop-strip {
      display: inline-block;
      white-space: nowrap;
      animation: immgReverseScroll 30s linear infinite;
    }

    .immg-loop-item {
      font-size: 20px;
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      color: #2E2E4E;
      margin: 0 10px;
      display: inline-block;
    }

    /* 🔄 REVERSE animation */
    @keyframes immgReverseScroll {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    @media (max-width: 600px) {
      .immg-loop-item {
        font-size: 20px;
        margin: 0 25px;
      }
    }

/* Employer Section start */
 /* ===========================
   BACKGROUND SECTION
=========================== */
.bg-employer {
  width: 100%;
  min-height: 100vh;
  background-image: url("/img/slider5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative; /* required */
  z-index: 1;
}

.bg-employer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44); /* black overlay */

  z-index: -1;
}


/* ===========================
   GLASS CONTENT BOX
=========================== */
.employer-content {
  width: 100%;
  max-width: 1050px;
  padding: 30px 35px;

  /* background: rgba(0, 0, 0, 0.18); */
      background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  transform: translateY(40px);
  opacity: 0;
  transition: all 0.9s ease-out;
}

.employer-content.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===========================
   HEADER
=========================== */
.employer-header {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  color: #2E2E4E;
  margin-bottom: 25px;
  position: relative;
}

.employer-header::after {
  content: "";
  width: 110px;
  height: 4px;
  background-color: #5A8DEE;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.employer-header:hover::after {
  transform: scaleX(1);
}

/* ===========================
   PARAGRAPHS
=========================== */
.employer-content p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.7;
  transition: color 0.4s ease;
}



/* ===========================
   TWO COLUMN IMAGE + TEXT
=========================== */
.employer-two-column {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 25px 0;
  flex-wrap: nowrap;
}

.employer-two-column img {
  max-width: 40%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.employer-two-column p {
  flex: 1;
}

/* ===========================
   FULL RESPONSIVE DESIGN
=========================== */

/* Tablets */
@media (max-width: 992px) {
  .employer-header {
    font-size: 32px;
  }

  .employer-two-column img {
    max-width: 45%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .employer-content {
    padding: 20px 18px;
  }

  .employer-header {
    font-size: 28px;
  }

  .employer-two-column {
    flex-direction: column;
    text-align: center;
  }

  .employer-two-column img {
    max-width: 80%;
  }

  .employer-two-column p {
    text-align: left;
  }

  .bg-employer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .employer-header {
    font-size: 25px;
  }

  .employer-content p {
    font-size: 15px;
  }

  .employer-two-column img {
    max-width: 100%;
  }
}
 
/* Employer Section end */

/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}

/*** copyright end ***/



