body {
  color                  : #111827;
  background-color       : #fff;
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x             : hidden;
}

html,
body {
  overflow-x: hidden;
}


/* Button styling */
button {
  font-weight     : 500;
  background-color: #e03b79;
  /* Accent pink */
  color           : white;
  border          : none;
  border-radius   : 40px;
  padding         : 12px 24px;
  cursor          : pointer;
  transition      : background-color 0.3s;
}

button:hover {
  background-color: #0d1b4a;
  /* Dark blue on hover */
}



/*  Top Navigation */
.topbar {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding      : 16px 0;
}

.logo {
  font-weight: 700;
  color      : var(--primary-blue);
  display    : flex;
  align-items: center;
  gap        : .6rem;
}

.logo img {
  height: 36px;
}

/*  Hero Section  */
.hero {
  padding : 70px 0 40px;
  position: relative;
  overflow: visible;
}

.hero .eyebrow {
  color      : var(--primary-blue);
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}

.hero h1 {
  font-weight   : 400;
  line-height   : 1.1;
  font-size     : clamp(36px, 6vw, 76px);
  margin        : 10px 0 20px;
  letter-spacing: -0.4px;
  color         : #000;
}

.hero p.lead {
  color      : var(--muted);
  max-width  : 640px;
  font-size  : 16px;
  font-weight: 400;
}

/*  Buttons  */
.btn-primary-ghost {
  background   : var(--primary-blue);
  color        : #fff;
  border-radius: 40px;
  padding      : 12px 24px;
  font-weight  : 600;
  font-size    : 15px;
  border       : none;
  transition   : all 0.3s ease;
}

.btn-primary-ghost:hover {
  background: var(--accent-pink);
}

.btn-circle {
  width          : 44px;
  height         : 44px;
  border-radius  : 50%;
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  background     : #5260ff;
  color          : #fff;
  margin-left    : 10px;
  border         : none;
  transition     : all 0.3s ease;
}

.btn-circle:hover {
  background: var(--accent-pink);
}

.hero-img-wrapper {
  position: relative;
  width   : 100%;
  height  : auto;
}

.hero-img-wrapper img {
  position  : absolute;
  top       : 0;
  left      : 0;
  width     : 100%;
  height    : auto;
  opacity   : 0;
  transition: opacity 1s ease-in-out;
}

.hero-img-wrapper img.active {
  opacity: 1;
  z-index: 1;
}

.btn-primary {
  background-color: #007bff;
  border          : none;
  transition      : all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056d2;
  transform       : translateY(-2px);
}

.shadow-sm {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

img {
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}




/* === Stats === */
.stats-row {
  margin-top: 40px;
}

.stat-card {
  border-radius: 12px;
  border       : 1px solid rgba(15, 23, 42, 0.06);
  padding      : 20px;
  background   : #fff;
  min-height   : 100px;
  display      : flex;
  align-items  : center;
  gap          : 14px;
  transition   : all 0.3s ease;
}

.stat-card:hover {
  transform : translateY(-5px);
  box-shadow: 0 6px 20px rgba(13, 27, 74, 0.08);
}

.stat-value {
  font-family: 'Agaleoz', serif;
  font-weight: 400;
  font-size  : 28px;
  color      : var(--primary-blue);
}

.stat-label {
  color      : var(--muted);
  font-weight: 500;
  font-size  : 14px;
  font-family: 'Outfit', sans-serif;
}






/*vision section*/
.bg-dark-blue {
  background-color: #0d1b47;
}

/* Scroll card animation base */
.scroll-card {
  width     : 200px;
  height    : 250px;
  opacity   : 0;
  transform : translateY(50px);
  transition: all 0.6s ease-out;
}

.scroll-card.animate {
  opacity  : 1;
  transform: translateY(0);
}

/* Section styles */
.about-3dplex-section .section-subtitle {
  color         : #007bff;
  font-weight   : 600;
  text-transform: uppercase;
  font-size     : 0.9rem;
}

.about-3dplex-section .section-title {
  font-weight: 700;
  font-size  : 2rem;
  color      : #0d1b47;
}

.about-3dplex-section .section-title span {
  color: #1a4ed8;
}

.about-3dplex-section .section-desc {
  color: #4b5563;
}

/* Progress bars */
.progress {
  height          : 8px;
  border-radius   : 5px;
  background-color: #e5e7eb;
  overflow        : hidden;
}

.progress-bar {
  background-color: #1a4ed8;
}

.progress-info span {
  font-size  : 0.9rem;
  font-weight: 500;
}

/* Vision & Mission */
.vision-mission .vm-title {
  color      : #0d1b47;
  font-weight: 700;
}

.vision-mission .vm-title span {
  color       : #1a4ed8;
  margin-right: 5px;
}

.vision-mission p {
  color      : #4b5563;
  font-size  : 0.95rem;
  line-height: 1.6;
}

.vision-mission .quote {
  color     : #1e3a8a;
  font-style: italic;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-3dplex-section .section-title {
    font-size: 1.6rem;
  }
}





.solutions-section {
  padding   : 80px 0;
  text-align: center;
  background: #fff url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
}

.solution-card {
  border       : 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding      : 30px 20px;
  transition   : all 0.3s ease;
  height       : 100%;
  background   : #fff;
}

.solution-card:hover {
  background: #0d1b4a;
  color     : #fff;
  transform : translateY(-6px);
}

.solution-card img {
  width        : 40px;
  height       : 40px;
  margin-bottom: 16px;
  transition   : all 0.3s ease;
  filter       : brightness(1);
}

.solution-card:hover img {
  filter: brightness(5);
}

.solution-card h5 {
  font-weight  : 700;
  color        : #0d1b4a;
  margin-bottom: 10px;
  transition   : color 0.3s ease;
}

.solution-card:hover h5 {
  color: #fff;
}

.solution-card p {
  font-size    : 0.95rem;
  color        : #555;
  margin-bottom: 16px;
  transition   : color 0.3s ease;
}

.solution-card:hover p {
  color: #fff;
}

.solution-card a {
  font-weight    : 600;
  text-decoration: none;
  color          : #0d1b4a;
  transition     : color 0.3s ease;
}

.solution-card:hover a {
  color: #fff;
}

.solutions-footer {
  margin-top     : 40px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 12px;
  flex-wrap      : wrap;
}

.solutions-footer p {
  font-weight: 500;
  color      : #000;
  margin     : 0;
}

.solutions-footer .btn {
  background   : #0d1b4a;
  color        : #fff;
  border-radius: 40px;
  font-weight  : 600;
  padding      : 10px 24px;
  border       : none;
  transition   : all 0.3s ease;
}

.solutions-footer .btn:hover {
  background: #e03b79;
}





/* Testimonials Section */
.testimonials-section {
  background-color: #fff;
}

/* Left image */
.testimonial-img {
  max-height   : 380px;
  border-radius: 10px;
  object-fit   : cover;
}

/* Rating area */
.testimonials-section .display-4 {
  color: #0a1736;
}

/* Intro paragraph */
.testimonial-intro {
  color      : #555;
  font-size  : 1rem;
  line-height: 1.6;
}

/* Testimonial card */
.testimonial-card {
  background-color: #f8f9fa;
  transition      : all 0.3s ease-in-out;
}

.testimonial-card:hover {
  background-color: #e9eefc;
  transform       : translateY(-5px);
  box-shadow      : 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Avatar */
.testimonial-avatar {
  width     : 32px;
  height    : 32px;
  object-fit: cover;
}

/* Responsive layout */
@media (max-width: 768px) {
  .testimonial-img {
    margin-bottom: 20px;
    max-height   : 300px;
  }
}






/* FAQ Section Styling */
.faq-section {
  background-color: #fff;
}

/* Accordion styling */
.accordion-button {
  background-color: #f8f9fa;
  color           : #0a1736;
  font-weight     : 500;
  border          : none;
  box-shadow      : none;
  transition      : all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
  background-color: #0a1736;
  color           : #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border       : 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow     : hidden;
}

.accordion-body {
  background-color: #fff;
  color           : #333;
  line-height     : 1.6;
}

/* Right column */
.faq-image {
  max-height   : 220px;
  object-fit   : cover;
  border-radius: 10px;
}

/* Contact button */
.btn-primary {
  background-color: #0a1736;
  border          : none;
  transition      : 0.3s ease;
}

.btn-primary:hover {
  background-color: #123072;
}

/* Responsive spacing */
@media (max-width: 992px) {
  .faq-section .col-lg-4 {
    margin-top: 40px;
  }
}



/*footer*/
.footer {
  background: #0a1736;
}

.footer-logo {
  height: 48px;
}

.footer ul {
  padding-left: 0;
  list-style  : none;
}

.footer ul li {
  margin-bottom: 8px;
}

.social-icon {
  background-color: #000;
  padding         : 8px;
  border-radius   : 6px;
  color           : #fff;
  margin          : 0 4px;
  display         : inline-block;
}

.social-icon:hover {
  opacity: 0.8;
}




/* ===== Services Banner ===== */
.services-banner {
  position       : relative;
  background     : radial-gradient(circle at 50% 30%, #0b3b91 0%, #000 80%);
  min-height     : 55vh;
  display        : flex;
  align-items    : center;
  justify-content: center;
  overflow       : hidden;
}

/* animated sweep light */
.services-banner::before {
  content : "";
  position: absolute;
  top     : 0;
  left    : -60%;
  width   : 200%;
  height  : 100%;
  background: linear-gradient(110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.07) 45%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 55%,
      transparent 100%);
  transform     : skewX(-20deg);
  animation     : sweep 8s linear infinite;
  mix-blend-mode: screen;
}

@keyframes sweep {
  from {
    left: -60%;
  }

  to {
    left: 60%;
  }
}

/* subtle fog glow for depth */
.services-banner::after {
  content       : "";
  position      : absolute;
  inset         : 0;
  background    : radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
  opacity       : 0.5;
}

.services-banner h2 {
  font-size              : 3rem;
  letter-spacing         : 2px;
  font-weight            : 700;
  background             : linear-gradient(90deg, #fff, #cfd8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow            : 0 0 20px rgba(255, 255, 255, 0.2);
}


/* Subtext */
.services-banner p {
  color         : rgba(255, 255, 255, 0.8);
  font-size     : 1.15rem;
  letter-spacing: 0.4px;
  margin-top    : 0.8rem;
}

/* Optional curved divider at bottom */
.services-banner svg {
  position: absolute;
  bottom  : 0;
  left    : 0;
  width   : 100%;
  height  : 100px;
  fill    : #fff;
}



/* Section Titles */
.section-title {
  text-align   : center;
  font-weight  : 700;
  font-size    : 2.2rem;
  margin-bottom: 20px;
  color        : #0b3b91;
}

.sub-title {
  text-align: center;
  color     : #555;
  max-width : 700px;
  margin    : 0 auto 50px;
}

/* Service Cards */
.service-card {
  background   : #fff;
  border       : 1px solid #e4e4e4;
  border-radius: 16px;
  padding      : 40px 25px;
  text-align   : center;
  transition   : all 0.4s ease;
  height       : 100%;
  color        : #000;
}

.service-card i {
  font-size    : 50px;
  color        : #0b3b91;
  /* dark blue */
  margin-bottom: 15px;
  transition   : all 0.4s ease;
}

/* Hover effect */
.service-card:hover {
  background  : linear-gradient(145deg, #0a1a3f, #0b3b91);
  color       : #fff;
  border-color: transparent;
  transform   : translateY(-10px) scale(1.03);
  box-shadow  : 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover i {
  color    : #fff;
  transform: scale(1.2);
}

.service-card:hover h4,
.service-card:hover p {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}


/* Pricing Section */
.pricing-card {
  background   : #fff;
  border       : 1px solid #dcdcdc;
  border-radius: 20px;
  padding      : 40px 30px;
  text-align   : center;
  transition   : 0.3s;
  height       : 100%;
  min-height   : 480px;
}

.pricing-card:hover {
  transform   : translateY(-5px);
  border-color: #0b3b91;
  box-shadow  : 0 10px 30px rgba(11, 59, 145, 0.1);
}

.pricing-card h4 {
  color        : #0b3b91;
  font-weight  : 600;
  margin-bottom: 20px;
}

.pricing-card ul {
  text-align  : left;
  list-style  : none;
  padding-left: 0;
  margin      : 20px 0;
}

.pricing-card ul li {
  margin-bottom: 8px;
  position     : relative;
  padding-left : 20px;
}

.pricing-card ul li::before {
  content : "✔";
  color   : #0b3b91;
  position: absolute;
  left    : 0;
  top     : 0;
}


/* Glass Cards */
.pricing-card.glass {
  background     : rgba(255, 255, 255, 0.66);
  box-shadow     : 0 6px 32px rgba(11, 59, 145, .08), 0 2px 16px rgba(11, 59, 145, .04);
  border-radius  : 24px;
  backdrop-filter: blur(16px) saturate(180%);
  border         : 2px solid rgba(11, 59, 145, .10);
  padding        : 32px 26px 22px 26px;
  transition     : .3s box-shadow, .3s transform;
  overflow       : hidden;
}

.pricing-card.glass.featured {
  border      : 2.5px solid;
  border-image: linear-gradient(135deg, #0b3b91 30%, #707efd 100%) 1;
  box-shadow  : 0 10px 32px rgba(11, 59, 145, 0.16), 0 2px 16px rgba(11, 59, 145, 0.12);
}

.pricing-card.glass:hover {
  box-shadow: 0 16px 52px rgba(11, 59, 145, .14), 0 4px 24px rgba(11, 59, 145, .10);
  transform : translateY(-7px) scale(1.02);
}

.pricing-label {
  font-weight  : 600;
  font-size    : 1.16rem;
  margin-bottom: 7px;
  color        : #0b3b91;
}

.pricing-save {
  background   : linear-gradient(90deg, #0b3b91 0%, #707efd 100%);
  color        : white;
  font-size    : 0.95rem;
  border-radius: 12px;
  padding      : 3px 9px;
  display      : inline-block;
  margin-bottom: 7px;
  margin-top   : 2px;
}

.pricing-price {
  font-size  : 2.3rem;
  font-weight: 700;
  color      : #0b3b91;
  margin     : 10px 0;
}

.pricing-price del {
  font-size   : 1.2rem;
  color       : #808db3;
  font-weight : 400;
  margin-right: 6px;
}

.pricing-price small {
  font-size  : 1rem;
  color      : #76777b;
  font-weight: 400;
  margin-left: 2px;
}

.pricing-desc {
  color        : #3d4176;
  font-size    : 1.08rem;
  margin-bottom: 16px;
  margin-top   : 2px;
}

.pricing-card ul {
  text-align  : left;
  margin      : 18px 0;
  padding-left: 0;
  list-style  : none;
  font-size   : 1.01rem;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left : 30px;
  position     : relative;
  font-weight  : 500;
  user-select  : none;
}

li.check::before {
  content  : "✔";
  color    : #0b3b91;
  font-size: 1.35rem;
  position : absolute;
  left     : 0;
  top      : 0;
}

li.cross::before {
  content  : "✖";
  color    : #c4c7ce;
  font-size: 1.35rem;
  position : absolute;
  left     : 0;
  top      : 0;
}

.btn-main {
  background   : linear-gradient(90deg, #0b3b91 0%, #3a16adff 100%);
  color        : #fff;
  border-radius: 24px;
  padding      : 12px 32px;
  font-weight  : 700;
  border       : none;
  box-shadow   : 0 4px 16px rgba(11, 59, 145, 0.15);
  font-size    : 1.14rem;
  margin-top   : 16px;
  cursor       : pointer;
  transition   : all 0.3s ease;
  will-change  : transform;
}

.btn-main:hover {
  background: linear-gradient(90deg, #3a16ad 0%, #0b3b91 100%);
  transform : translateY(-3px);
  box-shadow: 0 6px 20px rgba(11, 59, 145, 0.2);
}


@media (max-width: 900px) {
  .row.g-4 {
    flex-direction: column;
    gap           : 28px;
  }
}

/* Trusted By */
.trusted-section img {
  max-height: 55px;
  opacity   : 0.8;
  transition: 0.3s;
  filter    : grayscale(100%);
}

.trusted-section img:hover {
  opacity: 1;
  filter : grayscale(0);
}

.trusted-section,
.trusted-section .d-flex {
  overflow-x: hidden;

}

.trusted-section img {
  max-width : 100%;
  object-fit: contain;
}


.feature-card {
  background: #07123d;
  color     : #fff;
  padding   : 1.25rem;
}

.icon-wrap {
  background: #fff;
  display   : inline-block;
  padding   : .6rem;
}

.icon-lg {
  font-size: 1.5rem;
  color    : #07123d;
}

.avatars {
  display    : flex;
  align-items: center;
  margin-left: 0;
}

.avatar {
  width        : 48px;
  height       : 48px;
  border       : 3px solid #fff;
  border-radius: 50%;
  object-fit   : cover;
  box-shadow   : 0 2px 6px rgba(0, 0, 0, 0.12);
}

.avatars .avatar+.avatar {
  margin-left: -14px;
}

@media (max-width: 576px) {
  .avatars .avatar+.avatar {
    margin-left: -8px;
  }

  .feature-card {
    padding: 1rem;
  }

  .display-6 {
    font-size: 1.5rem;
  }

  .fs-1-5 {
    font-size: 2rem;
  }
}


.avatars-wrap {
  min-width: 0;
  overflow : visible;
}

.row {
  margin-right: 0;
  margin-left : 0;
}




/* Parallax Banner Section */
.banner-section {
  background           : url('https://i.pinimg.com/1200x/fc/8c/0d/fc8c0dd08a8ada6617b712887d0cc051.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  position             : relative;
  overflow             : hidden;
  color                : #fff;
}

.banner-section::before {
  content   : "";
  position  : absolute;
  top       : 0;
  left      : 0;
  width     : 100%;
  height    : 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
  z-index   : 1;
}

.banner-section .container {
  position: relative;
  z-index : 2;
}

/* Image styling */
.banner-section img {
  max-width : 100%;
  height    : auto;
  transition: transform 0.3s ease;
}

.banner-section img:hover {
  transform: scale(1.03);
}

/* Heading */
.banner-section h2 {
  font-weight: 800;
  /* bold */
  font-size  : 2.5rem;
  line-height: 1.3;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Paragraph */
.banner-section p {
  font-size    : 1.1rem;
  line-height  : 1.6;
  color        : #f1f1f1;
  margin-bottom: 1.5rem;
}

/* Button */
.banner-section .btn-primary {
  background   : linear-gradient(135deg, #0d6efd, #6610f2);
  border       : none;
  border-radius: 50px;
  /* rounded border */
  padding      : 0.8rem 2rem;
  font-weight  : 600;
  font-size    : 1.1rem;
  transition   : all 0.3s ease;
  box-shadow   : 0 6px 15px rgba(0, 0, 0, 0.3);
}

.banner-section .btn-primary:hover {
  transform : translateY(-3px);
  background: linear-gradient(135deg, #6610f2, #0d6efd);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .banner-section h2 {
    font-size : 2rem;
    text-align: center;
  }

  .banner-section p {
    font-size : 1rem;
    text-align: center;
  }

  .banner-section .btn-primary {
    display: inline-block;
    margin : 0 auto;
  }

  .banner-section img {
    max-width    : 80%;
    margin-bottom: 20px;
  }
}




/* Projects */
.project-card {
  position     : relative;
  overflow     : hidden;
  border-radius: 16px;
  height       : 400px;
}

/* Ensure the image fully covers the card */
.project-card img {
  width        : 100%;
  height       : 100%;
  object-fit   : cover;
  /* Ensures image fills the card without distortion */
  transition   : 0.4s;
  border-radius: 16px;
}


.project-card:hover img {
  transform: scale(1.1);
  filter   : brightness(60%);
}

.project-overlay {
  position       : absolute;
  top            : 0;
  left           : 0;
  width          : 100%;
  height         : 100%;
  background     : rgba(0, 0, 0, 0.6);
  color          : white;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  align-items    : center;
  opacity        : 0;
  transition     : 0.4s;
  border-radius  : 16px;
  text-align     : center;
  padding        : 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.btn-outline-white {
  border       : 2px solid white;
  color        : white;
  border-radius: 25px;
  padding      : 8px 20px;
  background   : transparent;
  transition   : 0.3s;
}

.btn-outline-white:hover {
  background: white;
  color     : #0b3b91;
}

/* Our Process */
.process-step {
  text-align: center;
  padding   : 20px;
}

.process-step i {
  font-size    : 40px;
  color        : #0b3b91;
  margin-bottom: 10px;
}

.process-line {
  height       : 3px;
  background   : #0b3b91;
  width        : 60%;
  margin       : 0 auto;
  border-radius: 10px;
}



.topbar {
  background: #fff;
  z-index   : 999;
}

#mobileMenu a:hover {
  color: #0d6efd;
}




/* ABOUT PAGE HERO - BLUE THEME */
.hero-about {
  padding   : 5rem 0 4rem;
  background: linear-gradient(180deg, #0d1b4a 0%, #1e3a8a 100%);
  color     : #ffffff;
  /* text white for contrast */
}

.hero-about .kicker {
  color         : rgba(255, 255, 255, 0.75);
  font-weight   : 600;
  letter-spacing: .02em;
}

.hero-about .display-4 {
  font-size     : clamp(2.2rem, 4.6vw, 3.6rem);
  line-height   : 1.1;
  margin        : .25rem 0 1rem;
  font-weight   : 800;
  text-transform: uppercase;
  color         : #ffffff;
}

.hero-about .lead {
  color    : rgba(255, 255, 255, 0.85);
  max-width: 48rem;
}

.hero-about .micro-card {
  background   : rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding      : .6rem .9rem;
  display      : inline-flex;
  gap          : .6rem;
  align-items  : center;
  border       : 1px solid rgba(255, 255, 255, 0.1);
  color        : #ffffff;
  font-weight  : 600;
}

/* .hero-about .hero-img-wrapper {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255,255,255,0.05);
  display:flex;
  justify-content:center;
  align-items:center;
} */

.hero-about .hero-img {
  max-height: 360px;
  width     : auto;
  display   : block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-about .hero-img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Offcanvas full height and fixed */
.offcanvas-top {
  height       : 80vh !important;
  width        : 60vw !important;
  left         : 20vw !important;
  right        : 0 !important;
  top          : 0 !important;
  padding      : 0;
  border-radius: 6px;
  background   : #fff;
  box-shadow   : 0 0 30px rgba(0, 0, 0, 0.25);
  z-index      : 1056;
  overflow     : hidden !important;
  position     : fixed !important;
  top          : 40px !important;
  box-shadow   : 0 5px 25px rgba(0, 0, 0, 0.2);

}

body.offcanvas-open {
  overflow: hidden !important;
}

.booking-container {
  display : flex;
  width   : 100%;
  height  : 100%;
  overflow: hidden !important;
}

/* LEFT SIDE - Promo */
.promo-section {
  flex               : 1;
  background-image   : url('https://i.pinimg.com/1200x/13/44/a4/1344a46fbb9e85a654eab4480d68bcef.jpg');
  background-size    : cover;
  background-position: center;
  color              : #fff9f9;
  display            : flex;
  flex-direction     : column;
  justify-content    : center;
  align-items        : center;
  text-align         : center;
  padding            : 2rem;
  overflow           : hidden;
}

/* Offer Tag */
.badge-offer {
  background   : #2a3ec6;
  color        : #fff;
  font-weight  : 600;
  padding      : 8px 18px;
  border-radius: 6px;
  font-size    : 1rem;
}

/* Promo Text */
.intro-text {
  color      : #ffffff;
  font-weight: 500;
  margin-top : 1rem;
  font-size  : 1.3rem;
}

.main-heading {
  font-size  : 3rem;
  font-weight: 800;
  color      : #ffffff;
  line-height: 1.1;
}

.main-heading span {
  color: #1a116a;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.726),
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.7);
    /* White border around text */
  -webkit-text-stroke: 1px white;
  /* For non-WebKit support fallback, optionally use */
  text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
}
.intro-text {
  color: #ffffff;
}


.sub-text {
  color: #1a116a;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.726),
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 0.8rem;

  /* White border around text */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.664);
  /* For non-WebKit support fallback, optionally use */
  text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
}

/* RIGHT SIDE - Form */
.form-section {
  flex           : 1;
  background     : #fff;
  padding        : 3rem;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  overflow       : hidden;
}

.form-section .form-control {
  border-radius: 8px;
  border       : 1px solid #ddd;
  padding      : 10px;
  font-size    : 0.95rem;
}

.form-section .form-control:focus {
  border-color: #3d33ff;
  box-shadow  : 0 0 0 0.2rem rgba(255, 92, 51, 0.25);
}

.form-section .send-btn {
  background   : linear-gradient(90deg, #334bff, #26096e);
  color        : #fff;
  border       : none;
  border-radius: 6px;
  font-weight  : 600;
  transition   : all 0.3s ease;
}

.form-section .send-btn:hover {
  background: linear-gradient(90deg, #1a3ef5, #2f00ff);
  transform : scale(1.03);
}


@media (max-width: 768px) {
  .offcanvas-top {
    top          : 0 !important;
    width        : 100% !important;
    left         : 0 !important;
    border-radius: 0 !important;
    height       : 100vh !important;
    padding      : 0 !important;
  }

  .booking-container {
    flex-direction: column !important;
    width         : 100% !important;
    height        : auto !important;
  }

  .promo-section,
  .form-section {
    width    : 100% !important;
    flex     : none !important;
    min-width: 100% !important;
    height   : auto !important;
  }

  .form-section {
    padding: 2rem 1rem !important;
  }

  .main-heading {
    font-size: 2rem !important;
  }
}