@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary-blue: #1A3C6E;
  --primary-blue-dark: #122B50;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E56000;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-dark);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.btn-learn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar-new {
  background-color: #0B1527;
  color: #fff;
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info-new {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info-new span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-info-new svg {
  width: 16px;
  height: 16px;
  color: #A0AEC0;
}

.opening-hours-new {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #38A169;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(56, 161, 105, 0.6);
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .top-bar-new {
    overflow: hidden;
    padding: 10px 0;
  }

  .top-bar-container {
    display: flex;
    flex-direction: row;
    width: max-content;
    gap: 40px;
    animation: marquee 15s linear infinite;
    padding: 0;
  }

  .contact-info-new {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  font-weight: 500;
  color: var(--text-dark);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent-orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-orange);
}

.footer-col p,
.footer-col li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-col a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bar-call {
  background: var(--primary-blue);
  color: white;
}

.bar-wa {
  background: #25d366;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    padding: 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .mobile-menu-btn {
    display: block;
  }

  .desktop-quote-btn {
    display: none;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 50px;
    /* Space for bottom bar */
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* Hero Slider */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.slides-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.slide-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-orange);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent-orange);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(26, 60, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Services Theme */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 250px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-premium-learn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-premium-learn:hover {
  background: #ff6b00;
  border-color: #ff6b00;
  color: #fff;
}

/* How It Works */
.how-it-works {
  background: #0B1527;
  color: var(--white);
  overflow: hidden;
}

.how-it-works .section-title h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-it-works .section-title p {
  color: #A0AEC0;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.process-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-icon-box {
  width: 90px;
  height: 90px;
  background: #ff6b00;
  /* Deep orange */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.4);
}

.process-icon-box svg {
  width: 36px;
  height: 36px;
  color: #FFF;
}

.process-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  background: #0B1527;
  color: white;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.process-step h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.process-step p {
  color: #A0AEC0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 250px;
}

@media (max-width: 768px) {
  .process-line {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.stars {
  color: #FFD700;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%231a3c6e"/></svg>');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Forms */
.contact-form,
.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-blue);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-orange);
  outline: none;
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
  content: '-';
  color: var(--accent-orange);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  padding-bottom: 20px;
}

/* Page Header */
.page-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Layout Utilities */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Cards Utility Classes */
.px-margin-mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-20 {
  margin-bottom: 5rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.bg-surface-container-lowest {
  background-color: var(--white);
}

.p-8 {
  padding: 2rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.custom-shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.border {
  border: 1px solid;
}

.border-outline-variant {
  border-color: rgba(0, 0, 0, 0.1);
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.bg-secondary-container {
  background-color: rgba(26, 60, 110, 0.08);
}

.rounded-full {
  border-radius: 9999px;
}

.justify-center {
  justify-content: center;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--primary-blue);
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-title-md,
.text-title-md {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.font-body-md,
.text-body-md {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-on-surface-variant {
  color: var(--text-light);
}

/* Material Symbols Adjustments */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Area Section */
.bg-white {
  background: #FFF;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
}

.area-title {
  color: #051A3B;
  /* Dark navy */
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.area-desc {
  color: #4A5568;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.area-list li {
  position: relative;
  padding-left: 20px;
  color: #051A3B;
  font-weight: 600;
}

.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #B25A1C;
  /* brownish dot */
  border-radius: 50%;
}

.area-map-container {
  padding: 10px;
  background: #F3E8E0;
  /* faint pink/beige border background */
  border-radius: 20px;
}

.area-map-container iframe {
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
}

/* CTA & Footer Wrapper */
.footer-wrapper {
  background: #0B1527;
  /* dark navy background */
  color: #fff;
}

.cta-banner-new {
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-new h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFF;
}

.cta-banner-new p {
  color: #A0AEC0;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.btn-call-orange {
  background: #ff6b00;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-right: 15px;
}

.btn-call-orange:hover {
  background: #C45500;
  color: white;
}

.btn-whatsapp-white {
  background: white;
  color: #0B1527;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.btn-whatsapp-white:hover {
  background: #F0F0F0;
  color: #0B1527;
}

@media (max-width: 600px) {

  .btn-call-orange,
  .btn-whatsapp-white {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
  }
}

/* New Footer */
.footer-new {
  padding: 60px 0 40px;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  color: #ff6b00;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.brand-desc {
  color: #A0AEC0;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #A0AEC0;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact .material-symbols-outlined {
  color: #ff6b00;
  font-size: 1.2rem;
}

.link-col h3,
.social-col h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-col h3 span,
.social-col h3 span {
  color: #ff6b00;
  font-weight: 900;
}

.link-col ul {
  list-style: none;
}

.link-col ul li {
  margin-bottom: 12px;
}

.link-col ul li a {
  color: #A0AEC0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.link-col ul li a:hover {
  color: white;
}

.social-col p {
  color: #A0AEC0;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: white;
  transition: background 0.3s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

/* About Us Section Styles */
.about-section {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-subtitle {
  color: #ff6b00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.8rem;
  color: #0B1527;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.about-desc {
  color: #4A5568;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0B1527;
  font-weight: 600;
}

.about-feature .material-symbols-outlined {
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.about-images-parallax {
  position: relative;
  height: 550px;
  width: 100%;
}

.parallax-img {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.parallax-img:hover {
  transform: translateY(-5px);
}

.parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-img.img-1 {
  width: 60%;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 1;
}

.parallax-img.img-2 {
  width: 48%;
  height: 240px;
  top: 40px;
  right: 0;
  z-index: 2;
}

.parallax-img.img-3 {
  width: 65%;
  height: 280px;
  bottom: 0;
  right: 5%;
  z-index: 3;
}

.about-experience {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #ff6b00;
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
  z-index: 4;
}

@media (max-width: 768px) {
  .noMo {
    display: none;
  }

  .about-images-parallax {
    height: 450px;
    margin-top: 30px;
  }

  .parallax-img.img-1 {
    width: 70%;
    height: 250px;
  }

  .parallax-img.img-2 {
    width: 45%;
    height: 180px;
    top: 20px;
  }

  .parallax-img.img-3 {
    width: 80%;
    height: 200px;
    right: 0;
  }

  .about-experience {
    left: 10px;
    bottom: 10px;
    padding: 15px 20px;
  }

  .about-title {
    font-size: 1.8rem;
  }
}

.exp-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Why Choose Us Parallax */
.why-choose-us-parallax {
  position: relative;
  background-image: url('../images/banner-04.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.why-choose-us-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 21, 39, 0.88);
  z-index: 1;
}

.why-choose-us-parallax>.container {
  position: relative;
  z-index: 2;
}

.why-choose-us-parallax .section-title h2,
.why-choose-us-parallax .section-title p {
  color: #ffffff;
}

.why-choose-us-parallax .feature-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  color: #fff;
  transition: all 0.4s ease;
}

.why-choose-us-parallax .feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 0, 0.5) !important;
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2) !important;
}

.why-choose-us-parallax .feature-card h3 {
  color: #ffffff !important;
}

.why-choose-us-parallax .feature-card p {
  color: #A0AEC0 !important;
}

.why-choose-us-parallax .feature-card .material-symbols-outlined {
  color: #ffffff !important;
}

.why-choose-us-parallax .feature-card .bg-secondary-container {
  background-color: rgba(255, 255, 255, 0.1) !important;
}