@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Baloo 2", sans-serif;
}

:root {
  --main-color: #fff;
  --text-color: #333;
  --accent: #ffb800;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --body-bg: #f8f9fa;
  --primary-text: #1a1a1a;
  --secondary-text: #6c757d;
  --border-color: #e5e7eb;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --text-primary: #212529;
  --text-secondary: #495057;
  --bg-light: #f1f3f5;
  --bg-white: #ffffff;
  --highlight-color: #f7b731;
  --divider-color: #ced4da;
  --primary: #f7b731;
  --primary-dark: #e9a800;
  --text: #333;
  --error: #dc3545;
  --bg-light: #fff;
  --primary: #f7b731;
  --dark: #111;
  --error: #e74c3c;
  --radius: 10px;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #fafbfc;
  scroll-behavior: smooth;
}

/* Navbar Styles (Already Responsive, Enhanced for Touch) */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: var(--main-color);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.navbar-logo a.logo-text {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* keeps the same text color as before */
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 65px;
  border-bottom: none;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-logo img {
  height: 75px;
  object-fit: contain;
  animation: logoRotate 0.6s ease-out;
}

@keyframes logoRotate {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}

.navbar-logo span {
  font-size: clamp(27px, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 1px;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.navbar-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  animation: fadeInUp 0.5s ease-out backwards;
}

.navbar-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.navbar-links li:nth-child(2) {
  animation-delay: 0.2s;
}
.navbar-links li:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar-links li a:hover {
  color: var(--accent);
}

.navbar-links li a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.login {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  position: relative;
}

.login a {
  text-decoration: none;
  color: var(--text-color);
}

.login a:hover {
  color: var(--accent);
}

.icon {
  width: 40px;
  height: 40px;
  background-color: #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login .icon i {
  color: var(--primary-text);
}

.demo-btn {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  border-radius: 8px;
  padding: 0.4em 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.demo-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.demo-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-btn:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-links .demo-mobile {
  display: none;
}

.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.modal-open {
  overflow: hidden;
}

.demo-modal-content {
  display: flex;
  background: #f1f1f1;
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.demo-modal-overlay.active .demo-modal-content {
  opacity: 1;
  transform: scale(0.9);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
  line-height: 1;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: #333;
  transform: rotate(90deg);
}

.modal-left {
  flex: 1;
  background: #edac00;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-left h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modal-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.modal-left ul {
  list-style-type: none;
  padding: 0;
}

.modal-left li {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}

.modal-left li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
}

.modal-right {
  flex: 1.2;
  padding: 40px;
  background: #f7f8fa;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #edac00;
  box-shadow: 0 0 0 3px rgba(237, 172, 0, 0.2);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #edac00;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #d49c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(237, 172, 0, 0.3);
}

.language-toggle {
  width: 90px;
  height: 42px;
  background: #e9e9e9;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 5px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lang-text {
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease;
}

.no-text {
  color: black;
}

.en-text {
  color: black;
}

.language-toggle.active .no-text {
  color: black;
}

.language-toggle.active .en-text {
  color: #aaa;
}

.toggle-slider {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 1px;
  left: 1px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
}

.language-toggle.active .toggle-slider {
  left: 47px;
}

.toggle-slider img {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 101;
}

.navbar-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 115px 20px 40px;
  min-height: 70vh;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.hero-content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #222;
  font-weight: 500;
  border-radius: 5px;
  padding: 2px 20px;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.badge-icon {
  color: #ffb800;
  font-size: 1.2em;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  font-weight: 600;
  margin: 0 0 30px;
  line-height: 1.3;
  color: #181818;
  padding: 0 20px;
}

.highlight {
  color: #ffb800;
  font-weight: 700;
}

.services-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-text {
  position: absolute;
  top: 0px;
  left: 20px;
  color: white;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  z-index: 2;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.4);
}

.service-large {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.service-small {
  width: 280px;
  height: 190px;
}

.service-tall {
  width: 180px;
  height: 400px;
  flex-shrink: 0;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.service-item {
  background: #f8f8f8;
}

.service-item:hover {
  background: #fff;
}

.service-item img {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.service-item:nth-child(1) img {
  animation-delay: 0.1s;
}
.service-column .service-item:nth-child(1) img {
  animation-delay: 0.2s;
}
.service-column .service-item:nth-child(2) img {
  animation-delay: 0.3s;
}
.service-item:nth-child(3) img {
  animation-delay: 0.4s;
}
.service-item:nth-child(4) img {
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Business Section */
.business {
  width: 100%;
  display: flex;
  align-items: center;
}

.business-left {
  width: 45%;
  height: 100%;
  padding: 7vw 3vw;
}

.business-left h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 4vw;
  font-weight: 700;
}

.business-left p {
  font-size: 1.6vw;
  margin-top: 10px;
  margin-bottom: 12px;
}

/* Apply Now Button */
/* Apply Now Button */
#openFormBtn {
  background-color: transparent;
  color: #111;
  padding: 12px 30px;
  border: 1px solid #111;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: all 5 ease;
  z-index: 1;
  position: relative;
}

#openFormBtn::before {
  content: "";
  position: absolute;
  background-color: #111;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}

#openFormBtn:hover::before {
  width: 100%;
}

#openFormBtn:hover {
  color: #fff;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal Content - Improved Styling */
.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 550px; /* Slightly wider for the two-column layout */
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  /* This is key for fitting on small screens */
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: bold;
  line-height: 1;
}

.close-btn:hover {
  color: #333;
}

/* Form Styling */
.form-title {
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

/* NEW: Row for side-by-side fields */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1; /* Each group takes equal space */
  margin-bottom: 0; /* Remove margin as the row handles it */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 600;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f7b731;
  box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.2);
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code-select {
  flex: 0 0 126px; /* Give the country code a fixed width */
}

.phone-number-input {
  flex: 1;
}

/* Checkbox Styling */
.checkbox-group {
  display: flex;
  align-items: center; /* Vertically align checkbox and label */
  margin-bottom: 25px;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #f7b731; /* Modern way to color checkboxes */
}

.checkbox-group label {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 500;
}

.checkbox-group a {
  color: #f7b731;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #f7b731;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #e5a620;
}

/* Error Message */
.error-message {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .modal-content {
    padding: 25px;
  }
  .form-title {
    font-size: 24px;
  }
}

.form-group select {
}

.business-right {
  width: 55%;
  height: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.business-right img {
  width: 100%;
  object-fit: contain;
  object-position: top;
}

/* Marquee */
.marquee-container {
  position: relative;
  top: -50px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #111111;
}

.marquee-track {
  display: inline-flex;
  animation: scroll 15s linear infinite;
  width: 100%;
}

.marquee-text {
  font-size: 32px;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-text:hover {
  color: var(--highlight-color);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* About Section */
.about-section {
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.15;
  color: #181818;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  position: relative;
  top: -25px;
}

.heading-line {
  display: block;
  margin-bottom: 0.5rem;
}

.highlight {
  color: var(--highlight-color, #ffb800);
  position: relative;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scaleX(0);
  animation: dividerExpand 0.8s ease-out 0.6s forwards;
}

@keyframes dividerExpand {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.divider-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--divider-color, #ffb800), #ff9500);
  transform: translateX(-100%);
  animation: dividerFill 1s ease-out 1s forwards;
}

@keyframes dividerFill {
  to {
    transform: translateX(0);
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  animation: boxSlideIn 0.8s ease-out forwards;
}

.info-box:nth-child(3) {
  animation-delay: 0.8s;
}
.info-box:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes boxSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.info-box-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffb800, #ff9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.info-box:hover .info-box-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 4px 25px rgba(109, 109, 109, 0.4);
}

.info-box-icon i {
  color: #fff;
  font-size: 24px;
}

.info-box h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

.info-box h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb800, #ff9500);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.info-box:hover h3 {
  color: #ffb800;
}

.info-box:hover h3::after {
  width: 100%;
}

.info-box p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0;
  text-align: center;
  transition: color 0.3s ease;
}

.info-box:hover p {
  color: #333;
}

.info-box p .highlight {
  font-weight: 600;
  background: linear-gradient(135deg, #ffb800, #ff9500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Feature Sections */
.feature-sections {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.feature {
  width: clamp(120px, 15vw, 180px);
  color: #555;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: featureSlideIn 0.8s ease-out forwards;
  cursor: pointer;
}

.feature:nth-child(1) {
  animation-delay: 0.1s;
}
.feature:nth-child(2) {
  animation-delay: 0.2s;
}
.feature:nth-child(3) {
  animation-delay: 0.3s;
}
.feature:nth-child(4) {
  animation-delay: 0.4s;
}
.feature:nth-child(5) {
  animation-delay: 0.5s;
}
.feature:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes featureSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature:hover {
  transform: translateY(-10px) scale(1.05);
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.feature i {
  display: block;
  font-size: clamp(40px, 6vw, 60px);
  margin-bottom: 0;
  color: #999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  animation: iconFloat 4s ease-in-out infinite;
}

.feature i:hover {
  color: rgba(0, 0, 0, 0.05);
}

.feature p {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.3;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
}

.feature p strong {
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.feature p strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb800, #ff9500);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.feature:hover p strong {
  color: #ffb800;
}

.feature:hover p strong::after {
  width: 100%;
}

.feature:hover p {
  color: #222;
  transform: translateY(-2px);
}

.feature:hover .feature-icon-wrapper i {
  color: #ffb800;
  transform: scale(1.2) rotate(5deg);
}

/* Promotion Section */
.promotion {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 60px;
}

.promo-banner-last {
  position: relative;
  background-color: var(--primary-text);
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  min-height: 350px;
  overflow: hidden;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.promo-banner-last::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background-color: var(--highlight-color);
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  z-index: 1;
}

.promo-content-last {
  flex: 1;
  padding: 2rem 3rem;
  z-index: 2;
}

.promo-content-last .sub-heading-last {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.promo-content-last .main-heading-last {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 3vw;
  margin: 0;
}

.app-badges-last {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.app-badges-last a img {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}

.app-badges-last a:hover img {
  transform: scale(1.05);
}

.promo-images-last {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  object-fit: contain;
  z-index: 2;
}

.promo-images-last img {
  max-width: 100%;
  width: 50%;
  pointer-events: none;
}

/* Footer */
.footer {
  display: flex;
  width: 100%;
  padding: 60px 40px 40px;
  gap: 3rem;
  background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 50%, #e8e8e8 100%);
  position: relative;
  overflow: hidden;
  animation: footerSlideIn 1s ease-out;
}

@keyframes footerSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-items {
  flex: 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: itemSlideIn 0.8s ease-out forwards;
}

.footer-items:nth-child(1) {
  animation-delay: 0.2s;
}
.footer-items:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-items:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes itemSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-footer-item {
  flex: 1.3;
}

.footer-logo {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-logo img {
  position: relative;
  bottom: 20px;
  height: 75px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-logo h2 {
  font-weight: 600;
  font-size: clamp(1.7rem, 2.5vw, 1.5rem);
  color: var(--text-color);
  margin: 0;
  transition: all 0.3s ease;
}

.footer-para {
  width: 85%;
  font-size: clamp(16px, 2vw, 20px);
  color: #444;
  line-height: 1.6;
  transition: color 0.3s ease;
  position: relative;
  bottom: 10px;
}

.footer-para:hover {
  color: #222;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ccc, #ddd);
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #edac00, #d49c00);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(237, 172, 0, 0.4);
  color: #fff;
}

.social-link i {
  font-size: 18px;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

.footer-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #333;
  margin: 0 0 25px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #edac00, #d49c00);
  transition: width 0.4s ease;
}

.footer-items:hover .footer-heading {
  color: #edac00;
}

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

.footer-links li {
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(10px);
}

.footer-link {
  font-size: clamp(16px, 2vw, 20px);
  text-decoration: none;
  line-height: 1.8;
  color: #555;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #edac00, #d49c00);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #edac00;
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

.copyright-section {
  position: relative;
  overflow: hidden;
}

.copyright {
  background: var(--accent);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #222;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
  animation: copyrightSlideIn 1s ease-out 0.8s both;
}

@keyframes copyrightSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.copyright-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  animation: decorationSlide 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes decorationSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Media Queries for Responsiveness */

/* Large Tablets (max-width: 1200px) */
@media (max-width: 1200px) {
  .service-large {
    width: 250px;
    height: 350px;
  }

  .service-small {
    width: 230px;
    height: 165px;
  }

  .service-tall {
    width: 150px;
    height: 350px;
  }

  .business-left {
    width: 50%;
  }

  .business-right {
    width: 50%;
  }

  .feature-sections {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature {
    width: clamp(100px, 20vw, 150px);
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-logo img {
    height: 60px;
  }

  .hero h1 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .services-row {
    gap: 15px;
  }

  .service-large {
    width: 200px;
    height: 300px;
  }

  .service-small {
    width: 180px;
    height: 140px;
  }

  .service-tall {
    width: 150px;
    height: 300px;
  }

  .business {
    flex-direction: column;
    align-items: center;
  }

  .business-left {
    width: 100%;
    padding: 5vw 2vw;
    text-align: center;
  }

  .business-left p {
    font-size: 2vw;
  }

  .business-left button {
    font-size: 2vw;
  }

  .business-right {
    width: 100%;
    margin-top: 20px;
  }

  .marquee-text {
    /* text-align: center; */
    font-size: 24px;
    padding: 10px 30px;
  }

  .about-section {
    padding: 4rem 1rem;
  }

  .section-heading {
    font-size: 32px;
  }

  .info-box {
    padding: 2rem;
  }

  .info-box p {
    text-align: center;
  }

  .feature-sections {
    padding: 60px 10px;
    gap: 1.5rem;
  }

  .feature {
    width: 33%;
  }

  .footer {
    flex-direction: column;
    padding: 40px 20px;
    gap: 2rem;
  }

  .footer-para {
    width: 100%;
  }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-actions {
    display: none; /* Hide in top bar, show in menu if needed */
  }

  .language-toggle {
    position: relative;
    right: -200px;
    bottom: 0;
  }

  .navbar-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    /* height: calc(100vh - 70px); */
    height: 100vh;
    background: var(--main-color);
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding: 2rem 0;
    transition: left 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-links.active {
    left: 0;
    opacity: 1;
  }

  .navbar-links li {
    margin: 12px 0;
  }

  .navbar-links li a {
    font-size: 1.2rem;
  }

  .hero {
    padding: 80px 10px 20px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 12px;
    padding: 2px 15px;
  }

  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 180px;
    height: 240px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 170px;
    height: 115px;
    border-radius: 13px;
  }

  .service-tall {
    width: 110px;
    height: 240px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(14px, 3vw, 18px);
    top: -10px;
    left: 10px;
  }

  .business-left h1 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
  }

  .business-left p {
    font-size: 3vw;
  }

  .business-left button {
    padding: 1vw 2vw;
    font-size: 3vw;
  }

  .marquee-text {
    font-size: 20px;
    padding: 8px 20px;
  }

  .about-container {
    max-width: 100%;
  }

  .section-heading {
    font-size: 28px;
  }

  .info-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .info-box-icon {
    width: 50px;
    height: 50px;
  }

  .info-box-icon i {
    font-size: 20px;
  }

  .info-box h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
  }

  .info-box p {
    font-size: clamp(0.85rem, 3vw, 1rem);
    text-align: center;
  }

  .feature-sections {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 40px 10px;
  }

  .feature {
    width: 45%;
    margin-bottom: 20px;
  }

  .feature i {
    font-size: clamp(30px, 8vw, 40px);
  }

  .feature p {
    font-size: clamp(10px, 2.5vw, 14px);
  }

  .promotion {
    padding: 10px 15px;
  }

  .promo-content-last {
    flex: 1.3;
  }

  .promo-banner-last::before {
    width: 45%;
  }

  .promo-content-last .main-heading-last {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
  }

  .app-badges-last {
    justify-content: left;
  }

  .app-badges-last a img {
    height: 35px;
  }

  .promo-images-last img {
    width: 30vw;
  }

  .footer {
    padding: 30px 15px;
    gap: 1.5rem;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-heading {
    font-size: clamp(18px, 4vw, 24px);
  }

  .footer-link {
    font-size: clamp(14px, 3vw, 18px);
  }

  .copyright {
    padding: 20px 10px;
    font-size: clamp(12px, 3vw, 16px);
  }
}

@media (max-width: 630px) {
  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 160px;
    height: 210px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 150px;
    height: 100px;
    border-radius: 13px;
  }

  .service-tall {
    width: 105px;
    height: 210px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(14px, 1vw, 18px);
    left: 10px;
    top: -10px;
  }
}

@media (max-width: 600px) {
  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 150px;
    height: 200px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 140px;
    height: 90px;
    border-radius: 13px;
  }

  .service-tall {
    width: 95px;
    height: 200px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(14px, 1vw, 18px);
    left: 10px;
    top: -10px;
  }
}

@media (max-width: 550px) {
  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 140px;
    height: 190px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 130px;
    height: 90px;
    border-radius: 13px;
  }

  .service-tall {
    width: 85px;
    height: 190px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(14px, 1vw, 18px);
    left: 10px;
    top: -10px;
  }

  .promo-banner-last {
    flex-direction: column;
    background-color: var(--highlight-color);
  }

  .promo-banner-last {
    /* flex: 1;s */
    align-items: start;
  }

  .promo-banner-last .main-heading-last {
    font-size: 6.3vw;
    color: #fff;
  }

  .promo-content-last .sub-heading-last {
    color: #111;
  }

  .promo-banner-last::before {
    display: none;
  }

  .promo-banner-last {
    border-radius: 1.5rem;
  }

  .promo-images-last img {
    width: 40vw;
  }
}

@media (max-width: 500px) {
  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 125px;
    height: 175px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 115px;
    height: 83px;
    border-radius: 13px;
  }

  .service-tall {
    width: 70px;
    height: 176px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(12px, 0.5vw, 18px);
    left: 10px;
    top: -10px;
  }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
  .navbar {
    height: 60px;
    padding: 0 0.5rem;
  }

  .navbar-logo img {
    height: 50px;
  }

  .navbar-logo span {
    font-size: clamp(20px, 6vw, 24px);
  }

  .navbar-toggle span {
    width: 24px;
    height: 2px;
  }

  .hero {
    padding: 70px 5px 10px;
  }

  .hero h1 {
    font-size: clamp(20px, 7vw, 28px);
    padding: 0 10px;
  }

  .business-left {
    padding: 10vw 5vw;
  }

  .business-left h1 {
    font-size: clamp(20px, 8vw, 28px);
  }

  .business-left p {
    font-size: 4vw;
  }

  .business-left button {
    padding: 3vw 6vw;
    font-size: 4vw;
  }

  .marquee-text {
    font-size: 16px;
    padding: 6px 10px;
  }

  .about-section {
    padding: 3rem 0.5rem;
    margin: 0 20px;
  }

  .section-heading {
    font-size: 24px;
  }

  .promo-banner-last {
    flex-direction: column;
    background-color: var(--highlight-color);
  }

  .promo-banner-last {
    /* flex: 1;s */
    align-items: start;
  }

  .promo-banner-last .main-heading-last {
    font-size: 6.3vw;
  }

  .promo-content-last .sub-heading-last {
    color: #111;
  }

  .promo-banner-last::before {
    display: none;
  }

  .promo-banner-last {
    border-radius: 1.5rem;
  }

  .promo-images-last img {
    width: 30vw;
  }
}

@media (max-width: 440px) {
  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 115px;
    height: 160px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 105px;
    height: 75px;
    border-radius: 13px;
  }

  .service-tall {
    width: 68px;
    height: 160px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(12px, 0.5vw, 18px);
    left: 10px;
    top: -10px;
  }
}

@media (max-width: 390px) {
  .services-row {
    flex-wrap: nowrap; /* Wrap on very small screens to prevent overflow */
    justify-content: center;
    gap: 10px;
    /* width: min(90%, 500px); */
  }

  .service-large {
    width: 95px;
    height: 160px;
    border-radius: 13px;
  }

  .service-column {
    flex-direction: column; /* Adjust column to row for better fit */
    gap: 10px;
  }

  .service-small {
    width: 90px;
    height: 75px;
    border-radius: 13px;
  }

  .service-tall {
    width: 58px;
    height: 160px;
    border-radius: 13px;
  }

  .service-text {
    font-size: clamp(12px, 0.5vw, 18px);
    left: 10px;
    top: -10px;
  }

  .promo-images-last img {
    width: 50vw;
  }
}

/* 🔽 Responsive for screens 669px and below */
/* @media (max-width: 669px) {
  .services-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .service-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-large,
  .service-small,
  .service-tall {
    width: 44vw;
    height: auto;
    max-width: 170px;
  }

  .service-text {
    font-size: 14px;
    left: 5px;
  }
} */


.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.375rem;

  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-error {
  --bs-alert-color: #c41818;
  --bs-alert-bg: #d1e7dd;
  --bs-alert-border-color: #badbcc;
}
.alert.alert-error {
  --bs-alert-color: #c41818;
  --bs-alert-bg: #d4edda;
  --bs-alert-border-color: #c3e6cb;
}