* {
  margin: 0;
  padding: 0;
}

/* form errors start */
/* header start */
/* Footer start */
/* announcementbar start */
/* hero section start */
/* about section start */
/* service section start */
/* accreditations section start */
/* cta section start */
/* about page start */
/* service page start */
/* contact page start */





/* fom error start */
.is-valid {
  border-color: #28a745 !important;
}

.is-invalid {
  border-color: #dc3545 !important;
}
 

/* announcementbar start */
.header__secondary {
  background: #f7f7f7;
  padding: 15px 0;
  border-bottom: 1px solid #e1e1e1;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Flexbox Layout */
.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Contact Info */
.top-bar-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-bar-content li {
  display: flex;
  align-items: center;
  color: #001837;
  margin-right: 20px;
  font-size: 12px;
}

.top-bar-content li i {
  font-size: 15px;
  margin-right: 8px;
  color: #6382f7;
}

.top-bar-content li a {
  color: #001837;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-content li a:hover {
  color: #6382f7;
}

/* Social Links */
.secondary__social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.secondary__social li a {
  font-size: 16px;
  color: #5c5c5c;
  transition: color 0.3s, transform 0.2s;
}

.secondary__social li a:hover {
  color: #6382f7;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .secondary__social {
    justify-content: flex-start;
  }
}


/* header start */
  .fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050; /* Higher than offcanvas default */
  background: #fff; /* Ensure solid background */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
}

/* Extra Section (Contact + Social + Button) */
.navbar-extra {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.navbar-extra ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.navbar-extra ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.navbar-extra i {
  margin-right: 6px;
  color: #6382f7;
  font-size: 15px;
}

.navbar-extra a {
  color: #001837;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-extra a:hover {
  color: #6382f7;
}

/* Social Links */
.navbar-extra .social {
  flex-direction: row;
  gap: 15px;
}

.navbar-extra .social a {
  font-size: 16px;
  color: #5c5c5c;
  transition: color 0.3s, transform 0.2s;
}

.navbar-extra .social a:hover {
  color: #6382f7;
  transform: scale(1.1);
}

.nav-link:hover,
.nav-link:focus {
  color: #6382f7 !important;
}

.dropdown-menu {
  border: none;
}


.nav-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.nav-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.nav-btn i {
  font-size: 14px;
  transition: transform 0.3s;
  color: #fff !important;
}

.nav-btn:hover i {
  transform: translateX(5px);
}




/* Base nav link style */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  transition: color 0.3s;
  padding-bottom: 8px;
  /* give space for underline */
}

/* Default hidden underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  /* position just below text */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #6382f7;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Show underline on hover & active */

/* .navbar-nav .nav-link.active::after, */
.navbar-nav .nav-link:hover::after {
  width: 75%;
  /* adjust to control underline length */
}

@media (max-width: 991px) {
  .navbar-nav .nav-link::after {
    display: none !important;
  }
}

/* Desktop Layout */
@media (min-width: 992px) {
  .navbar-extra {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    gap: 25px;
  }

  .navbar-extra ul {
    flex-direction: row;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}



/* hero section start*/
.hero-section {
  position: relative;
  top: 50px;
  padding: 150px 0;
  /* background: #555 url("images/hero-background.webp") center/cover no-repeat; */
  /* background: #555 url("images/hero-background-1.jpg") center/cover no-repeat; */
  background: #555 url("../images/hero-background-2.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  height: 82vh;
}

/* Gradient Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(146deg, rgba(28, 25, 89, 0.95) 35%, rgba(28, 25, 89, 0) 100%);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffce54;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* CTA Button */
.hero-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.hero-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.hero-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.hero-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }
}

/* SVG Shape */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.hero-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  fill: #fff;
}






/* about section start */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.about-content h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  /* color: #ffce54; */
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* CTA Button */
.about-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.about-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.about-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.about-btn:hover i {
  transform: translateX(5px);
}


/* Form Card */
.form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  top: -160px;
  position: relative;
  z-index: 3;
  box-shadow: 0px 0px 40px #b3b3b3;
}

.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #001837;
  text-align: center;
}

/* Inputs */
.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #6382f7;
  box-shadow: 0 0 0 0.25rem rgba(99, 130, 247, 0.2);
}

/* Submit Button */
.form-btn {
  background: #6382f7;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.form-control {
  background-color: #F7F7F7;
}

.form-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.form-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.form-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .form-card {
    position: static;
    top: 0;
    margin-top: 30px;
    /* add spacing below content */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* softer shadow */
  }

  .form-cont {
    text-align: left;
  }

  .about-section {
    text-align: center;
  }

  .form-card {
    margin-top: 30px;
  }

  .about-content h2 {
    text-align: center;
    font-size: 32px;
  }


  .about-content h1 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 100px 0;
    text-align: start;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* service section start */
.service-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.service-content h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6382f7;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #001837;
}

.service-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.service-btn {
  background: #6382f7;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.service-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(4px);
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #001837;
}

.service-card .service-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* .service-footer p {
  text-align: justify;
} */

.service-card p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  color: #666;
}

.service-card a {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #6382f7;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.service-card a:hover {
  background: #4058d7;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .service-content h2 {
    font-size: 28px;
  }

  .service-content p {
    font-size: 16px;
  }

  .service-btn {
    width: 100%;
  }
}


/* accreditations section start */
.accreditations-section {
  padding: 80px 0;
}

.accreditations-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #1c1958;
  position: relative;
  display: inline-block;
}

.accreditations-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #6382f7;
  border-radius: 2px;
}

/* Slider Images */
.accreditations-slider img {
  max-height: 90px;
  width: auto;
  margin: 0 auto;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  /* transition: all 0.3s ease; */
}

/* .accreditations-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  } */

/* Hide arrows */
.slick-prev,
.slick-next {
  display: none !important;
}

/* Dots */
.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #6382f7;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #4058d7;
}

@media (max-width: 991) {
  .accreditations-content h2 {
    font-size: 32px;
  }
}



/* cta section start */
.cta-section {
  background: linear-gradient(135deg, #1c1958 0%, #6484f7 100%);
  padding: 20px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffce54;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */
.cta-btn {
  background: #fff;
  color: #1c1958;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

.cta-btn:hover {
  background: #ffce54;
  color: #1c1958;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }
}






/* about page start */
.about-section-1 {
  position: relative;
  top: 50px;
  padding: 150px 0;
  /* background: #555 url("images/hero-background.webp") center/cover no-repeat; */
  background: #555 url("../images/hero-background-1.jpg") center/cover no-repeat;
  /* background: #555 url("images/hero-background-2.jpg") center/cover no-repeat; */
  color: #fff;
  overflow: hidden;
  height: 82vh;
}

/* Gradient Overlay */
.about-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(146deg, rgba(28, 25, 89, 0.95) 35%, rgba(28, 25, 89, 0) 100%);
  z-index: 1;
}

/* Content */
.about-content-1 {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.about-content-1 h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffce54;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-content-1 h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content-1 p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* CTA Button */
.about-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.about-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.about-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.about-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 100px 0;
    text-align: start;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-content-1 h1 {
    font-size: 32px;
  }

  .about-content-1 p {
    font-size: 16px;
  }

  .about-content-2 h2 {
    font-size: 32px;

  }
}

/* SVG Shape */
.about-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.about-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  fill: #fff;
}






/* about section-2 */

.about-content-2 {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.about-content-2 h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-content-2 h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content-2 p {
  font-size: 18px;
  margin-bottom: 30px;
}


/* Responsive */
@media (max-width: 991px) {

  .about-section-2 {
    text-align: start;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-section-2 {
    padding: 100px 0;
    /* text-align: center; */
  }

  .about-content-2 h2 {
    text-align: center;
    font-size: 32px;
  }

  .about-content-2 h1 {
    font-size: 32px;
  }

  .about-content-2 p {
    font-size: 16px;
  }
}





/* about section 3 */

.about-section-3 {
  background: #f9f9f9;
}

.section-3-title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-3-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #4058d7;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-3-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

.about-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.about-card i {
  font-size: 2rem;
  color: #4058d7;
  margin-bottom: 12px;
}

.about-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}




/* about section 4 */
.form-card-about {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #001837;
  text-align: center;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
  background-color: #F7F7F7;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #6382f7;
  box-shadow: 0 0 0 0.25rem rgba(99, 130, 247, 0.2);
}

.form-btn {
  background: #6382f7;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.form-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.form-btn:hover i {
  transform: translateX(4px);
}

/* Testimonials */
.testimonial-slider {
  text-align: center;
}

.testimonial-slider div {
  border-radius: 12px;
  text-align: center;
  margin: 15px;
}

.testimonial-slider p {
  font-style: italic;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-slider h5 {
  font-weight: 600;
  color: #001837;
  font-size: 15px;
}

/* Section Title */
.about-section-4 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

/* Slick Custom Arrows */
.slick-prev:before,
.slick-next:before {
  color: #6382f7;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 991px) {
  .form-card-about {
    position: static;
    top: 0;
    margin-top: 30px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  }

  .about-section-4 {
    text-align: center;
  }
}



/* service page start */
.service-section-page {
  position: relative;
  top: 50px;
  padding: 150px 0;
  /* background: #555 url("images/hero-background.webp") center/cover no-repeat; */
  background: #555 url("../images/hero-background-1.jpg") center/cover no-repeat;
  /* background: #555 url("images/hero-background-2.jpg") center/cover no-repeat; */
  color: #fff;
  overflow: hidden;
  height: 82vh;
}

/* Gradient Overlay */
.service-section-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(146deg, rgba(28, 25, 89, 0.95) 35%, rgba(28, 25, 89, 0) 100%);
  z-index: 1;
}

/* Content */
.service-content-page {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.service-content-page h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffce54;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-content-page h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-content-page p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* CTA Button */
.service-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.service-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.service-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .service-section-page {
    padding: 100px 0;
    text-align: center;
  }


  .service-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .service-content-page h1 {
    font-size: 32px;
  }

  .service-content-page p {
    font-size: 16px;
  }
}

/* SVG Shape */
.service-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.service-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  fill: #fff;
}






/* service section-2 */

.service-content-2 {
  position: relative;
  z-index: 2;
  /* max-width: 600px; */
}

.service-content-2 h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-content-2 h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-content-2 p {
  font-size: 18px;
  margin-bottom: 30px;
}


/* Responsive */
@media (max-width: 991px) {

  .service-section-2 {
    text-align: center;
  }

  .service-content-2 h1 {
    font-size: 32px;
  }

  .service-content-2 h2 {
    font-size: 32px;
  }



  .service-content-2 p {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-section-2 {
    padding: 100px 0;
    text-align: center;
  }


}





/* service section 3 */

.service-card-page {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card-page i {
  font-size: 40px;
  color: #6382f7;
  margin-bottom: 15px;
}

.service-card-page h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #001837;
  margin-bottom: 10px;
}

.service-card-page p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.service-card-page:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive Fix */
@media (max-width: 767px) {
  .service-card-page {
    margin-bottom: 20px;
  }
}



@media (max-width: 991px) {
  .service-card-page h3 {
    font-size: 32px;
  }

  .service-card-page p {
    font-size: 16px;
  }
}





/* service section 4 */
.form-card-service {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #001837;
  text-align: center;
  margin-bottom: 20px;
}

.form-cont {
  text-align: start;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
  background-color: #F7F7F7;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #6382f7;
  box-shadow: 0 0 0 0.25rem rgba(99, 130, 247, 0.2);
}

.form-btn {
  background: #6382f7;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.form-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.form-btn:hover i {
  transform: translateX(4px);
}

/* Testimonials */
.testimonial-slider {
  text-align: center;
}

.testimonial-slider div {
  border-radius: 12px;
  text-align: center;
  margin: 15px;
}

.testimonial-slider p {
  font-style: italic;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-slider h5 {
  font-weight: 600;
  color: #001837;
  font-size: 15px;
}

/* Section Title */
.service-section-4 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

/* Slick Custom Arrows */
/* .slick-prev:before,
        .slick-next:before {
            color: #6382f7;
            font-size: 22px;
        } */

/* Responsive */
@media (max-width: 991px) {
  .form-card-service {
    position: static;
    top: 0;
    margin-top: 30px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  }

  .service-section-4 {
    text-align: center;
  }
}





/* section 5 */

.service-section-5 {
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #6382f7;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

/* Accordion Styles */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: #fff;
  color: #001837;
  font-weight: 600;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: #6382f7;
  color: #fff;
}

.accordion-button::after {
  filter: invert(40%) sepia(80%) saturate(200%) hue-rotate(210deg);
}

.accordion-body {
  background: #fff;
  padding: 15px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
}







/* contact page start */
.contact-section {
  position: relative;
  top: 50px;
  padding: 150px 0;
  /* background: #555 url("images/hero-background.webp") center/cover no-repeat; */
  background: #555 url("../images/hero-background-1.jpg") center/cover no-repeat;
  /* background: #555 url("images/hero-background-2.jpg") center/cover no-repeat; */
  color: #fff;
  overflow: hidden;
  height: 82vh;
}

/* Gradient Overlay */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(146deg, rgba(28, 25, 89, 0.95) 35%, rgba(28, 25, 89, 0) 100%);
  z-index: 1;
}

/* Content */
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.contact-content h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffce54;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* CTA Button */
.contact-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.contact-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.contact-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.contact-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 100px 0;
    text-align: center;
  }


  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .contact-content h1 {
    font-size: 32px;
  }

  .contact-content p {
    font-size: 16px;
  }
}

/* SVG Shape */
.contact-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.contact-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  fill: #fff;
}

.contact-1-section {
  padding: 100px 0;
  position: relative;
}

.contact-1-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-1-content:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.12);
}

.contact-1-content h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6382f7;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-1-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #001837;
}

.contact-1-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

/* Info blocks */
.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-box i {
  font-size: 20px;
  color: #6382f7;
  background: rgba(99, 130, 247, 0.1);
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-box a,
.contact-info-box p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.contact-info-box a:hover {
  color: #4058d7;
}

/* CTA Button */
.contact-1-btn {
  background: #6382f7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 10px;
}

.contact-1-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.contact-1-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.contact-1-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-1-content {
    text-align: center;
  }

  .contact-1-section::after,
  .contact-1-section::before {
    display: none;
  }
}

/* Form Card */
.form-card-contact {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  top: -160px;
  position: relative;
  z-index: 3;
  box-shadow: 0px 0px 40px #b3b3b3;
}

.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #001837;
  text-align: center;
}

/* Inputs */
.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #6382f7;
  box-shadow: 0 0 0 0.25rem rgba(99, 130, 247, 0.2);
}

/* Submit Button */
.form-btn {
  background: #6382f7;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.form-control {
  background-color: #F7F7F7;
}

.form-btn:hover {
  background: #4058d7;
  transform: translateY(-2px);
}

.form-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.form-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .form-card-contact {
    position: static;
    top: 0;
    margin-top: 30px;
    /* add spacing below content */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* softer shadow */
  }

  .form-cont {
    text-align: left;
  }

  .contact-1-section {
    text-align: center;
  }

  .form-card-contact {
    margin-top: 30px;
  }

  .contact-1-content h2 {
    text-align: center;
    font-size: 32px;
  }


  .contact-1-content h1 {
    font-size: 32px;
  }

  .contact-1-content p {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-1-section {
    padding: 100px 0;
    text-align: start;
  }

  .contact-1-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer start */
footer {
  background: #1c1958;
  color: #ddd;
  padding: 70px 0 40px;
  font-size: 15px;
  line-height: 1.8;
}

footer img {
  max-width: 180px;
  margin-bottom: 20px;
}

footer h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

footer h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #6382f7;
  margin-top: 8px;
  border-radius: 2px;
}

footer p {
  color: #ccc;
}

/* Social Links */
footer .social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #ccc;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  transition: all 0.3s ease;
}

footer .social-links a:hover {
  background: #6382f7;
  color: #fff;
  transform: translateY(-2px);
}

/* Lists */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #6382f7;
}

/* Contact Info */
footer .contact-info i {
  margin-right: 10px;
  color: #6382f7;
}

footer .contact-info a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-top: 5px;
  transition: color 0.3s;
}

footer .contact-info a:hover {
  color: #6382f7;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer h5::after {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

}