/* ==========================================================================
   COLOR PALETTE: ORANGE & DARK BLUE
   ========================================================================== */

:root {
  /* Primary Theme Colors */
  --primary-blue: #0A192F;       /* Deep dark blue for headers and primary backgrounds */
  --primary-blue-rgb: 10, 25, 47;
  --secondary-blue: #172A45;     /* Lighter dark blue for cards and accents */
  
  --accent-orange: red;      /* Vibrant orange for call-to-actions, buttons, and highlights */
  --accent-orange-hover: #E85A24;/* Darker orange for interactive hover states */
  --accent-orange-light: #FF885B;/* Soft orange for borders or subtle highlights */

  /* Neutral Light Backgrounds & Texts */
  --bg-light: #F4F7F9;           /* Soft off-white canvas for the website */
  --bg-white: #FFFFFF;           /* Pure white for content containers and cards */
  --text-main: #1C2434;          /* Off-black/very dark blue for maximum readability */
  --text-muted: #64748B;         /* Cool gray for secondary text and captions */
  --border-light: #E2E8F0;       /* Light divider lines */

  /* Global Settings */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* ==========================================================================
   BASE ELEMENT STYLING
   ========================================================================== */

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   LAYOUT & COMPONENT EXAMPLES
   ========================================================================== */

/* Navigation Header */
.site-header {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  color: var(--bg-white);
  margin: 0;
}

.nav-links a {
  color: var(--bg-light);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #11bac0;
}

/* Standard Content Cards */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(var(--primary-blue-rgb), 0.05);
}

/* Call to Action Buttons */
.btn-primary {
  background-color: #11bac0;
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   OPTIONAL: ACCENT HERO BLOCK (Dark Blue Background)
   ========================================================================== */

.hero-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--bg-white);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-section h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.8);
}






/* ==========================================================================
   TOPBAR COMPONENT (ORANGE & DARK BLUE THEME)
   ========================================================================== */

.site-topbar {
  background-color: #11bac0;
  color: var(--bg-white);
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 40px; /* Fixed height makes scroll calculation reliable */
  transition: transform 0.3s ease-in-out;
}

/* Class added by JavaScript when scrolling down */
.site-topbar.hide-topbar {
  transform: translateY(-100%);
}

/* Adjust your main header or body padding so content isn't blocked on load */
body {
  padding-top: 40px; 
}

.slide .slide-content {
    margin-top: 50%;
}
/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

/* Target mobile devices (screens smaller than 768px) */
@media (max-width: 767px) {

  
  body {
    padding-top: 0; /* Remove topbar padding on mobile */
  }
 
}





.topbar-container {
    background-color: #11bac0;
    color:#0a192f;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact, 
.topbar-actions,
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-topbar a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-topbar a:hover {
  opacity: 0.8;
}

.topbar-socials a {
  font-size: 0.95rem;
}





/* ==========================================================================
   HEADER & NAVIGATION BAR STYLES
   ========================================================================== */
.site-header {
  background-color: var(--primary-blue);
  height: var(--header-height);
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: top 0.3s ease-in-out;
}

/* Tracks layout behavior when topbar collapses via JavaScript */
.site-topbar.hide-topbar + .site-header {
  top: 0;
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 0rem;
  /*padding-left: 0px !important;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: var(--bg-white);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-left: 1px;
  float: left;
}

.logo .highlight { color: #11bac0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--bg-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover, .nav-link.active { color: #11bac0; }

/* Standard Desktop Dropdown Panel Components */
.dropdown-item { position: relative; }
.dropdown-icon { font-size: 0.75rem; transition: transform 0.2s ease; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: var(--radius);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown-menu a {
  color: var(--primary-blue);
  padding: 0.7rem 1.5rem;
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: #11bac0;
}

/* Open Dropdown on Hover for Desktop screens */
@media (min-width: 992px) {
  .dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-item:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  
}

.btn-quote {
  background-color: #11bac0;
  color: var(--bg-white);
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 24px;
  height: 3px;
  background-color: var(--bg-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   MOBILE MEDIA QUERY COMPILER (Under 991px Viewports)
   ========================================================================== */
@media (max-width: 991px) {
  .site-header { top: 30px !important; }
  body { padding-top: var(--header-height); }
  .menu-toggle { display: flex; }
  /*.desktop-only { display: none; }*/
  /*.site-topbar {display: none;}*/

  /* Mobile Active Burger Animations */
  .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Drawer Container Transforms */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-blue);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    z-index: 1000;
  }

  .nav-menu.is-active { right: 0; }
  .nav-list { flex-direction: column; width: 100%; gap: 1rem; }

  /* Smooth Staggered Item Slide-in Effects */
  .nav-list li, .nav-cta {
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    transition-delay: calc(var(--item-index) * 0.05s);
  }

  .nav-menu.is-active li, 
  .nav-menu.is-active .nav-cta {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-link { font-size: 1.2rem; width: 100%; justify-content: space-between; }
  .nav-cta { width: 100%; margin-top: 1rem; }
  .btn-quote { display: block; text-align: center; }

  /* Mobile Dropdown Logic Interception */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    min-width: 100%;
    transition: max-height 0.3s ease-out;
  }

  .dropdown-menu.open { max-height: 300px; margin-top: 0.5rem; }
  .dropdown-menu a { color: var(--bg-light); padding: 0.6rem 1rem; }
  .dropdown-item.open-icon .dropdown-icon { transform: rotate(180deg); }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
  }
  .menu-overlay.is-active { opacity: 1; visibility: visible; }
}






/* ==========================================================================
   HERO SLIDER SYSTEM (ORANGE & DARK BLUE)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  max-height: calc(100vh - (var(--topbar-height) + var(--header-height)));
  min-height: 550px;
  overflow: hidden;
  background-color: var(--primary-blue);
}
@media (max-width: 1400px) {
    .slide .slide-content {
      margin-top: 50%;
  }
}

/* On mobile viewports where the topbar turns display: none */
@media (max-width: 991px) {
  .hero-slider-section {
    height: 450px;
  }
  .slide .slide-tag{ display: none;}
.slide .slide-title{font-size: 24px;}
.slide .slide-desc, .slide .btn-primary, .slide .btn-secondary  {font-size: 12px;}
.slide .slide-content {
  margin-top: 15% !important;
}
   
}



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

/* Slide Base Configurations */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Image Slow-Zoom Burn Effect */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease-out;
  z-index: -1;
}

.slide.active .slide-bg {
  transform: scale(1);
}
    .hero-slider-section img{
text-align: center;
align-items: center;
width: 100%;
opacity: 0.2;
/* position: absolute; */
bottom: 0;
    }
    
/* Typography Container & Staggered Elements */
.slide .slide-content {
  max-width: 850px;
  margin-top: 43%;
  text-align: center;
  padding: 0 2rem;
  color: var(--bg-white);
}

.slide-tag, .slide-title, .slide-desc, .slide-actions {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
}

/* Dynamic Animation Delay Sequence */
.slide.active .slide-tag      { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.slide.active .slide-title    { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.slide.active .slide-desc     { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.slide.active .slide-actions  { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

.slide-tag {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.2);
  color: #11bac0;
  border: 1px solid #11bac0;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-desc {
  font-size: 1.25rem;
  color: rgba(244, 247, 249, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Button Mechanics */
.slide-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.slide-actions .btn-primary {
  background-color: #11bac0;
  color: var(--bg-white);
  padding: 0.85rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.slide-actions .btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

/* Navigation Controls Structure */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(10, 25, 47, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: #11bac0;
  border-color: #11bac0;
}

.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* Pagination Dots Layout */
.slider-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

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

.pagination-dot.active {
  background-color: #11bac0;
  width: 30px;
  border-radius: 20px;
}

/* ==========================================================================
   MOBILE SCALING MEDIA CONFIGURATION
   ========================================================================== */
@media (max-width: 767px) {
    .hero-slider-section{max-height:450px;}
  .slide-title { font-size: 2.2rem; }
  .slide-desc { font-size: 1rem; margin-bottom: 2rem; }
  .slide-actions { flex-direction: column; gap: 1rem; width: 100%; max-width: 280px; margin: 0 auto; }
  .slider-arrow { display: none; } 
  /* Clear screen space on mobile phones */
}



/* ==========================================================================
   QUALITY ASSURANCE DESIGN SYSTEM (ORANGE & DARK BLUE)
   ========================================================================== */
.quality-section {
  background-color: var(--bg-light);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.quality-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Elements Block */
.quality-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.quality-subtitle {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.quality-title {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.quality-bar {
  width: 60px;
  height: 4px;
  background-color: #11bac0;
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.quality-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Interactive Grid Framework */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Card Mechanics & Interactive Hover Animations */
.quality-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s;
  
  /* Initial State for Viewport Reveal Animation */
  opacity: 0;
  transform: translateY(40px);
}

/* Viewport Entry Trigger State */
.quality-section.is-visible .quality-card {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.8s ease-out;
  transition-delay: calc(var(--card-index) * 0.15s);
}

/* Card Elevate State on Hover */
.quality-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
}

/* Internal Glow Overlay Radial Gradient */
.card-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.quality-card:hover .card-bg-glow {
  opacity: 1;
}

/* Top Row Components */
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.quality-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(10, 25, 47, 0.03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: var(--transition);
}

.quality-card:hover .quality-icon-box {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.quality-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgb(47 22 10 / 39%);
  transition: color 0.4s ease;
}

.quality-card:hover .quality-number {
  color: rgba(255, 107, 53, 0.15);
}

/* Text Content Configurations */
.quality-card .card-title {
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.quality-card .card-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Inline Checklists */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-list li i {
  color: #11bac0;
  font-size: 0.95rem;
}

/* Trust Footer Call-To-Action Banner */
.quality-footer-banner {
  background-color: var(--primary-blue);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-white);
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.15);
}

.footer-banner-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-banner-text i {
  color: #11bac0;
  font-size: 1.5rem;
}

.btn-quality-cta {
  background-color: #11bac0;
  color: var(--bg-white);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-quality-cta:hover {
  background-color: var(--accent-orange-hover);
}

.btn-quality-cta i {
  transition: transform 0.2s ease;
}

.btn-quality-cta:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATION
   ========================================================================== */
@media (max-width: 991px) {
  .quality-title { font-size: 2rem; }
  .quality-footer-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  .footer-banner-text { flex-direction: column; gap: 0.5rem; }
  .btn-quality-cta { width: 100%; justify-content: center; }
}




/* ==========================================================================
   SERVICES SECTION STYLING (ORANGE & DARK BLUE)
   ========================================================================== */
.services-section {
  background-color: #FFFFFF;
  padding: 6rem 2rem;
  position: relative;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Container Frame */
.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4.5rem auto;
}

.services-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.services-heading {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.services-divider {
  width: 50px;
  height: 4px;
  background-color: #11bac0;
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.services-subtext {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Services Dynamic Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
}

/* Professional Service Box Component with Layered Soft Shadows */
.service-box {
  background-color: var(--bg-white);
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(14, 30, 62, 0.06);
  
  /* Layered High-Fidelity Shadow Structure */
  box-shadow: 
    0 4px 6px -1px rgba(10, 25, 47, 0.03),
    0 10px 20px -3px rgba(10, 25, 47, 0.06),
    0 25px 40px -10px rgba(10, 25, 47, 0.04);
    
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s;
              
  /* Scroll reveal starting states */
  opacity: 0;
  transform: translateY(30px);
}

/* Card Elevate & Accent Transition on Mouse Hover */
.service-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.25);
  box-shadow: 
    0 8px 12px -2px rgba(10, 25, 47, 0.04),
    0 20px 30px -4px rgba(10, 25, 47, 0.1),
    0 35px 60px -12px rgba(10, 25, 47, 0.12);
}

/* Left Image Container Area */
.service-image-wrapper {
  position: relative;
  width: 40%;
  min-width: 180px;
  overflow: hidden;
}

.service-img {
  width: auto;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box:hover .service-img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #11bac0;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

/* Right Text Container Details */
.service-details {
  width: 60%;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
}

.service-icon-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 1.3rem;
  color: #11bac0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Inline Checklists */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.service-bullets li {
  font-size: 0.825rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li i {
  color: rgba(10, 25, 47, 0.4);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.service-box:hover .service-bullets li i {
  color: #11bac0;
}

/* Box Footer Action Components */
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: auto;
}

.service-pricing {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-pricing strong {
  color: var(--primary-blue);
  font-size: 1.1rem;
  display: block;
}

.service-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.service-link i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.service-box:hover .service-link {
  color: #11bac0;
}

.service-box:hover .service-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   VIEWPORT SCROLL REVEAL CLASS DEFINITIONS
   ========================================================================== */
.services-section.is-active .service-box {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.8s ease-out;
  transition-delay: calc(var(--box-index) * 0.15s);
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONFIGURATION
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 650px) {
  .services-heading { font-size: 2rem; }
  .service-box {
    flex-direction: column;
  }
  .service-image-wrapper {
    width: 100%;
    height: 200px;
  }
  .service-details {
    width: 100%;
    padding: 1.75rem;
  }
}





/* ==========================================================================
   ABOUT US SECTION STYLING (ORANGE & DARK BLUE)
   ========================================================================== */
.about-section {
  background-color: #858c974f;
  padding: 6rem 2rem;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* --- Left Column: Visual Visual Layout Elements --- */
.about-visuals {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.image-grid {
  position: relative;
  display: block;
  height: 480px;
}

.img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  /* box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
  border: 4px solid #FFFFFF; */
}

.main-img-box {
  width: 75%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 2;
}

.sub-img-box {
  width: 60%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

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

.img-wrapper:hover .about-img {
  transform: scale(1.05);
}

/* Floating Experience Overlay Emblem */
.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--primary-blue);
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(10, 25, 47, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  text-align: center;
  z-index: 3;
  border-bottom: 4px solid #11bac0;
}

.exp-years {
  font-size: 2.5rem;
  font-weight: 800;
  color: #11bac0;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Right Column: Corporate Copy Layout --- */
.about-content {
  display: flex;
  flex-direction: column;
}

.about-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-heading {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.about-divider {
  width: 60px;
  height: 4px;
  background-color: #11bac0;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--primary-blue);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.about-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Structural Feature Bullet Layout */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  background-color: rgba(255, 107, 53, 0.1);
  color: #11bac0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  color: var(--primary-blue);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Milestone Numerical Statistics Counters */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-box {
  border-left: 3px solid var(--border-light);
  padding-left: 1rem;
  transition: border-color 0.3s;
}

.stat-box:hover {
  border-color: #11bac0;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: #11bac0;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0.5rem 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-heading { font-size: 2rem; }
  .about-visuals {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding-right: 0;
  }
  .image-grid { height: 420px; }
  .main-img-box { height: 320px; }
  .sub-img-box { height: 220px; }
  .experience-badge { left: 10px; bottom: 20px; }
}

@media (max-width: 500px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stat-box {
    border-left: none;
    border-bottom: 2px solid var(--border-light);
    padding-left: 0;
    padding-bottom: 0.75rem;
  }
  .image-grid { height: 350px; }
  .main-img-box { width: 85%; height: 260px; }
  .sub-img-box { width: 65%; height: 180px; }
}







/* ==========================================================================
   TESTIMONIAL ACCENT SECTION (ORANGE & DARK BLUE)
   ========================================================================== */
.testimonial-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem;
  overflow: hidden;
  position: relative;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

/* --- Left Column Info Frame --- */
.testimonial-info {
  display: flex;
  flex-direction: column;
}

.review-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-heading {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.review-divider {
  width: 50px;
  height: 4px;
  background-color: #11bac0;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.review-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Google Meta Trust Badging */
.google-trust-box {
  background-color: var(--bg-light);
  padding: 1.25rem;
  border-radius: 10px;
  border-left: 4px solid #11bac0;
  margin-bottom: 2.5rem;
}

.rating-stars i {
  color: #FFB100;
  font-size: 1.1rem;
  margin-right: 0.2rem;
}

.rating-text {
  display: block;
  font-size: 0.875rem;
  color: var(--primary-blue);
  margin-top: 0.5rem;
}

/* Arrow Interaction Interface Elements */
.review-controls {
  display: flex;
  gap: 1rem;
}

.review-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.04);
}

.review-arrow:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
}

/* --- Right Column Slider Drawer --- */
.testimonial-slider-wrap {
  position: relative;
  width: 100%;
  min-height: 340px;
}

.testimonial-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Card Design & Layered Soft Depth Shadows */
.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  border-radius: 16px;
  padding: 3rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s ease-out,
              visibility 0.6s;
  
  box-shadow: 
    0 10px 30px -5px rgba(10, 25, 47, 0.05),
    0 25px 50px -12px rgba(10, 25, 47, 0.03);
}

/* Slider Reveal Activation States */
.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.card-quote-icon {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 3rem;
  color: rgba(255, 107, 53, 0.08);
}

.review-stars {
  color: #FFB100;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.review-content {
  color: var(--text-main);
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Reviewer Profile Row Elements */
.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.15);
}

.reviewer-details h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.reviewer-details span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONTEXT INTERFACES
   ========================================================================== */
@media (max-width: 991px) {
  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .review-heading { font-size: 2rem; }
  .google-trust-box { margin-bottom: 1.5rem; }
  .review-controls { order: 2; margin-top: 1rem; }
  .testimonial-slider-wrap { min-height: 380px; }
}

@media (max-width: 600px) {
  .testimonial-card { padding: 2rem; }
  .review-content { font-size: 1rem; line-height: 1.6; }
  .card-quote-icon { display: none; }
  .testimonial-slider-wrap { min-height: 420px; }
}






/* ==========================================================================
   OUR CLIENTS LOGO SYSTEM (ORANGE & DARK BLUE)
   ========================================================================== */
.clients-section {
  background-color: var(--bg-light);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Grid Styling */
.clients-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.clients-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.clients-heading {
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.clients-subtext {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Infinite Marquee Slider Layout --- */
.logo-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  display: flex;
}

/* Linear Gradient Fade Masks on Sides for Soft Depth Look */
.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.logo-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.logo-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

/* Moving Tape Track Runner */
.logo-track {
  display: flex;
  width: calc(240px * 14); /* Dynamically match (single slide width) * (total count) */
  animation: marqueeRun 25s linear infinite;
}

/* Pause scroll when a user hovers over a brand logo */
.logo-marquee-wrapper:hover .logo-track {
  animation-play-state: paused;
}

.logo-slide {
  width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* Professional Monochromatic Brand Container */
.client-logo-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  width: 180px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Note: You can replace the text span inside the HTML with clean corporate <img src="..." alt=""> files */
.client-logo-box span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: -0.5px;
  transition: color 0.3s, opacity 0.3s;
}

/* Dynamic Brand Highlight on Hover */
.client-logo-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.25);
  box-shadow: 0 10px 20px rgba(10, 25, 47, 0.06);
}

.client-logo-box:hover span {
  color: var(--primary-blue);
  opacity: 1;
}

/* --- Pure CSS Marquee Core Keyframes --- */
@keyframes marqueeRun {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 7)); /* Moves across half track array length */
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN VIEWPORTS
   ========================================================================== */
@media (max-width: 767px) {
  .clients-heading { font-size: 1.65rem; }
  .logo-marquee-wrapper::before,
  .logo-marquee-wrapper::after {
    width: 60px; /* Compress edge gradients on tighter smartphone rows */
  }
}






/* ==========================================================================
   REQUEST A QUOTE LEAD GENERATION DESIGN SYSTEM
   ========================================================================== */
.quote-section {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 6rem 2rem;
  position: relative;
}

.quote-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* --- Left Column Info Structural Layout --- */
.quote-info-panel h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

.quote-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.quote-divider {
  width: 50px;
  height: 4px;
  background-color: #11bac0;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.quote-lead {
  color: rgba(244, 247, 249, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Bullets Trust Alignment */
.quote-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-bullet {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.bullet-icon {
  background-color: rgba(255, 107, 53, 0.15);
  color: #11bac0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bullet-text h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin: 0 0 0.25rem 0;
}

.bullet-text p {
  color: rgba(244, 247, 249, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.quote-support-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.quote-support-footer span {
  font-size: 0.85rem;
  color: rgba(244, 247, 249, 0.6);
  display: block;
  margin-bottom: 0.5rem;
}

.support-phone {
  font-size: 1.4rem;
  color: #11bac0;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Right Column Form Modular Block --- */
.quote-form-panel {
  background-color: #ffffff80;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 700;
}

.form-group label .required {
  color: #11bac0;
}

/* Interactive Input Element Fields wrappers */
.input-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.3s;
}

.pickup-marker { color: #22C55E; } /* Green Start Accent */
.dest-marker { color: #11bac0; }   /* Red Target Accent */

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  box-sizing: border-box;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.text-area-wrapper .text-area-icon {
  top: 1.25rem;
  transform: none;
}

.input-wrapper textarea {
  padding-top: 0.9rem;
  resize: vertical;
  font-family: inherit;
}

/* Focused Highlight Layout Transitions */
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: #11bac0;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper textarea:focus + .text-area-icon {
  color: #11bac0;
}

/* Action Submit Elements Button */
.btn-submit-quote {
  width: 100%;
  background-color: #11bac0;
  border: none;
  color: #FFFFFF;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-submit-quote:hover {
  background-color: var(--accent-orange-hover);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn-submit-quote:hover .btn-arrow {
  transform: translateX(4px);
}

.form-privacy-note {
  font-size: 0.75rem;
  color: #dcebff;
  text-align: center;
  margin: 1.25rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN QUERY ADAPTATION
   ========================================================================== */
@media (max-width: 991px) {
  .quote-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .quote-info-panel h2 { font-size: 2rem; }
  .quote-form-panel { padding: 2rem; }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .quote-form-panel { padding: 1.5rem 1.25rem; }
}





/* ==========================================================================
   PROFESSIONAL CONTACT & GEOLOCATION DESIGN SYSTEM (ORANGE & DARK BLUE)
   ========================================================================== */
.contact-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* --- Left Column Elements --- */
.contact-details-panel {
  display: flex;
  flex-direction: column;
}

.contact-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-heading {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

.contact-divider {
  width: 50px;
  height: 4px;
  background-color: #11bac0;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.contact-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Communication List Elements Layout */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon-box {
  background-color: var(--bg-light);
  color: var(--primary-blue);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.contact-info-item:hover .info-icon-box {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
}

.info-text-box h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
}

.info-text-box p {
  color: var(--text-main);
  font-size: 0.95rem;
  margin: 0 0 0.2rem 0;
  line-height: 1.5;
}

.info-text-box p a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.info-text-box p a:hover {
  color: #11bac0;
}

/* Social Icon Blocks */
.contact-social-row {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-social-row span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-social-links {
  display: flex;
  gap: 1rem;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.contact-social-links a:hover {
  background-color: #11bac0;
  color: var(--bg-white);
  border-color: #11bac0;
  transform: translateY(-2px);
}

/* --- Right Column Embedded Map Components --- */
.contact-map-panel {
  width: 100%;
  height: 100%;
}

.map-responsive-frame {
  position: relative;
  width: 100%;
  padding-bottom: 90%; /* Map aspect-ratio controls */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 
    0 10px 30px -5px rgba(10, 25, 47, 0.05),
    0 25px 60px -15px rgba(10, 25, 47, 0.08);
}

.map-responsive-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-heading { font-size: 2rem; }
  .map-responsive-frame {
    padding-bottom: 60%; /* Make map wider than it is tall on tablet viewports */
  }
}

@media (max-width: 600px) {
  .contact-section { padding: 4rem 1.25rem; }
  .map-responsive-frame {
    padding-bottom: 85%; /* Return to square canvas ratio on small smartphones */
  }
  .contact-social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}





/* ==========================================================================
   INTEGRATED HIGH-AUTHORITY FOOTER DESIGN SYSTEM
   ========================================================================== */
.site-footer {
  background-color: var(--primary-blue);
  color: rgba(244, 247, 249, 0.75);
  padding-top: 5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Grid Matrix Assignment */
.footer-top .footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Typography Hierarchy */
.footer-title {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  position: relative;
}

/* Subtle accent line below section titles */
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #11bac0;
}

/* --- Brand Info Box Styles --- */
.footer-logo a {
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.footer-logo .highlight {
  color: #11bac0;
}

.brand-desc {
  margin: 1.25rem 0 1.5rem 0;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
  background-color: #11bac0;
  border-color: #11bac0;
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* --- Menu Nav List Styles --- */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-menu a i {
  font-size: 0.75rem;
  color: #11bac0;
  transition: transform 0.2s;
}

.footer-menu a:hover {
  color: var(--bg-white);
}

.footer-menu a:hover i {
  transform: translateX(3px);
}

/* --- Contact Info List Styles --- */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-details li i {
  color: #11bac0;
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-details li a {
  color: inherit;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-details li a:hover {
  color: var(--bg-white);
}

.contact-details .sub-link {
  margin-top: 0.25rem;
}

.contact-details address {
  font-style: normal;
  font-weight: 500;
  color: rgba(244, 247, 249, 0.85);
}

/* --- Compact Map Container Styles --- */
.footer-map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--secondary-blue);
  height: auto;
}

/* --- Bottom Legal Row Styles --- */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-row p {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: var(--bg-white);
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONTEXT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-top .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 650px) {
  .site-footer {
    padding-top: 4rem;
  }
  .footer-top .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-title {
    margin-bottom: 1.25rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}





/* ==========================================================================
   PRIVACY CONTENT INTERFACE DESIGN SYSTEM (ORANGE & DARK BLUE)
   ========================================================================== */
.privacy-section {
  background-color: var(--bg-white);
  padding: 5rem 2rem;
  position: relative;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* --- Left Column: Sticky Aside Sidebar Layout --- */
.privacy-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.sidebar-sticky-box {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
}

.sidebar-sticky-box h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.sidebar-nav a i {
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.sidebar-nav a.active i {
  color: #11bac0;
}

.sidebar-help-box {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  text-align: center;
}

.sidebar-help-box i {
  color: #11bac0;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.sidebar-help-box p {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.sidebar-help-box a {
  color: #11bac0;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-help-box a:hover {
  color: var(--accent-orange-hover);
}

/* --- Right Column: Text Layout Elements --- */
.privacy-content-panel {
  display: flex;
  flex-direction: column;
}

.policy-meta-block {
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.policy-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.policy-main-heading {
  color: var(--primary-blue);
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}

.policy-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

.policy-intro {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin: 0;
}

/* Core Document Text Segments */
.policy-segment {
  margin-bottom: 3.5rem;
}

.policy-segment h2 {
  color: var(--primary-blue);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-segment h2 i {
  color: #11bac0;
  font-size: 1.3rem;
}

.policy-segment p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.policy-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-bullets li {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

/* custom orange circle bullets */
.policy-bullets li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #11bac0;
}

/* Trust Highlight Warning Callout Box */
.policy-highlight-box {
  background-color: rgba(255, 107, 53, 0.05);
  border-left: 4px solid #11bac0;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  color: var(--primary-blue);
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-highlight-box i {
  color: #11bac0;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.policy-footer-note a {
  color: #11bac0;
  text-decoration: none;
  font-weight: 700;
}

.policy-footer-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONTEXT COMPILER
   ========================================================================== */
@media (max-width: 991px) {
  .privacy-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .policy-main-heading { font-size: 2.2rem; }
  .privacy-section { padding: 4rem 1.25rem; }
}





/* ==========================================================================
   TERMS OF SERVICE CONTENT SYSTEM ARCHITECTURE (ORANGE & DARK BLUE)
   ========================================================================== */
.terms-section {
  background-color: var(--bg-white);
  padding: 5rem 2rem;
  position: relative;
}

.terms-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* --- Left Column Sidebar Layout --- */
.terms-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

/* --- Right Column Text Formatting Framework --- */
.policy-meta-block {
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.policy-tag {
  color: #11bac0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.policy-main-heading {
  color: var(--primary-blue);
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}

.policy-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

.policy-intro {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin: 0;
}

/* Document Text Compartment Blocks */
.policy-segment {
  margin-bottom: 3.5rem;
}

.policy-segment h2 {
  color: var(--primary-blue);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-segment h2 i {
  color: #11bac0;
  font-size: 1.3rem;
}

.policy-segment p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.policy-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-bullets li {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

/* Custom Orange Dot Bullets */
.policy-bullets li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #11bac0;
}

/* Risk Alert/Highlight Warning Callout Box */
.policy-highlight-box {
  background-color: rgba(239, 68, 68, 0.04); /* Soft red indicator tint */
  border-left: 4px solid red;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  color: var(--primary-blue);
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-highlight-box i {
  color: #11bac0;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.policy-footer-note a {
  color: #11bac0;
  text-decoration: none;
  font-weight: 700;
}

.policy-footer-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE COMPILER VIEWPORTS
   ========================================================================== */
@media (max-width: 991px) {
  .terms-container { grid-template-columns: 1fr; gap: 0; }
  .policy-main-heading { font-size: 2.2rem; }
  .terms-section { padding: 4rem 1.25rem; }
}





/* Base Styling */


/* Gallery Section Layout */
.gallery-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #0b2265; /* Corporate Blue */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive CSS Grid Container */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Gallery Individual Cards */
.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    cursor: pointer;
    height: 250px;
}

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

/* Slide-up Text Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 34, 101, 0.9), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #f1f1f1;
    font-size: 0.95rem;
}

/* Interaction Effects */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Core Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggering the animation load for individual items */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
