:root {
  --primary-color: #00c2cb;
  --secondary-color: #f9b707;
  --accent-color: #ff6b6b;
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #6c757d;
  --white: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 600;
}
.fs-14 {
  font-size: 14px;
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: var(--primary-color);
}
.color-primary {
  color: var(--primary-color) !important;
}
.color-secondary {
  color: var(--secondary-color) !important;
}
.color-accent {
  color: var(--accent-color) !important;
}
.object-fit-cover {
  object-fit: cover;
}

/* form  */
.form-control,
.form-select {
  padding: 10px 15px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

label {
  font-weight: 500;
}
/* Accordion styling */
.accordion-button:not(.collapsed) {
  background-color: rgba(0, 194, 203, 0.1);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 194, 203, 0.25);
}
.btn-close {
  transition: all 0.5s ease;
}

.btn-close:hover {
  transform: rotate(90deg) !important;
}
.text-justify {
  text-align: justify !important;
}

/* Header Styles */
.navbar {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
}

.navbar-brand img {
  height: 45px;
  transition: all 0.3s;
}

.navbar.scrolled .navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  padding: 8px 15px;
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  color: var(--dark-color) !important;
  padding: 8px 20px;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: white !important;
  transform: translateX(5px);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #00a8b0;
  border-color: #00a8b0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  /* padding: 10px 25px; */
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(249, 183, 7, 0.3);
  color: white;
}

/* Banner Slider Styles */
.banner-section {
  padding: 0;
  margin-top: 80px;
  position: relative;
}

.banner-slide {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 203, 0.8) 0%,
    rgba(249, 183, 7, 0.6) 100%
  );
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  z-index: 2;
}

.banner-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Demo Login Section */
.demo-login-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.demo-login-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 194, 203, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.demo-login-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(249, 183, 7, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
}

.login-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.login-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.login-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.login-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(249, 183, 7, 0.1);
  border-radius: 50%;
}

.feature-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--text-light);
}

/* Modules Section */
.modules-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.modules-section::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 194, 203, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.module-category {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.module-category h3 {
  color: var(--dark-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  font-size: 1.8rem;
}

.module-category h3 i {
  margin-right: 10px;
  color: var(--primary-color);
}

.module-item {
  background-color: white;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
  border-left: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.module-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 194, 203, 0.1);
  transition: width 0.3s;
  z-index: -1;
}

.module-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.module-item:hover::before {
  width: 100%;
}

.module-item i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .banner-content h2 {
    font-size: 2.5rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .banner-slide {
    height: 500px;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 767.98px) {
  .banner-slide {
    height: 450px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .login-card,
  .feature-card {
    padding: 30px 20px;
  }
}

@media (max-width: 575.98px) {
  .banner-slide {
    height: 400px;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .navbar-brand img {
    height: 35px;
  }
}

/* Owl Carousel Custom Styles */
.banner-section .owl-carousel .owl-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.banner-section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s;
}

.banner-section .owl-carousel .owl-nav button:hover {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.banner-section .owl-carousel .owl-nav .owl-next {
  margin-right: 30px;
}

.banner-section .owl-carousel .owl-nav .owl-prev {
  margin-left: 30px;
}

.banner-section .owl-carousel .owl-nav button i {
  color: white;
  font-size: 1.5rem;
}

.banner-section .owl-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}

.banner-section .owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.banner-section .owl-carousel .owl-dots .owl-dot.active span {
  background: white;
  width: 30px;
  border-radius: 10px;
}

.banner-section .owl-carousel .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.8);
}

/* statistics section start */

.parallax {
  background: url("../images/banner/banner1.jfif");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  min-height: 280px;
  position: relative;
}

.parallax:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  background-image: linear-gradient(
    127deg,
    var(--primary-color) 0%,
    var(--secondary-color) 91%
  );
  z-index: 2;
}

.parallax .parallax-content {
  position: relative;
  z-index: 3;
}

.parallax .parallax-content .count-item {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.parallax .parallax-content .count-item:hover strong {
  margin-top: 60px;
}

.parallax .parallax-content .count-item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #fff;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
}

.parallax .parallax-content .count-item:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #fff;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
}

.parallax .parallax-content .count-item strong {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 1.72px;
  margin-bottom: 10px;
  color: #fff;
  margin-top: 70px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.parallax .parallax-content .count-item span {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.86px;
}

.parallax .parallax-content .info {
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}

.parallax .parallax-content .info p {
  letter-spacing: 1px;
  margin-top: 80px;
  margin-bottom: 60px;
}

.parallax .parallax-content .info p span {
  text-decoration: underline;
}

.parallax .parallax-content .info .btn-white-line {
  margin: auto;
}

@media (max-width: 991px) {
  .home-services-item.mtop-70 {
    margin-top: 30px !important;
  }

  .services-section {
    margin-top: 0px !important;
  }

  .team-item {
    cursor: pointer;
  }

  .parallax .parallax-content .count-item {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .parallax .parallax-content .count-item:hover strong {
    margin-top: 0px;
  }

  .parallax .parallax-content .count-item:before {
    display: none;
  }

  .parallax .parallax-content .count-item:after {
    width: 40px;
    height: 1px;
  }

  .parallax .parallax-content .count-item strong {
    margin-top: 0px;
  }

  .parallax .parallax-content .info .btn-white-line {
    margin-bottom: 80px;
  }
}

/* statistics section end */

/* Pricing Section start */
.pricing-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.pricing-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
}

.pricing-card.popular::after {
  content: "Special Offer";
  position: absolute;
  top: 25px;
  right: -30px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-period {
  color: var(--text-light);
  margin-bottom: 15px;
}

.pricing-period del {
  color: var(--text-light);
  margin-right: 5px;
}

.pricing-features {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-option {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
/* Pricing Section end*/

/* Testimonials Section start */
.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonial-card {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  margin: 15px;
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 5rem;
  color: rgba(0, 194, 203, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.author-info h5 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonials-section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.testimonials-section .owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color) !important;
  transition: all 0.3s;
}

.testimonials-section .owl-carousel .owl-nav button:hover {
  background-color: var(--secondary-color) !important;
}

.testimonials-section .owl-carousel .owl-nav button i {
  color: white;
  font-size: 1rem;
}
/* Testimonials Section end */

/* About Us Page Start */
/* About us section start */
.about-section {
  padding: 100px 0;
}
/* about us section end */

/* vision-mission section start */

.mission-vision {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.mission-vision .mission,
.mission-vision .vision {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  padding: 30px;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-vision .mission {
  border-top: 5px solid var(--primary-color);
}

.mission-vision .vision {
  border-top: 5px solid var(--secondary-color);
}

/* vision-mission section end */

/* About Us Page End */

/* Demo page start */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.bg-accent {
  background-color: var(--accent-color);
}

.text-accent {
  color: var(--accent-color);
}
/* Demo page end */
