@import url("https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;900&family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #3b6b8b;
  --secondary-color: #0c1a33;
  --accent-blue: #4db2ec;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f6f8;
  --footer-overlay: rgba(10, 10, 10, 0.85);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

/* Typography styles matching the design */
.title-main {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: #fff;
}
.title-secondary {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000;
}

/* Button */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 20px;
  padding: 8px 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.btn-primary:hover {
  background-color: #2a526b;
  border-color: #2a526b;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding: 15px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.menu-open {
    background-color: #001d47 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-cursive {
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 3.5rem;
  color: #6da2c7;
  line-height: 0.5;
  margin-right: -10px;
  z-index: 2;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-left: -5px;
}

.btn-header-outline {
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 10px !important;
  padding: 8px 25px !important;
  font-size: 0.9rem !important;
  color: white !important;
  transition: 0.3s !important;
  margin: 5px 0;
}

.btn-header-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white !important;
}

/* Premium Mobile Menu Enhancements */
@media (max-width: 991px) {
  .nav-link {
    padding: 12px 15px !important;
    transition: color 0.3s ease !important;
  }

  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding-right: 0;
  }
  .navbar-nav {
    margin-top: 10px !important;
    padding-bottom: 0px;
  }
  .nav-link:hover,
  .nav-link:active {
    color: #6da2c7 !important;
    background-color: transparent !important;
  }

  /* Hero Responsiveness */
  .new-hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-title .gilroy-black,
  .hero-title .gilroy-regular {
    font-size: 2.8rem !important;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }

  .hero-form-container {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title .gilroy-black,
  .hero-title .gilroy-regular {
    font-size: 2.2rem !important;
  }

  .hero-description {
    font-size: 1rem;
    br {
      display: none;
    }
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-white,
  .btn-outline-blue {
    width: 100%;
  }

  .hero-form-container {
    padding: 20px 10px;
  }

  .form-header h3 {
    font-size: 1.2rem;
  }
}

/* New Hero Section */
.new-hero {
  background: url("../images/hero_bg.webp");
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px; /* Increased top padding to avoid header */
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-text-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-title .gilroy-black {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 600;
  font-size: 4.5rem;
  letter-spacing: -1px;
}

.hero-title .gilroy-regular {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 400;
  font-size: 4.5rem;
  letter-spacing: 5px;
}

.hero-title .text-highlight {
  color: var(--accent-blue);
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-white {
  background: #fff;
  color: #061426;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-white:hover {
  background: #f0f0f0;
  color: #061426 !important;
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: #44b7f0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-blue:hover {
  background: #3da1d9;
  transform: translateY(-2px);
}

/* Form Styles */
.hero-form-container {
  background: #fff;
  border-radius: 0 0 0 60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  margin-left: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.form-header {
  background: #001d47;
  color: #fff;
  padding: 15px 20px;
  position: relative;
  text-align: center;
  margin-left: -20px;
  width: calc(100% + 20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-header p {
  font-size: 0.75rem;
  margin-bottom: 5px;
  opacity: 0.9;
  letter-spacing: 0.5px;
  font-family: "inter", sans-serif;
}

.form-header h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
  font-family: "inter", sans-serif;
  text-transform: uppercase;
}

.ribbon-fold {
  position: absolute;
  left: 0;
  top: 100%;
  width: 20px;
  height: 25px;
  background: #001d47;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-form {
  padding: 30px 40px;
}

.hero-form .form-group {
  margin-bottom: 25px;
}

.hero-form .form-control {
  border: none;
  border-bottom: 1px solid #b7b7b7;
  border-radius: 0;
  padding: 12px 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #333;
  background: transparent;
}

.hero-form .form-control::placeholder {
  color: #707070;
  font-size: 1rem;
}

.hero-form .form-control:focus {
  box-shadow: none;
  border-color: #001d47;
}

.btn-submit {
  background: #001d47;
  color: #fff;
  width: 100%;
  padding: 15px;
  border-radius: 10px !important;
  font-weight: 500 !important;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize !important;
  font-size: 1rem !important;
  margin-top: 10px;
  border: none;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #152a4d;
  transform: translateY(-2px);
  color: white !important;
}
.home-hero p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.about-author-section,
.about-book-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    url("../images/imgi_3_Background-1.webp");
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Footer Section */
.footer-section {
  background: #001d47;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #44b7f0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.glow-left {
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.glow-right {
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-description {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 350px;
}

.footer-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-transform: none;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0.8;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer-list li::before {
  content: "•";
  margin-right: 10px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-list li:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.footer-contact-list li a{
    color:#fff;
    text-decoration:none;
}

.footer-contact-list li i {
  width: 25px;
  margin-right: 10px;
  color: #fff;
  font-size: 1rem;
}

.footer-bottom-bar {
  background: #001d47;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom-bar p {
  font-family: "Urbanist", sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom-bar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer-section {
    text-align: center;
  }
  .footer-description {
    max-width: 100%;
  }
  .footer-list li {
    justify-content: center;
  }
  .footer-contact-list li {
    justify-content: center;
  }
}
.back-to-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: white;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10;
}

/* Contact Page Specific */
.contact-card {
  background-color: var(--primary-color);
  color: white;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact-card i {
  font-size: 2rem;
  margin-right: 15px;
}
.contact-card h5 {
  font-size: 1rem;
  margin: 0 0 5px 0;
}
.contact-card p {
  margin: 0;
  font-size: 0.85rem;
}

/* Blog Page Specific */
.bg-light-col {
  background-color: var(--bg-light);
}
.blog-card {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}
.blog-img-box img {
  border-radius: 0;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}
.home-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.blog-img-box,
.home-blog-img-box a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
}
.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}
.home-blog-img-box .blog-overlay {
  padding-right: 20%; /* Centers icon in the visible area not covered by the text card */
  border-radius: 5px; /* Matches the image's rounded corners */
}
.blog-overlay i {
  color: white;
  font-size: 2.5rem;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.blog-card:hover .blog-overlay,
.home-blog-wrapper:hover .blog-overlay {
  opacity: 1;
}
.blog-card:hover .blog-overlay i,
.home-blog-wrapper:hover .blog-overlay i {
  transform: translateY(0);
}
.blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: white;
  padding: 5px 15px;
  text-align: center;
  font-weight: bold;
  color: #333;
  z-index: 11;
}
.blog-date span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
}
.blog-tag {
  position: absolute;
  top: 240px; /* image height 250 - badge height/2 approx */
  left: 50%;
  transform: translateX(-50%);
  background-color: #1c3d5e;
  color: white;
  padding: 2px 15px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 11;
}
.blog-card-body {
  padding: 30px 20px;
  text-align: center;
}
.blog-meta {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 15px;
}
.blog-meta i {
  margin: 0 5px;
}
.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.read-more {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
}

/* About Book Page Specific */
.book-img-wrapper img {
  transform: perspective(600px) rotateY(-10deg);
  max-width: 100%;
}
.author-bottom {
  height: 100%;
  width: 100%;
}
.author-portrait {
  max-width: 100%;
}
.author-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  color: #ffffff;
  background: #ffffff4d;
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 20px;
  border: #284f75 solid 2px;
}
.testimonial-card::after {
  content: "\201D";
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}
.testimonial-author {
  font-weight: bold;
  font-style: normal;
  color: #fff;
  margin-top: 15px;
}
.testimonial-author span {
  color: #fff;
  opacity: 0.8;
  font-weight: 400;
}

.section-title-white {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Form Styling */
.form-control {
  border-radius: 0;
  padding: 12px 15px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.btn-submit {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 10px;
}

/* Global utility */
.ls-1 {
  letter-spacing: 1px;
}
.fw-800 {
  font-weight: 800;
}
.text-muted2 {
  color: #888;
}

.swiper-pagination-bullet-active {
  background-color: #000 !important;
  opacity: 1 !important;
  width: 25px;
  border-radius: 5px;
}
/* Business Section Styles */
.business-section {
  background-color: #fff;
  padding: 100px 0;
  z-index: 1;
}

.outline-bg-text {
  /* position: absolute; */
  top: -30px;
  right: 0;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 10rem;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 29, 71, 0.2);
  z-index: 0;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.business-bg-shapes {
  position: absolute;
  left: -150px;
  top: 60%;
  transform: translateY(-50%);
  width: 600px;
  /* z-index: 1; */
  pointer-events: none;
}

.business-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 30px;
}

.business-title .title-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  margin-right: 30px;
}

.business-title .title-top .bold {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 6rem;
  color: #001d47;
}

.business-title .title-top .outline {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 6rem;
  color: transparent;
  -webkit-text-stroke: 1px #001d47;
}

.business-title .title-main,
.business-title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  color: #44b7f0;
}

.title-sub {
  font-family: "Gilroy-Bold", sans-serif;
  color: #44b7f0;
  font-weight: 600;
}

.business-description p {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.business-buttons .btn-dark-blue {
  background: #001d47;
  color: #fff;
  padding: 12px 35px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.business-buttons .btn-dark-blue:hover,
.business-buttons .btn-light-blue:hover{
    color: #001d47;
    background-color: transparent;
    border-color: #001d47;
}

.business-buttons .btn-light-blue {
  background: #44b7f0;
  color: #fff;
  padding: 12px 35px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bottom-right-decor {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  z-index: 1;
  pointer-events: none;
}

/* Projects Section */
.projects-section {
  background: #001d47;
  color: #fff;
  padding: 100px 0 !important;
}

.projects-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #44b7f0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.projects-left {
  left: -200px;
  transform: translateY(75%);
}

.projects-right {
  right: -200px;
  transform: translateY(20%);
}

.projects-header {
  max-width: 1100px;
  margin: 0 auto;
}

.featured-text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 120px;
  font-weight: 400;
  color: #fff;
  line-height: 0.8;
  margin: 0;
}

.projects-outline-text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 120px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  line-height: 1;
  margin: 0;
  z-index: 99;
}

.pricing-outline-text2 {
  -webkit-text-stroke: 1px #001d47;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 100px;
  font-weight: 600;
  color: transparent;
  line-height: 1;
  margin: 0;
  z-index: 99;
}

.projects-subtitle {
  text-wrap: nowrap;
  font-family: "Urbanist-Light", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.6;
  line-height: 1.4;
  margin: 0;
}

.project-card {
  transition: 0.4s;
  cursor: pointer;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .featured-text,
  .projects-outline-text,
  .pricing-outline-text2 {
    font-size: 5rem;
  }
  .projects-section {
    padding: 60px 0;
  }
  .project-card img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .featured-text,
  .projects-outline-text,
  .pricing-outline-text2 {
    font-size: 4rem;
  }
  .projects-subtitle {
    font-size: 1rem !important;
    line-height: 1.1;
  }
  .project-card img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .featured-text,
  .projects-outline-text,
  .pricing-outline-text2 {
    font-size: 3rem;
  }
  .projects-subtitle {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 400px) {
  .featured-text,
  .projects-outline-text,
  .pricing-outline-text2 {
    font-size: 2.5rem;
  }
  .projects-subtitle {
    font-size: 0.7rem !important;
  }
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
}

.pricing-card {
  background: #001d47;
  border-radius: 50px;
  padding: 35px 25px 25px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.package-name {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.package-desc {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 15px;
  line-height: 1.4;
  color:#fff;
}

.price-wrap {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.curr-price {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 2.3rem;
  color: #44b7f0;
  font-weight: 600;
}

.old-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.features-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 12px;
  opacity: 0.9;
}

.btn-order {
  background: #44b7f0;
  color: #000000 !important;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-weight: 400;
  margin-bottom: 30px;
  transition: 0.3s;
}

.btn-order:hover {
  background: #3da1d9;
  color: #fff;
}

.card-footer-links {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.link-item span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 5px;
}

.link-item a {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid #44b7f0;
}

/* CTA Banner */
.cta-banner {
  background: #001d47;
  border-radius: 40px;
  padding: 60px;
  color: #fff;
}

.cta-title {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
}

.cta-text {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 22px;
  opacity: 0.8;
}

.cta-call-box span {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.cta-call-box h3,
.cta-call-box h3 a{
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
  font-weight: 800;
  text-decoration:none;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-buttons .btn-quote {
  background: #fff;
  color: #001d47;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-wrap: nowrap;
  transition: 0.3s;
}

.cta-buttons .btn-chat {
  background: #44b7f0;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-wrap: nowrap;
}

.cta-buttons .btn-quote:hover,
.cta-buttons .btn-chat:hover{
  background: transparent;
color: #fff !important;
border-color: #fff;
}

/* Pricing Card UI Refinement */
.pricing-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Gilroy-Medium", sans-serif;
}

.features-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 0;
}

.features-list li::before {
  display: none;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #44b7f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #000;
  flex-shrink: 0;
}

.features-accent-line {
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.features-accent-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 40px;
  background: #44b7f0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(68, 183, 240, 0.5);
}

.btn-order {
    background: #44b7f0;
    color: #000 !important;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 10px 40px;
    width: auto;
    display: inline-block;
    border: 1px solid transparent;
    transition: 0.3s;
}

.btn-order:hover {
  background: transparent;
color: #fff !important;
border-color: #fff;
}

.card-footer-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
}

.link-item span {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  opacity: 1;
  margin-bottom: 2px;
  font-family: "Gilroy-Medium", sans-serif;
}

.link-item a {
  color: #fff;
  font-weight: 400;
  font-size: 0.85rem;
  text-decoration: underline;
  opacity: 0.9;
}

/* popup from */

/*.form-error {*/
/*    display: none;*/
/*}*/
/*input.error {*/
/*    border-color: #dd3b18 !important;*/
/*}*/
#entry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
}

.entry-box {
    background: #000;
    text-align: center;
    padding-bottom: 30px;
    width: 47%;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}

@media (max-width: 1200px){
    .entry-box {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .entry-box {
        width: 98%;
    }
    .entry-box h1 {
        font-size: 23px;
        line-height: 50px;
    }
    .entry-right .text h2 {
        font-size: 20px;
    }
    a#entry-box_close {
        top: 1px;
    }
}
.entry-box h1 {
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 60px;
}
.entry-box h1 span {
    color: #ffd800;
}
.entry-left {
    text-align: center;
    background-image: -moz-linear-gradient(90deg, #ef0d33 0, #ff1010 100%);
    background-image: -ms-linear-gradient(90deg, #ef0d33 0, #ff1010 100%);
    background-color: #001d47;
}
.entry-box h1 {
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 60px;
}
.entry-right .text {
    position: relative;
    margin: 15px 0 25px;
}
.entry-right .text h2 {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}
.entry-right .text h2 span {
    color: #44b7f0;
}
.entry-right .text:before {
    content: "";
    width: 6px;
    height: 50px;
    background: #44b7f0;
    border-radius: 20%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}
.form-control.error {
    border-color: red !important;
}
label.error {
    display: none !important;
}
.entry-right .text strong {
    text-transform: uppercase;
}
.entry-right .form-control:focus {
    border-color: #e2001b;
    box-shadow: 0 0 5px 0 #dee2e4;
    background-color: #fff;
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.2);
}
.entry-right input,
.entry-right textarea {
    border-radius: 5px;
    height: 51px;
    padding-left: 20px;
    border: 1px solid #e3e3e3;
    box-shadow: none;
    background: #fafafa;
    margin: 5px 0;
}
.entry-right textarea {
    height: 110px;
}
.entry-right input[type="email"],
.leaving-box input[type="email"] {
    background-color: #fff !important;
    color: #555 !important;
}
.entry-right .intl-tel-input {
    width: 100%;
}
.entry-right .intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 0;
}
.entery-submit {
    width: 60%;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    border: none !important;
    padding: 10px;
    cursor: pointer;
    border-radius: 30px;
    background-color: #001d47 !important;
    justify-content: center;
}
.entry-right a {
    height: 60px;
    line-height: 60px;
    display: block;
    width: 100%;
    background-color: #ffd800;
    border-radius: 50px;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.entry-right a i {
    margin-left: 6px;
}
.entry-right p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.entry-right .form-group {
    margin-bottom: 10px;
}
a#entry-box_close {
    position: absolute;
    right: 5px;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50pc;
    color: #fff;
    font-size: 29px;
    top: 15px;
    z-index: 9;
}
#entry-popup .col-sm-12{    
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; 
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; }


/* popup from End*/

@media (max-width: 991px) {
  .business-section {
    padding: 60px 0;
  }
  .business-bg-shapes {
    left: -50px;
    width: 300px;
  }
  .business-title .title-top .bold,
  .business-title .title-top .outline {
    font-size: 2.5rem;
  }
  .business-title .title-main,
  .business-title .title-sub {
    font-size: 3rem;
  }
  .outline-bg-text {
    font-size: 8rem;
    top: 20px;
  }
  .cta-buttons {
    align-items: start;
  }
  .cta-call-box span {
    font-size: 25px;
  }
  .cta-call-box h3,
  .cta-call-box h3 a{
    font-size: 28px;
  }
  .cta-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .business-title .title-top .bold,
  .business-title .title-top .outline {
    font-size: 3.8rem;
  }
  .business-title .title-main,
  .business-title .title-sub {
    font-size: 3rem;
  }
  .business-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .business-buttons .btn-dark-blue,
  .business-buttons .btn-light-blue {
    text-align: center;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-banner {
    padding: 30px;
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .features-wrapper {
        margin-bottom: 20px;
    }
    .btn-order {
        margin-bottom: 10px;
    }
    .features-list li {
        gap: 10px;
    }
    .navbar-nav.ms-auto{
        flex-direction: row;
        justify-content: center;
        gap: 0 9px;
    }
}
@media (max-width: 480px) {
  .outline-bg-text {
    font-size: 4rem;
  }
  .business-title .title-main,
  .business-title .title-sub {
    font-size: 2rem;
  }
}
