/* ── Color Palette ── */
:root {
    --grad-1-start: #0B2B5B;
    --grad-1-end: #073780;
    --grad-2-start: #0f3460;
    --grad-2-end: #1a1a5e;
    --grad-3-start: #1a1a3e;
    --grad-3-end: #0d1b3e;
    --grad-4-start: #0f2b5e;
    --grad-4-end: #1a1a4e;
    --accent-gold: #fc9352;
    --accent-orange: #e96517;
    --text-light: #ffffff;
    --text-muted-light: rgba(255, 255, 255, 0.75);
    --bg-section: #f5f7fc;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 24px 48px rgba(0, 0, 0, 0.16);
}

body{
    font-family:Segoe UI,sans-serif;
}

.bg-theme1{
    background:var(--accent-orange);color:#fff;
}
.bg-theme2{
    background:var(--grad-1-start);color:#fff;
}
/* Top Bar Container */
.swp-top-bar {
    background-color: #0066cc; /* Rich corporate blue from screenshot */
    color: #ffffff;
    font-size: 0.85rem;
    padding: 4px 0 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text Links & Info */
.swp-top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.swp-top-bar a:hover {
    color: #ffaa00; /* Subtle orange hover */
}

/* Orange Highlight Labels for Reg Numbers & Icons */
.swp-text-orange {
    color: #ff6600;
    font-weight: 700;
}

/* Vertical Divider Lines */
.swp-top-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

/* Social Icons Styling */
.swp-social-icons a {
    font-size: 0.9rem;
    margin-left: 10px;
    opacity: 0.9;
}

.swp-social-icons a:hover {
    opacity: 1;
    color: #ffaa00;
}

.hero{
padding:210px 0 150px 0;
color:#fff;

}

.hero h1{
font-size:55px;
font-weight:700;
}

.hero p{
font-size:20px;
margin:20px 0;
}

.btn-orange{
background:#ff7b00;
color:#fff;
padding:14px 35px;
font-weight:600;
border-radius:50px;
}




/* Hero Container Setup */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0f172a;
  padding: 70px 0 70px 0;
}

/* Background Image Slides Wrapper */
.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Base Image Slide States */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
}

/* HTML Image Optimization */
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark layout overlay for safety & legibility */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 2;
}

/* Interactive Content Level Setup */
.hero-interactive-content {
  position: relative;
  z-index: 3;
}

/* Content Slide Swapping Container */
.hero-content-slides-wrapper {
  position: relative;
  width: 100%;
}

.hero-content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0.6s;
}

/* Active State for Content Slide */
.hero-content-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0s;
}

/* Left Column Styling */
.hero-badge {
  display: inline-block;
  background-color: #f5a623;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-btn {
  background-color: var(--accent-orange);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-btn:hover, .hero-btn:focus {
  background-color: transparent;
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

/* Right Column: Custom Stylings for your Form Card */
.hero-enquiry-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 0 25px 30px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.text-dark-blue {
  color: #162a5b;
}

/* Form Input Enhancements */
.custom-input {
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 11px 15px !important;
  font-size: 0.9rem !important;
  color: #1e293b !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-input:focus {
  border-color: #162a5b !important;
  box-shadow: 0 0 0 3px rgba(22, 42, 91, 0.15) !important;
}

.custom-select {
  height: calc(2.45rem + 11px);
}

/* Captcha Layout Wrapper */
.captcha-img-wrapper {
  background: #dcdce6;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(2.45rem + 6px);
  overflow: hidden;
}

.captcha-img-wrapper img {
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Submit CTA Action Button */
.btn-cta {
  background: #162a5b !important;
  color: #ffffff !important;
  padding: 12px 15px !important;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(22, 42, 91, 0.2);
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.btn-cta:hover {
  background: var(--accent-orange) !important;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  transform: translateY(-1px);
}


/* Parsley Errors Aesthetic Polish */
.parsley-errors-list {
  list-style: none;
  padding: 0;
  margin: 2px 0 0 0;
  color: #ef4444;
  font-size: 0.75rem;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-slider-section {
    padding: 60px 0 60px 0;
  }
  .hero-slider-section .hero-title {
    font-size: 2.4rem !important;
  }
  .hero-enquiry-card {
    margin-top: 25px;
    padding: 20px;
  }
}




  /* ───────── ANIMATIONS ───────── */

  .reveal.visible { opacity: 1; transform: none; }
  .dropdown {
  position: relative;
}
.counter{

background:#052c65;
color:#fff;
padding:70px 0;

}

@media(max-width:768px){
.hero h1{
font-size:38px;
}

}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.733);
  background-color: #fff;
  transition: all 0.3s ease;
  padding: 0;
}
.navbar-expand-lg .navbar-nav {align-items: center;}

.navbar-brand {
  font-weight: 700;
  font-size: 26px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 15px 14px !important;
  color: var(--grad-1-start);
  font-size: 15px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-orange);
}

/* Smooth Desktop Hover Interaction Map */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.2s ease-in-out;
  }
}

.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(69,0,37,.12);
  padding: 8px 0;
}

.dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(160, 1, 85, 0.05);
  color: var(--primary-color);
  padding-left: 22px;
}
.enq_btn{
    color: #fff !important;
    background-color: var(--accent-orange);
    padding: 8px 20px !important;
    border-radius: 30px;
    margin-left: 50px;
    text-decoration: none;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1240px;
  }
}

/* --- Mobile Device Layout Target Fixes --- */
.offcanvas {
  width: 300px;
}

/* Fixes the far alignment drifting and recovers missing arrow hooks on mobile views */
@media (max-width: 991.98px) {
  /* Targets both native collapsed lists and cloned offcanvas scripts */
  .navbar-collapse .navbar-nav,
  .offcanvas-body .navbar-nav {
    flex-direction: column !important;
    width: 100% !important;
    padding: 10px 0;
    margin: 0 !important;
  }

  .navbar-collapse .nav-item,
  .offcanvas-body .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #f5f2f4;
  }

  .navbar-collapse .nav-link,
  .offcanvas-body .nav-link {
    padding: 14px 8px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    box-sizing: border-box;
  }

  /* Force Custom Cross-Platform Dropdown Chevron Icons */
  .navbar-collapse .dropdown-toggle::after,
  .offcanvas-body .dropdown-toggle::after {
    display: inline-block !important;
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    border-right: 2px solid var(--accent-orange) !important;
    border-bottom: 2px solid var(--accent-orange) !important;
    border-top: 0 !important;
    border-left: 0 !important;
    margin-left: auto !important;
    margin-right: 4px;
    transform: rotate(45deg) !important;
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
  }

  /* Handles active toggle chevron flipping cleanly */
  .navbar-collapse .dropdown-toggle.show::after,
  .offcanvas-body .dropdown-toggle.show::after {
    transform: rotate(225deg) !important; /* Fixed break rotation point offset */
    border-color: var(--primary-color) !important;
  }

  /* Submenu Nested Block Cleanup Layouts */
  .navbar-collapse .dropdown-menu,
  .offcanvas-body .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    box-shadow: none !important;
    background-color: #fdfbfd !important; /* Light brand background tint */
    padding: 0 0 0 16px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
  }

  .navbar-collapse .dropdown-item,
  .offcanvas-body .dropdown-item {
    padding: 12px 8px !important;
    font-size: 14px !important;
    color: var(--text-dark) !important;
    border-bottom: 1px solid #fdfbfd !important;
    white-space: normal !important; /* Protects word wrapping issues on small viewports */
    display: block !important;
    width: 100% !important;
  }

  .navbar-collapse .dropdown-item:last-child,
  .offcanvas-body .dropdown-item:last-child {
    border-bottom: none !important;
  }
  
  .navbar-collapse .dropdown-item:hover,
  .offcanvas-body .dropdown-item:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
  }
  .enq_btn{
    margin: 15px 0 0 0;
}
}

/* --- Framework Animation States --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width:991.98px){

.offcanvas{
    width:320px;
}

.offcanvas-body{
    padding:0;
}

.offcanvas-body .navbar-nav{
    width:100%;
    display:block;
    margin:0;
    padding:0;
}

.offcanvas-body .nav-item{
    width:100%;
    list-style:none;
    border-bottom:1px solid #ececec;
}

.offcanvas-body .nav-link{

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;

    padding:15px 20px !important;

    color:#222;

    font-weight:500;

    text-decoration:none;
}

.offcanvas-body .nav-link:hover{
    color:#b50500;
}

.offcanvas-body .dropdown-toggle::after{

    margin-left:auto;

    transition:.3s;

}

.offcanvas-body .dropdown-toggle.show::after{

    transform:rotate(-180deg);

}

.offcanvas-body .dropdown-menu{

    position:static !important;

    transform:none !important;

    float:none !important;

    width:100%;

    display:none;

    margin:0;

    padding:0;

    border:0;

    border-radius:0;

    box-shadow:none;

    background:#fafafa;

}

.offcanvas-body .dropdown-menu.show{

    display:block;

}

.offcanvas-body .dropdown-item{

    display:block;

    width:100%;

    padding:12px 40px;

    color:#555;

    font-size:14px;

    border-top:1px solid #ececec;

    white-space:normal;

}

.offcanvas-body .dropdown-item:hover{

    color:#b50500;

    background:#fff;

    padding-left:48px;

}

}

/* ── Base ── */
.about-us-section {
    background: var(--bg-section);
    padding: 80px 0;
    font-family: 'poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Cards ── */
.about-card {
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        background 0.4s ease;
    cursor: default;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Gradient variants */
.card-gradient-1 {
    background: linear-gradient(145deg, var(--grad-1-start), var(--grad-1-end));
    color: var(--text-light);
}
.card-gradient-2 {
    background: linear-gradient(145deg, var(--grad-2-start), var(--grad-2-end));
    color: var(--text-light);
}
.card-gradient-3 {
    background: linear-gradient(145deg, var(--grad-3-start), var(--grad-3-end));
    color: var(--text-light);
}
.card-gradient-4 {
    background: linear-gradient(145deg, var(--grad-4-start), var(--grad-4-end));
    color: var(--text-light);
}

.about-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
}

.about-card .icon-box i {
    font-size: 2.4rem;
    color: var(--accent-gold);
    /* filter: drop-shadow(0 4px 12px rgba(247, 151, 30, 0.25)); */
}

.about-card .icon-box-sm i {
    font-size: 2.4rem;
    color: var(--accent-gold);
}

.about-card h4,
.about-card h6 {
    letter-spacing: 0.04em;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-card p {
    color: var(--text-muted-light);
    line-height: 1.5;
}

/* ── Image Wrapper ── */
.about-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    background: #e8ecf4;
    height: 100%;
    min-height: 280px;
}

.about-img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: cover;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.04);
}

/* Floating badge on image */
.image-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .image-floating-badge {
    transform: translateY(-4px);
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.03em;
    line-height: 1.2;
    max-width: 80px;
}

/* ── Content Box ── */
.about-content-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 32px 28px;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-content-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(240, 194, 127, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content-box:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.07);
}

.tag-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.10);
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid rgba(247, 151, 30, 0.12);
}

.about-content-box h2 {
    font-size: 2rem;
    color: #0b1a33;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name {
    color: #0b1a33;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 4px;
}

.highlight-safety {
    color: #1a3a6a;
    font-weight: 600;
}
.highlight-reliability {
    color: #d4811e;
    font-weight: 600;
}
.highlight-satisfaction {
    color: #1a3a6a;
    font-weight: 600;
}

.about-content-box .text-secondary {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    padding: 10px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(22, 33, 62, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-cta i {
    transition: transform 0.35s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(22, 33, 62, 0.30);
    color: #fff;
}

.btn-cta:hover i {
    transform: translateX(6px);
}

/* ── Utility ── */
.x-small {
    font-size: 0.7rem;
    line-height: 1.4;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.object-fit-cover {
    object-fit: cover;
}

/* ── Responsive Fine-tune ── */
@media (max-width: 991.98px) {
    .about-image-wrapper {
        min-height: 240px;
    }
    .about-content-box h2 {
        font-size: 1.6rem;
    }
    .image-floating-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 18px;
    }
    .badge-number {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .about-us-section {
        padding: 48px 0;
    }
    .about-content-box {
        padding: 24px 20px;
    }
    .about-content-box h2 {
        font-size: 1.4rem;
    }
    .about-card {
        padding: 20px 16px !important;
    }
    .icon-box i {
        font-size: 1.8rem !important;
    }
    .image-floating-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 14px;
        gap: 10px;
    }
    .badge-number {
        font-size: 1.2rem;
    }
    .badge-label {
        font-size: 0.65rem;
        max-width: 60px;
    }
    .btn-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}
/* ───────── SERVICES ───────── */
  #services { padding: 60px 0; background: #f3f3f3;}
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  }
  .service-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.1);
    border-radius: 15px; padding: 25px 25px; position: relative;
    overflow: hidden; transition: .3s all; cursor: pointer;
    group: true;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: .3s all; transform-origin: left;
  }
  .service-card:hover { border-color: rgba(255, 104, 34, 0.493); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-img {
    width: 100%; height: 160px; object-fit: cover; border-radius: 10px;
    margin-bottom: 20px; filter: brightness(0.8);
  }
  .service-icon {
    width: 56px; height: 56px; background: rgba(255,87,34,0.12);
    border: 1px solid rgba(255,87,34,0.25); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--accent-orange); margin-bottom: 20px;
    transition: .3s all;
    position: absolute;
    bottom: 0%;
    right: 9%;
    background: #fff;
  }
  .service-card:hover .service-icon { background: var(--primary); color: var(--white); }
  .service-card h3 { font-size: 20px; margin-bottom: 10px;color: var(--grad-1-start);font-weight: 700; }
  .service-card p { color: #262629; font-size: 14px; line-height: 1.7; }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent-orange); font-size: 13px; font-weight: 700;
    text-decoration: none; margin-top: 16px; transition: .3s all;
    letter-spacing: 0.5px;
  }
  .service-link:hover { gap: 10px; }

  /* ── Section Base ── */
.commitment-section {
    background: var(--bg-section);
    padding: 80px 0 90px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 151, 30, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── Header ── */
.commitment-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(247, 151, 30, 0.12);
}

.commitment-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b1a33;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commitment-subtext {
    max-width: 720px;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 16px;
}

/* ── Commitment Cards ── */
.commitment-card {
    border-radius: 20px;
    padding: 32px 20px 28px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gradient variants */
.card-gradient-1 {
    background: linear-gradient(145deg, var(--grad-1-start), var(--grad-1-end));
}
.card-gradient-2 {
    background: linear-gradient(145deg, var(--grad-2-start), var(--grad-2-end));
}
.card-gradient-3 {
    background: linear-gradient(145deg, var(--grad-3-start), var(--grad-3-end));
}
.card-gradient-4 {
    background: linear-gradient(145deg, var(--grad-4-start), var(--grad-4-end));
}

/* Subtle inner glow border */
.commitment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.commitment-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
}

/* Icon */
.commitment-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 18px;
    transition: background 0.3s ease, transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.commitment-card:hover .commitment-icon {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05) rotate(-4deg);
}

.commitment-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(247, 151, 30, 0.20));
}

.commitment-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.commitment-card-text {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.commitment-card-line {
    width: 40px;
    height: 2.5px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    margin-top: 18px;
    transition: width 0.4s ease;
}

.commitment-card:hover .commitment-card-line {
    width: 60px;
}

/* ── CTA Wrapper ── */
.commitment-cta-wrapper {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.commitment-cta-wrapper:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.07);
}

.commitment-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 44px;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.02), rgba(15, 52, 96, 0.04));
    position: relative;
}

.commitment-cta-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 194, 127, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.08);
    padding: 3px 14px;
    border-radius: 100px;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1a33;
    margin: 6px 0 4px;
    letter-spacing: -0.02em;
}

.cta-title .highlight-gradient {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    padding: 14px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 28px rgba(22, 33, 62, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button i {
    transition: transform 0.35s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(22, 33, 62, 0.30);
    color: #fff;
}

.cta-button:hover i {
    transform: translateX(6px);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .commitment-title {
        font-size: 2.2rem;
    }
    .commitment-cta-inner {
        padding: 28px 30px;
        flex-direction: column;
        text-align: center;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .commitment-section {
        padding: 48px 0 60px;
    }
    .commitment-title {
        font-size: 1.7rem;
    }
    .commitment-subtext {
        font-size: 0.92rem;
        padding: 0 8px;
    }
    .commitment-card {
        padding: 24px 16px 22px;
    }
    .commitment-icon {
        width: 54px;
        height: 54px;
    }
    .commitment-icon i {
        font-size: 1.4rem;
    }
    .commitment-card-title {
        font-size: 0.95rem;
    }
    .commitment-card-text {
        font-size: 0.82rem;
    }
    .commitment-cta-inner {
        padding: 24px 20px;
    }
    .cta-title {
        font-size: 1.2rem;
    }
    .cta-text {
        font-size: 0.85rem;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }
}
/* ── Section Base ── */
./* ── Root Variables ── */
:root {
    --grad-1-start: #1a1a2e;
    --grad-1-end: #16213e;
    --grad-2-start: #0f3460;
    --grad-2-end: #1a1a5e;
    --grad-3-start: #1a1a3e;
    --grad-3-end: #0d1b3e;
    --grad-4-start: #0f2b5e;
    --grad-4-end: #1a1a4e;
    --accent-gold: #f0c27f;
    --accent-orange: #f7971e;
    --text-light: #ffffff;
    --text-muted-light: rgba(255, 255, 255, 0.78);
    --bg-section: #f5f7fc;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 28px 56px rgba(0, 0, 0, 0.14);
    --border-radius-card: 20px;
}

/* ── Section Base ── */
.guarantee-section {
    background: var(--bg-section);
    padding: 80px 0 90px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* ── Hero Image ── */
.guarantee-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.guarantee-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guarantee-hero:hover .guarantee-hero-img {
    transform: scale(1.02);
}

/* ── Hero Overlay ── */
.guarantee-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(26, 26, 46, 0.92) 0%,
            rgba(15, 52, 96, 0.80) 50%,
            rgba(26, 26, 46, 0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 56px;
}

.hero-content {
    max-width: 760px;
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.12);
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid rgba(247, 151, 30, 0.15);
    backdrop-filter: blur(4px);
    margin-bottom: 14px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.guarantee-section .hero-highlight {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
}

.guarantee-section .hero-highlight {
   color: #fff;
   font-weight: 800;
}

.guarantee-section .hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.692);
    line-height: 1.7;
    margin-bottom: 22px;
}

.guarantee-section .hero-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #f2f3f5;
    background: var(--accent-orange);
    padding: 14px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.guarantee-section .hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    color: #edf0f5;
    border: 1px solid #fff;
}

.guarantee-section .hero-btn i {
    transition: transform 0.35s ease;
}

.guarantee-section .hero-btn:hover i {
    transform: translateX(6px);
}

/* ── Guarantee Cards ── */
.guarantee-card {
    border-radius: var(--border-radius-card);
    padding: 32px 20px 28px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 40, 39, 0.089);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 15px;
}

/* Gradient variants */
.guarantee-card.card-gradient-1 {
    background: linear-gradient(145deg, var(--grad-1-start), var(--grad-1-end));
}
.guarantee-card.card-gradient-2 {
    background: linear-gradient(145deg, var(--grad-2-start), var(--grad-2-end));
}
.guarantee-card.card-gradient-3 {
    background: linear-gradient(145deg, var(--grad-3-start), var(--grad-3-end));
}
.guarantee-card.card-gradient-4 {
    background: linear-gradient(145deg, var(--grad-4-start), var(--grad-4-end));
}


.guarantee-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
    border: 1px solid var(--accent-gold);
}

/* ── Icon ── */
.guarantee-icon {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    backdrop-filter: blur(4px);
    margin-bottom: 16px;
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1;
}

.guarantee-card:hover .guarantee-icon {
    background: var(--grad-1-end);
    transform: scale(1.05) rotate(-4deg);
}

.guarantee-icon i {
    font-size: 1.8rem;
    color: #fff;
}

/* ── Icon Ring Animation ── */
.guarantee-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-gold);
    border-right-color: var(--accent-orange);
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: opacity 0.6s ease, transform 0.8s ease;
    pointer-events: none;
}

.guarantee-card:hover .guarantee-icon-ring {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(360deg);
}

/* ── Card Text ── */
.guarantee-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 1;
    color: var(--grad-1-start);
}

.guarantee-card-text {
    font-size: 0.88rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

.guarantee-card-line {
    width: 36px;
    height: 2.5px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    margin-top: 16px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.guarantee-card:hover .guarantee-card-line {
    width: 56px;
}

/* ── Trust Badge ── */
.trust-badge-wrapper {
    position: relative;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--grad-1-end);
    padding: 14px 32px 14px 20px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(247, 151, 30, 0.10), rgba(240, 194, 127, 0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon i {
    font-size: 1.4rem;
    color: var(--accent-orange);
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-badge-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.trust-badge-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: #8a9bb5;
    letter-spacing: 0.3px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .guarantee-section {
        padding: 60px 0 70px;
    }

    .guarantee-hero-img {
        height: 340px;
    }

    .guarantee-hero-overlay {
        padding: 32px 36px;
    }

    .guarantee-section .hero-title {
        font-size: 2.4rem;
    }

    .guarantee-section .hero-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .guarantee-section {
        padding: 40px 0 50px;
    }

   

    .guarantee-hero-overlay {
        padding: 24px 20px;
        justify-content: center;
        text-align: center;
    }

    .guarantee-section .hero-content {
        max-width: 100%;
    }

    .guarantee-section .hero-title, .guarantee-section .hero-highlight  {
        font-size: 1.8rem;
    }

    .guarantee-section .hero-text {
        font-size: 0.9rem;
    }

    .guarantee-section .hero-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .guarantee-section .hero-btn {
        padding: 10px 24px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .guarantee-card {
        padding: 24px 16px 22px;
    }

    .guarantee-icon {
        width: 56px;
        height: 56px;
    }

    .guarantee-icon i {
        font-size: 1.4rem;
    }

    .guarantee-icon-ring {
        width: 64px;
        height: 64px;
    }

    .guarantee-card-title {
        font-size: 1rem;
    }

    .guarantee-card-text {
        font-size: 0.82rem;
    }

    .trust-badge {
        flex-direction: column;
        padding: 16px 20px;
        border-radius: 16px;
        text-align: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .trust-badge-content {
        align-items: center;
    }
}
/* ── Root Variables ── */


/* ── Section Base ── */
.our-process-section {
    background: var(--bg-section);
    padding: 80px 0 90px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.our-process-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 151, 30, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.our-process-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 52, 96, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.our-process-section .container {
    position: relative;
    z-index: 1;
}

/* ── Section Header ── */
.badge-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.10);
    padding: 6px 22px;
    border-radius: 100px;
    border: 1px solid rgba(247, 151, 30, 0.12);
    backdrop-filter: blur(4px);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0b1a33;
    letter-spacing: -0.03em;
}

.highlight-text {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtext {
    max-width: 640px;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Process Timeline ── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    padding: 40px 0 20px;
}

/* ── Process Node ── */
.process-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* ── Connector ── */
.node-connector {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    opacity: 0.20;
    border-radius: 4px;
    transform: translateY(-50%);
    transition: opacity 0.4s ease;
}

.process-node:hover .connector-line {
    opacity: 0.40;
}

.connector-dot {
    position: relative;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(247, 151, 30, 0.15);
    transition: all 0.4s ease;
}

.process-node:hover .connector-dot {
    transform: scale(1.25);
    box-shadow: 0 0 0 8px rgba(247, 151, 30, 0.10);
}

.connector-dot-last {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    box-shadow: 0 0 0 4px rgba(26, 26, 46, 0.10);
}

.process-node:hover .connector-dot-last {
    box-shadow: 0 0 0 8px rgba(26, 26, 46, 0.08);
}

/* ── Node Number ── */
.node-number {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #f3f0ec;
    background-color: var(--accent-orange);
    margin-bottom: 16px;
    box-shadow: 0 8px 28px rgba(22, 33, 62, 0.20);
    border: 3px solid #ffffff;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.process-node:hover .node-number {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(22, 33, 62, 0.28);
}

.number-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-gold);
    border-right-color: var(--accent-orange);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.8s ease;
    transform: rotate(0deg);
}

.process-node:hover .number-ring {
    opacity: 1;
    transform: rotate(360deg);
}

.gradient-bg1 {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
}

/* ── Node Card ── */
.node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.node-card {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    padding: 28px 18px 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.node-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-node:hover .node-card {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.process-node:hover .node-card::before {
    opacity: 1;
}

.node-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grad-1-end);
    margin: 0 auto 14px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.process-node:hover .node-icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.node-icon i {
    font-size: 1.6rem;
    color: #ffffff;
}

.node-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1a33;
    margin-bottom: 6px;
}

.node-text {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 14px;
}

.node-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.08);
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid rgba(247, 151, 30, 0.06);
}

.node-tag i {
    font-size: 0.6rem;
}

/* ── CTA ── */
.process-cta {
    padding-top: 24px;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    padding: 8px 8px 8px 28px;
    border-radius: 100px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.4s ease;
}

.cta-pill:hover {
    box-shadow: var(--card-shadow-hover);
}

.cta-pill-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0b1a33;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    padding: 12px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 28px rgba(22, 33, 62, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-cta-primary i {
    transition: transform 0.4s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(22, 33, 62, 0.32);
    color: #ffffff;
}

.btn-cta-primary:hover i {
    transform: translateX(6px);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .our-process-section {
        padding: 60px 0 70px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 20px 0;
    }

    .node-connector {
        height: 30px;
        margin-bottom: 8px;
    }

    .connector-line {
        height: 2px;
    }

    .connector-dot {
        width: 14px;
        height: 14px;
    }

    .node-number {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .node-card {
        padding: 22px 14px 18px;
    }

    .node-icon {
        width: 52px;
        height: 52px;
    }

    .node-icon i {
        font-size: 1.3rem;
    }

    .cta-pill {
        flex-direction: column;
        padding: 16px 20px;
        border-radius: 20px;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-cta-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 575.98px) {
    .our-process-section {
        padding: 40px 0 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtext {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 10px 0;
    }

    .node-connector {
        height: 20px;
        margin-bottom: 4px;
    }

    .connector-line {
        height: 2px;
    }

    .connector-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .node-number {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
        border-width: 2px;
        margin-bottom: 10px;
    }

    .number-ring {
        inset: -4px;
        border-width: 1.5px;
    }

    .node-card {
        padding: 18px 12px 16px;
        border-radius: 16px;
    }

    .node-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .node-icon i {
        font-size: 1.1rem;
    }

    .node-title {
        font-size: 0.95rem;
    }

    .node-text {
        font-size: 0.82rem;
    }

    .cta-pill {
        padding: 14px 16px;
        border-radius: 16px;
        max-width: 100%;
    }

    .cta-pill-text {
        font-size: 0.85rem;
    }

    .btn-cta-primary {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

/* --- Seamless Border-Grid Engine (No Spaces) --- */
.telemetry-stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0; /* Eliminates all spacing between cards */
background-color: #891B18;
border: 1px solid rgba(255, 255, 255, 0.15); /* The structural outer frame */
border-radius: 12px;
overflow: hidden; /* Clips corner tiles safely into the container border radius */
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.telemetry-stat-tile {
background-color:#063572;
padding: 32px 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 32px;
position: relative;
transition: background-color 0.25s ease;

/* Create the inner vertical dividers */
border-right: 1px solid rgba(255, 255, 255, 0.15);
border-bottom: none;
}

/* Eliminate trailing outer border on the last grid item on desktop */
.telemetry-stat-tile:nth-child(4) {
border-right: none;
}

.telemetry-stat-tile:hover {
background-color: var(--grad-1-start); /* Gentle interactive response without lifting */
}

/* Tile Internal Assets Styling */
.tile-header-bar {
display: flex;
justify-content: space-between;
align-items: center;
}

.tile-sys-code {
font-size: 12px;
font-weight: 600;
color: #fcd7c2;
letter-spacing: 0.03em;
opacity: 0.8;
}

.tile-icon {
font-size: 22px;
color: var(--accent-gold);
}

.tile-display {
display: flex;
flex-direction: column;
gap: 4px;
}

.tile-number {
font-size: clamp(2rem, 2.5vw, 2.6rem);
font-weight: 800;
color: #ffffff;
line-height: 1;
}

.tile-label {
font-size: 14px;
color: #ece6e9;
font-weight: 500;
}

.tile-progress-indicator {
width: 100%;
height: 3px;
background-color: rgba(255, 255, 255, 0.08);
border-radius: 20px;
overflow: hidden;
}

.indicator-active-bar {
display: block;
height: 100%;
background-color: var(--accent-gold);
border-radius: 20px;
transition: all 0.4s ease;
}

.bar-wide { width: 98%; }
.bar-mid  { width: 90%; }
.bar-full { width: 98%; }
.bar-max  { width: 94%; }

.telemetry-stat-tile:hover .indicator-active-bar {
background: linear-gradient(90deg, #ffeb3b, #ff8a00);
}

/* --- Responsive Layout Breakpoints --- */

/* Tablet & Landscape Mobile (2x2 Grid) */
@media (max-width: 991.98px) {
.telemetry-stats-grid {
grid-template-columns: repeat(2, 1fr);
}

/* Reset desktop lines & calculate 2-column crosshair layout borders */
.telemetry-stat-tile {
border-right: 1px solid rgba(255, 255, 255, 0.15);
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Right column tiles lose right border */
.telemetry-stat-tile:nth-child(2),
.telemetry-stat-tile:nth-child(4) {
border-right: none;
}

/* Bottom row tiles lose bottom border */
.telemetry-stat-tile:nth-child(3),
.telemetry-stat-tile:nth-child(4) {
border-bottom: none;
}
}

/* Portrait Mobile (1 Column Stack) */
@media (max-width: 575.98px) {
.telemetry-stats-section {
padding: 60px 16px;
}

.telemetry-stats-grid {
grid-template-columns: 1fr;
}

/* Calculate single line stacking borders safely */
.telemetry-stat-tile {
border-right: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
padding: 28px 20px;
}

/* Pure bottom item loses border line */
.telemetry-stat-tile:nth-child(4) {
border-bottom: none;
}
}
/* ── Footer Base ── */
.site-footer {
    background: var(--bg-footer);
    background: linear-gradient(160deg, var(--grad-1-start), var(--grad-1-end), var(--grad-2-start));
    color: var(--text-light);
    padding: 60px 0 20px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-footer);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative line */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    opacity: 0.3;
}

/* ── Brand ── */
.footer-brand .brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #ffffff;
}

.brand-name .highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 0;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #0b1a33;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 151, 30, 0.25);
    border-color: transparent;
}

/* ── Footer Headings ── */
.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 4px;
}

/* ── Link Lists ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-links a i{color: var(--accent-gold);}


.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
    color: var(--accent-orange);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* ── Contact List ── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--accent-orange);
    width: 18px;
    margin-top: 4px;
    font-size: 0.9rem;
}

/* ── Meta: Language & Visitors ── */
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.language-selector select:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.language-selector select option {
    background: var(--grad-1-end);
    color: #fff;
}

.visitor-number {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ── Search Form ── */
.footer-search .search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-search .search-form:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(247, 151, 30, 0.10);
}

.footer-search .search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 18px;
    color: var(--text-light);
    font-size: 0.85rem;
    outline: none;
}

.footer-search .search-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.footer-search .search-form button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0 18px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-search .search-form button:hover {
    color: var(--accent-orange);
}

/* ── Bottom Bar ── */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dddddd27;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0;
}

.footer-credit i {
    margin: 0 4px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    .footer-brand .brand-name {
        font-size: 1.6rem;
    }
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom {
        flex-direction: column;
        /* text-align: center; */
    }
    
    .footer-links a::before {
        display: none;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
   
    .footer-meta {
        align-items: center;
        /* text-align: center; */
    }
    .footer-search .search-form {
        max-width: 100%;
    }
   
    .brand-tagline {
        max-width: 100%;
        /* text-align: center; */
    }
}


/* ── Section Base ── */
.faq-section {
    background: var(--bg-section);
    padding: 80px 0 90px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 151, 30, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

/* ── Section Header ── */
.badge-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(247, 151, 30, 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(247, 151, 30, 0.12);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0b1a33;
    letter-spacing: -0.03em;
}

.highlight-text {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtext {
    max-width: 640px;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── FAQ Accordion ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--card-shadow-hover);
}

.faq-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-header:hover {
    background: rgba(26, 26, 46, 0.02);
}

.faq-header[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--grad-1-start), var(--grad-2-end));
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
}

.faq-header[aria-expanded="true"] .faq-question {
    color: #ffffff;
}

.faq-header[aria-expanded="true"] .faq-icon i {
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-icon i {
    font-size: 1.1rem;
    color: var(--accent-orange);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.faq-body {
    padding: 18px 24px 24px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    background: #ffffff;
    border-radius: 0 0 var(--border-radius-card) var(--border-radius-card);
}

/* ── Right Column: Help Card ── */
/* ── Right Column: Help Card with Image ── */
.help-card {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    position: sticky;
    top: 30px;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

/* ── Image Wrapper ── */
.help-card-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.help-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.help-card:hover .help-img {
    transform: scale(1.04);
}

/* ── Gradient Overlay ── */
.help-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(26, 26, 46, 0.596) 0%,
            rgba(15, 51, 96, 0.651) 50%,
            rgba(26, 26, 46, 0.527) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    text-align: center;
}

.help-overlay-content {
    max-width: 100%;
}

.help-overlay-content .help-icon {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
    filter: drop-shadow(0 4px 12px rgba(247, 151, 30, 0.25));
}

.help-overlay-content .help-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.help-overlay-content .help-subtitle {
    font-size: 0.95rem;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
}

.help-overlay-content .help-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 4px;
    margin: 6px auto;
    opacity: 0.7;
}

.help-overlay-content .help-message {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 18px 0 20px 0;
}

.help-overlay-content .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0b1a33;
    background: #ffffff;
    padding: 12px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-overlay-content .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    color: #0b1a33;
    background: #f8f9fa;
}

.help-overlay-content .btn-cta-primary i {
    transition: transform 0.3s ease;
}

.help-overlay-content .btn-cta-primary:hover i {
    transform: translateX(4px);
}

/* ── Footer Stats ── */
.help-card-footer {
    padding: 16px 24px;
    background: #ffffff;
}

.help-stats {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    font-size: 0.8rem;
    color: #4a5568;
    padding: 8px 0;
}

.help-stats i {
    color: var(--accent-orange);
    margin-right: 6px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0 70px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .help-card {
        position: static;
    }
    .help-card-image {
        min-height: 280px;
    }
    .help-img {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .faq-section {
        padding: 40px 0 50px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtext {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    .faq-header {
        padding: 14px 18px;
    }
    .faq-question {
        font-size: 0.95rem;
    }
    .faq-body {
        padding: 14px 18px 18px;
        font-size: 0.88rem;
    }
    .help-card-image {
        min-height: 240px;
    }
    .help-img {
        min-height: 270px;
    }
    .help-overlay {
        padding: 24px 18px;
    }
    .help-overlay-content .help-icon {
        font-size: 2.2rem;
    }
    .help-overlay-content .help-title {
        font-size: 1.2rem;
    }
    .help-overlay-content .help-subtitle {
        font-size: 0.85rem;
    }
    .help-overlay-content .help-message {
        font-size: 0.85rem;
    }
    .help-overlay-content .btn-cta-primary {
        padding: 10px 24px;
        font-size: 0.8rem;
        width: 100%;
    }
    .help-stats {
        align-items: center;
        gap: 4px;
    }
    .help-card-footer {
        padding: 12px 16px;
    }
}
/* Base Theme Utilities */
.text-orange { 
  color: #f5a623; 
}
.text-light-muted { 
  color: #94a3b8; 
}
.tracking-wider { 
  letter-spacing: 1.5px; 
}

/* Dark Section Setup */
.movers-reviews-section.dark-theme {
  background-color: var(--grad-1-start); /* Deep premium dark background */
  position: relative;
}

/* Grid Layout (3-columns on Desktop) */
.movers-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

/* Dark Card Elements */
.mover-review-card {
  background: #051733; /* Slate dark color for card bodies */
  border: 1px solid rgba(3, 17, 65, 0.05); /* Subtle glassmorphism edge */
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(3, 9, 44, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Soft hover glow & lift on Dark Card */
.mover-review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 166, 35, 0.3); /* Subtle orange glow outline */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 166, 35, 0.05);
}

/* Floating Avatar Quote Styling */
.mover-avatar-fallback {
  width: 50px;
  height: 50px;
  background-color: var(--accent-orange); 
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  left: 30px;

}

.avatar-quote-icon {
  font-size: 1.1rem;
}

/* Rating Stars Styling */
.mover-rating-stars {
  color: #f5a623; /* Warm gold/orange */
  font-size: 0.95rem;
  margin-bottom: 18px;
  margin-top: 5px;
}

/* Dark Theme Review Paragraph */
.mover-review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d8dee7; /* Soft blue-grey for easy reading */
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Author Section Info Alignment */
.mover-review-author {
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Clean divider line */
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: #f1f5f9; /* Bright off-white */
  font-size: 1.05rem;
}

.author-meta {
  font-size: 0.8rem;
  color: #c5d1e0;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumb{padding: 30px 20px;background-color: var(--grad-1-start);color: #fff;}
.breadcrumb .h2{color: #fff;font-weight: 700;font-size: clamp(2rem, 5vw, 2rem);}
/* Color Highlight */
.text-orange {
    color: #ff6600; /* Matching orange highlight color */
}

/* Rounded Soft Blue Icon Boxes */
.conat_secc .icon-box {
    width: 50px;
    height: 50px;
    background-color: #eef5ff; /* Soft light blue background */
    color: #0d6efd; /* Icon color */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}
.conat_secc{background: #fffefe;
padding: 10px 15px;border-bottom: 1px solid rgba(0, 0, 0, 0.185);box-shadow: 0 0 2px rgba(0, 0, 0, 0.17);border-radius: 8px;}
/* Soft hover effect for icon boxes */
.conat_secc:hover .icon-box {
    background-color: #0d6efd;
    color: #ffffff;
}

/* Text styling tweaks */
.contact-info-wrapper h5 {
    font-size: 1.1rem;
}

.contact-info-wrapper p {
    font-size: 0.95rem;
    line-height: 1.5;
}
.branch_sec{padding: 15px;border-radius: 15px;background-color: #fff;border: 1px solid rgba(0, 0, 0, 0.089);transition: 0.4s all;}
.branch_sec .d-flex{font-size: 15px;color: #1d1b1b;font-size: 600;border-bottom: 1px solid #f1eeee;padding: 9px 0;}
.branch_sec .d-flex:last-child{border-bottom: none;}
.branch_sec h3{color: var(--grad-1-start);font-weight: 700;margin: 15px 0;}
.branch_sec img{background: #fff;padding: 10px;border-radius: 15px;}
.branch_sec p{margin-bottom: 0;}
.branch_sec:hover{background: #f8eedf;box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);border: 1px solid var(--accent-gold);}

.cons_update {margin-bottom: 15px;}
.cons_update img{
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 5px;
    transition: 0.4s all;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.cons_update img:hover{background: #f8eedf;border: 1px solid var(--accent-gold);scale: 1.02;}
/* CSS*/
.fix-icon {
    display: inline-block;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 999999;
}
#fix-icon {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
.fix-icon-item {
    animation: bounce 1s infinite alternate;
    animation-duration: 1s;
    -webkit-animation: bounce 1s infinite alternate;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-iteration-count: infinite;
        animation-fill-mode: none;
}
.fix-icon-item img {
    width: 55px !important;
	height: 55px !important;
    background: 
    #ff7400;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
}
.fix-icon-whataap {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 999999;
    transition: all0.5s ease-in-out;
}
.fix-icon-whataap-item img {
    border-radius: 50%;
    box-shadow: 1px 1px 4px 
rgba(60, 60, 60, .4);
transition: box-shadow .2s;
cursor: pointer;
overflow: hidden;
width: 55px !important;
height: 55px !important;
background:
    #25d366 !important;
}
.fix-icon-whataap-item:before {
    content: "";
    border: 20px solid rgba(37, 211, 102, .51);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    z-index: -1;
    top: -12px;
    left: -13px;
}

@keyframes pulsate {
    0% {
        transform: scale(.6, .6);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5, 1.5);
        opacity: 0;
    }
}
/*---*/	

/* Responsive Handling */
@media (max-width: 991px) {
  .movers-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
}

@media (max-width: 767px) {
  .movers-reviews-grid {
    grid-template-columns: 1fr;
    gap: 45px 0;
  }
  .mover-review-card {
    padding: 30px 20px;
  }
}