@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  height: 70vh; /* Adjust height as needed */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 12px;
}

.carousel-caption {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 45px 0; /* Customizable padding */
  z-index: 2;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 69, 227, 0.5); /* You can change the color to match your design */
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.carousel-caption h5 {
  font-size: 2rem; /* Larger font size for the heading */
  font-weight: bold;
  margin: 0 0 10px;
  color: #fff;
}
.carousel-caption p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  color: #ddd;
  font-style: italic;
}

.hero-about {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/assets/about-hero.jpg") center/cover no-repeat;
  margin-bottom: 4rem;
}
.hero-about .container {
  position: relative;
  z-index: 2;
}
.hero-about h1 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out forwards;
}
.hero-about .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero-about {
    min-height: 50vh;
  }
  .hero-about h1 {
    font-size: 2.5rem;
  }
  .hero-about .lead {
    font-size: 1.1rem;
  }
}

#about {
  padding: 4rem 0;
}
#about h2 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
#about img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #about {
    padding: 2rem 0;
  }
  #about h2 {
    font-size: 2rem;
  }
  #about img {
    height: 300px;
    margin-top: 1.5rem;
  }
}

.about-us {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
}
.about-us .about-title {
  color: #2c3e50;
  font-weight: 700;
  border-bottom: 3px solid #DE0000;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}
.about-us .about-title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.about-us .about-title a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #DE0000;
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}
.about-us .about-title a:hover {
  color: #DE0000;
  transform: scale(1.05);
}
.about-us .about-title a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .about-us .about-title {
    font-size: 2rem;
  }
}
.about-us .about-text {
  color: #2c3e50;
  line-height: 1.8;
  text-align: justify;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.about-us img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.about-us img:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .about-us {
    padding: 2rem 0;
  }
  .about-us .float-md-start {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
  }
  .about-us img {
    height: 300px;
    margin-bottom: 1.5rem;
  }
  .about-us .about-text {
    padding-left: 1rem;
    font-size: 1rem;
  }
  .about-us .about-text::before {
    width: 6px;
    height: 6px;
  }
}

.more-btn-wrapper {
  display: inline;
}

.about-btn {
  display: inline-block;
  margin-left: 10px;
  vertical-align: baseline;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #DE0000 0%, #920000 100%);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}
.about-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #c50000 0%, #5f0000 100%);
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);
}
.about-btn:active {
  transform: translateY(1px);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.about-btn::after {
  content: " →";
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease-in-out;
}
.about-btn:hover::after {
  transform: translateX(5px);
}

.services-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
}
.services-section .section-title {
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.services-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #DE0000;
}
.services-section .service-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.services-section .service-icon {
  width: 120px;
  height: 120px;
  margin: -60px auto 1rem;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}
.services-section .service-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.services-section .service-content {
  text-align: center;
  padding: 1rem;
}
.services-section .service-content .service-heading {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}
.services-section .service-content .service-text {
  color: #7f8c8d;
  line-height: 1.6;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .services-section .service-icon {
    width: 60px;
    height: 60px;
    margin: -40px auto 1rem;
  }
  .services-section .service-content .service-heading {
    font-size: 1.1rem;
  }
  .services-section .service-content .service-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .services-section .service-icon {
    width: 50px;
    height: 50px;
    margin: -30px auto 1rem;
  }
}

.contact-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}
.contact-section .contact-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0045e3;
}
.contact-section .contact-img {
  border-radius: 35px;
  max-width: 60%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-section form .form-control {
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  transition: 0.3s ease-in-out;
}
.contact-section form .form-control:focus {
  border-color: #0045e3;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}
.contact-section form textarea {
  resize: none;
  height: 120px;
}
.contact-section form button {
  width: 290px;
  height: 71px;
  padding: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #0045e3;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}
.contact-section form button:hover {
  background-color: #0035b0;
}
@media (max-width: 768px) {
  .contact-section form button {
    width: 80%;
    height: auto;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-section form button {
    width: 100%;
    height: 60px;
    font-size: 0.9rem;
  }
}

.amenities-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
}
.amenities-section h2 a {
  color: #2c3e50;
  font-weight: 700;
  border-bottom: 3px solid #DE0000;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  .amenities-section h2 a {
    font-size: 2rem;
  }
}
.amenities-section .lead {
  color: #2c3e50;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.amenities-section ul {
  list-style: none;
  padding-left: 1.5rem;
}
.amenities-section ul li {
  color: #2c3e50;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.amenities-section ul li::before {
  content: "•";
  color: #DE0000;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
}
.amenities-section .amenities-image {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.amenities-section .amenities-image:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .amenities-section {
    padding: 2rem 0;
  }
  .amenities-section .amenities-image {
    height: 300px;
    margin-bottom: 2rem;
  }
  .amenities-section .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .amenities-section .amenities-image {
    height: 250px;
  }
}

.copyright-section {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  font-size: 1rem;
  text-align: center;
  border-top: 1px solid #444;
}

.footer-section {
  background-color: #0045e3;
  color: #fff;
  padding: 50px 0;
}
.footer-section .footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-section p {
  font-size: 1rem;
  margin: 0 0 10px;
}
.footer-section .footer-links {
  list-style: none;
  padding: 0;
}
.footer-section .footer-links li {
  margin-bottom: 10px;
}
.footer-section .footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-section .footer-links li a:hover {
  color: #7da5ff;
}
.footer-section .footer-logo {
  width: 120px;
  margin-bottom: 15px;
}
.footer-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.footer-section .social-icons .social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-section .social-icons .social-icon i {
  font-size: 1.2rem;
  color: #fff;
}
.footer-section .social-icons .social-icon:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .footer-section .col-md-4 {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-section .social-icons {
    justify-content: center;
  }
}

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0045e3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}
.back-to-top-btn:hover {
  background-color: #0035b0;
}
.back-to-top-btn i {
  margin-top: 2px;
}

.show {
  display: flex;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .container {
  max-width: 1600px;
  padding: 0 2rem;
}
.navbar .navbar-brand {
  font-family: "Merriweather", serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .navbar-brand:hover {
  transform: scale(1.02);
}
.navbar .navbar-brand:hover img {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 69, 227, 0.2);
}
.navbar .navbar-brand:hover .company-name-top,
.navbar .navbar-brand:hover .company-name-bottom {
  font-family: inherit;
}
.navbar .navbar-brand:hover .company-name-top {
  color: #0032a6;
  text-shadow: 0 2px 4px rgba(0, 69, 227, 0.1);
}
.navbar .navbar-brand img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  padding: 3px;
  background: white;
}
.navbar .navbar-brand .company-name-top {
  font-size: 0.95rem;
  line-height: 1.1;
  transition: color 0.3s ease;
}
.navbar .navbar-brand .company-name-bottom {
  font-size: 0.65rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.navbar .nav-item {
  position: relative;
  margin: 0 0.2rem;
}
.navbar .nav-item .nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0045e3 !important;
  padding: 0.5rem 0.8rem !important;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1400px) {
  .navbar .nav-item .nav-link {
    font-size: 15px !important;
  }
}
.navbar .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0032a6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-item .nav-link:hover {
  color: #0032a6 !important;
  transform: translateY(-2px);
}
.navbar .nav-item .nav-link:hover::after {
  width: 100%;
  left: 0;
}
.navbar .nav-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding-top: 12px;
  width: 220px;
}
.navbar .nav-item.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.navbar .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.1s;
}
.navbar .nav-item.dropdown .dropdown-item {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-item.dropdown .dropdown-item:hover {
  padding-left: 2rem !important;
  background: linear-gradient(90deg, rgba(0, 69, 227, 0.08) 0%, rgb(255, 255, 255) 100%);
}
.navbar .cta-button {
  font-size: 0.9rem;
  padding: 0.6rem 1.8rem !important;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.navbar .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}
.navbar .cta-button:hover {
  transform: translateY(-2px);
}
.navbar .cta-button:hover::before {
  left: 100%;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 12px;
  }
  .navbar .nav-link {
    font-family: "Open Sans", sans-serif !important;
    font-size: 1rem !important;
    padding: 0.75rem 1rem !important;
  }
  .navbar .cta-button {
    margin-top: 1rem;
    width: 100%;
  }
}

body {
  padding-top: 80px;
}
@media (max-width: 992px) {
  body {
    padding-top: 70px;
  }
}

.terms-section, .privacy-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
  padding: 6rem 0 4rem;
}
.terms-section .terms-hero, .privacy-section .terms-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.terms-section .terms-hero .terms-title, .privacy-section .terms-hero .terms-title {
  color: #2c3e50;
  font-weight: 700;
  border-bottom: 3px solid #DE0000;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.terms-section .terms-hero .lead, .privacy-section .terms-hero .lead {
  color: #7f8c8d;
  font-size: 1.2rem;
}
.terms-section .terms-toc, .privacy-section .terms-toc {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}
.terms-section .terms-toc .toc-title, .privacy-section .terms-toc .toc-title {
  color: #2c3e50;
  font-weight: 600;
  border-left: 4px solid #DE0000;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.terms-section .terms-toc .nav, .privacy-section .terms-toc .nav {
  flex-direction: column;
  gap: 0.5rem;
}
.terms-section .terms-toc .toc-link, .privacy-section .terms-toc .toc-link {
  color: #7f8c8d;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.terms-section .terms-toc .toc-link:hover, .privacy-section .terms-toc .toc-link:hover, .terms-section .terms-toc .toc-link.active, .privacy-section .terms-toc .toc-link.active {
  color: #fff;
  background: #DE0000;
}
.terms-section .terms-content, .privacy-section .terms-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}
.terms-section .terms-content .term-group, .privacy-section .terms-content .term-group {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(127, 140, 141, 0.1);
}
.terms-section .terms-content .term-group:last-child, .privacy-section .terms-content .term-group:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.terms-section .terms-content .term-heading, .privacy-section .terms-content .term-heading {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.8rem;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.terms-section .terms-content .term-heading::before, .privacy-section .terms-content .term-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 1.2rem;
  height: 1.2rem;
  background: #DE0000;
  border-radius: 3px;
}
.terms-section .terms-content .term-text, .privacy-section .terms-content .term-text {
  color: #333333;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.terms-section .terms-content .term-list, .privacy-section .terms-content .term-list {
  list-style: none;
  padding-left: 2rem;
}
.terms-section .terms-content .term-list-item, .privacy-section .terms-content .term-list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.terms-section .terms-content .term-list-item::before, .privacy-section .terms-content .term-list-item::before {
  content: "▹";
  color: #DE0000;
  position: absolute;
  left: 0;
}
@media (max-width: 992px) {
  .terms-section .terms-toc, .privacy-section .terms-toc {
    position: static;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .terms-section, .privacy-section {
    padding: 4rem 0;
  }
  .terms-section .terms-hero .terms-title, .privacy-section .terms-hero .terms-title {
    font-size: 2.2rem;
  }
  .terms-section .term-heading, .privacy-section .term-heading {
    font-size: 1.5rem;
    padding-left: 1.5rem;
  }
  .terms-section .term-heading::before, .privacy-section .term-heading::before {
    width: 1rem;
    height: 1rem;
  }
  .terms-section .term-text, .privacy-section .term-text {
    font-size: 1rem;
  }
  .terms-section .term-list, .privacy-section .term-list {
    padding-left: 1rem;
  }
}
@media (max-width: 576px) {
  .terms-section, .privacy-section {
    padding: 3rem 0;
  }
  .terms-section .terms-hero .terms-title, .privacy-section .terms-hero .terms-title {
    font-size: 1.8rem;
  }
  .terms-section .terms-content, .privacy-section .terms-content {
    padding: 1.5rem;
  }
}

.privacy-section .privacy-hero .privacy-title {
  border-bottom-color: #ff1212;
}
.privacy-section .policy-table {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0;
}
.privacy-section .policy-table table {
  width: 100%;
  margin: 0;
}
.privacy-section .policy-table th {
  background: #DE0000;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
}
.privacy-section .policy-table td {
  padding: 1rem;
  background: #fff;
}
.privacy-section .policy-table tr:nth-child(even) td {
  background: #f8f9fa;
}
.privacy-section .policy-list-item::before {
  color: #ff2c2c;
}
@media (max-width: 768px) {
  .privacy-section .policy-table th, .privacy-section .policy-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .privacy-section .policy-table {
    display: block;
    overflow-x: auto;
  }
  .privacy-section .policy-table table {
    min-width: 500px;
  }
}

.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}

.white-heading {
  color: #ffffff;
}

.heading:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}

.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}

.white-heading span {
  color: #ffffff;
}

/*-----Testimonial-------*/
.testimonial:after {
  position: absolute;
  top: 0 !important;
  left: 0;
  content: " ";
  background: url(img/testimonial.bg-top.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.testimonial {
  min-height: 375px;
  position: relative;
  background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
  padding-top: 50px;
  padding-bottom: 50px;
  background-position: center;
  background-size: cover;
}

#testimonial4 .carousel-inner:hover {
  cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
  cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
  height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
  background: #eeeeee;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control {
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  border-radius: 100%;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
  left: 7%;
  top: 50%;
  right: auto;
}

.testimonial4_control_button .carousel-control.right {
  right: 7%;
  top: 50%;
  left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header {
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}

.testimonial4_header h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}

.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
  padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}

/* ------testimonial  close-------*/
.section-title {
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
  transition: all 0.3s ease-in-out;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #DE0000;
  transition: width 0.3s ease-in-out;
}
.section-title:hover::after {
  width: 100px;
}
.section-title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.section-title a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #DE0000;
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}
.section-title a:hover {
  color: #DE0000;
  transform: scale(1.05);
}
.section-title a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.accent-text {
  font-family: "Merriweather", serif;
  font-weight: 400;
  color: #0045e3;
}

html {
  scroll-padding-top: 80px; /* Adjust this value to match the height of your navbar */
}

body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  background-color: #f8f9fa;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-family: "Open Sans", sans-serif;
}

.custom-logo {
  height: 350px;
}

.navbar .container {
  max-width: 1320px;
  padding: 0 1.5rem;
  margin: 0 auto;
  position: relative;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-brand {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0045e3 !important;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.navbar .navbar-brand img {
  width: 65px;
  height: 65px;
  border-radius: 10%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand img:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}
.navbar .navbar-brand .company-name-top {
  font-weight: bolder;
  color: #0045e3;
  font-size: 1.1rem;
}
.navbar .navbar-brand .company-name-bottom {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 400;
  color: #0045e3;
  font-size: 0.8rem;
}
.navbar .nav-link {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  color: #0045e3 !important;
}
.navbar .nav-link:hover {
  color: #0035b0;
}

.cta-button {
  font-family: "Lato", sans-serif;
  background-color: #0045e3;
  color: #ffffff;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-button:hover {
  background-color: #0035b0;
  color: #ffffff;
  transform: scale(1.05);
}

.navbar-collapse {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-collapse .cta-button {
  margin-left: 1rem;
}

.text-muted {
  color: rgba(0, 69, 227, 0.5);
}

.move-right {
  margin-left: 3rem;
}/*# sourceMappingURL=main.css.map */