 /* ===== CSS RESET & ROOT VARIABLES ===== */
 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --navy: #06172E;
     --navy-mid: #0D2B4B;
     --blue: #1D5F8A;
     --sky: #2E8BC0;
     --cyan: #00C2E0;
     --cyan-light: #7ADFEF;
     --gold: #C9A84C;
     --gold-light: #F0D080;
     --white: #FFFFFF;
     --off-white: #F5F9FD;
     --mist: #EBF3FA;
     --text-dark: #08213D;
     --text-mid: #3A5470;
     --text-light: #7A9BB5;
     --border: rgba(30, 100, 160, 0.1);

     --shadow-sm: 0 4px 16px rgba(6, 23, 46, 0.06);
     --shadow-md: 0 12px 32px rgba(6, 23, 46, 0.10);
     --shadow-lg: 0 24px 56px rgba(6, 23, 46, 0.14);
     --shadow-xl: 0 40px 80px rgba(6, 23, 46, 0.18);

     --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
     --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

     --radius-sm: 12px;
     --radius-md: 24px;
     --radius-lg: 40px;
     --radius-xl: 60px;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'DM Sans', sans-serif;
     background: #fff;
     color: var(--text-dark);
     overflow-x: hidden;
     line-height: 1.7;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: sans-serif;
     font-weight: 700;
     line-height: 1.2;
     letter-spacing: -0.03em;
 }

 /* ===== UTILITY CLASSES ===== */
 .text-cyan {
     color: var(--cyan) !important;
 }

 .text-gold {
     color: var(--gold) !important;
 }

 .text-navy {
     color: var(--navy) !important;
 }

 .text-sky {
     color: var(--sky) !important;
 }

 .bg-navy {
     background: var(--navy) !important;
 }

 .bg-off {
     background: var(--off-white) !important;
 }

 .bg-mist {
     background: var(--mist) !important;
 }

 .section-pad {
     padding: 110px 0;
 }

 .section-pad-sm {
     padding: 70px 0;
 }

 /* ===== SECTION LABEL & TITLE ===== */
 .section-label {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.78rem;
     font-weight: 600;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--sky);
     margin-bottom: 16px;
 }

 .section-label::before {
     content: '';
     width: 28px;
     height: 2px;
     background: linear-gradient(90deg, var(--cyan), var(--sky));
     border-radius: 2px;
 }

 .section-title {
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 800;
     color: var(--navy);
     margin-bottom: 20px;
     letter-spacing: -0.04em;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: var(--text-mid);
     max-width: 640px;
     font-weight: 400;
 }

 /* ===== TOP BAR ===== */
 .top-bar {
     background: var(--navy);
     color: rgba(200, 220, 240, 0.9);
     font-size: 0.82rem;
     padding: 11px 0;
     font-weight: 500;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     position: relative;
     z-index: 1100;
 }

 .top-bar a {
     color: rgba(200, 220, 240, 0.9);
     text-decoration: none;
     transition: color 0.2s;
 }

 .top-bar a:hover {
     color: var(--cyan);
 }

 .top-bar i {
     color: var(--cyan);
     margin-right: 6px;
     font-size: 0.78rem;
 }

 .top-bar .divider {
     opacity: 0.25;
     margin: 0 12px;
 }

 /* ===== NAVBAR ===== */
 #mainNavbar {
     background: rgba(255, 255, 255, 0.97);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     padding: 9px 0;
     transition: all 0.4s var(--ease-out);
     position: sticky;
     top: 0;
     z-index: 1050;
     box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
 }

 #mainNavbar.scrolled {
     padding: 10px 0;
     box-shadow: var(--shadow-md);
     background: rgba(255, 255, 255, 0.99);
 }

 .logo-brand {
     font-family: sans-serif;
     font-size: 1.85rem;
     font-weight: 800;
     background: linear-gradient(135deg, var(--navy) 30%, var(--sky));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     letter-spacing: -0.05em;
     text-decoration: none;
 }

 .logo-tagline {
     font-size: 0.65rem;
     color: var(--text-light);
     letter-spacing: 0.08em;
     font-weight: 500;
     display: block;
     margin-top: -4px;
     text-transform: uppercase;
 }

 .navbar-nav .nav-link {
     font-weight: 600;
     font-size: 17px;
     color: var(--text-dark) !important;
     padding: 6px 14px !important;
     border-radius: 8px;
     transition: all 0.25s var(--ease-out);
     position: relative;
 }

 .navbar-nav .nav-link:hover,
 .navbar-nav .nav-link.active {
     color: var(--sky) !important;
     background: rgba(46, 139, 192, 0.06);
 }

 /* Dropdown on hover */
 .nav-item.dropdown:hover>.dropdown-menu {
     display: block;
 }

 .dropdown-menu {
     display: none;
     border: none;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-lg);
     padding: 10px;
     min-width: 280px;
     margin-top: 8px !important;
     background: white;
     animation: dropIn 0.25s var(--ease-out);
 }

 @keyframes dropIn {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .dropdown-item {
     border-radius: var(--radius-sm);
     padding: 9px 16px;
     font-weight: 500;
     font-size: 0.9rem;
     color: var(--text-dark);
     transition: all 0.2s;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .dropdown-item:hover {
     background: var(--mist);
     color: var(--sky);
     padding-left: 22px;
 }

 .dropdown-item .icon-badge {
     width: 32px;
     height: 32px;
     background: linear-gradient(135deg, var(--navy), var(--sky));
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     color: white;
     flex-shrink: 0;
 }

 .dropdown-divider {
     margin: 6px 0;
     border-color: var(--border);
 }

 .btn-nav-cta {
     background: linear-gradient(135deg, var(--navy), var(--sky));
     color: white !important;
     border-radius: 50px;
     padding: 9px 26px !important;
     font-weight: 600;
     font-size: 0.88rem;
     transition: all 0.3s var(--ease-spring);
     box-shadow: 0 4px 14px rgba(29, 95, 138, 0.3);
     border: none;
 }

 .btn-nav-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 22px rgba(29, 95, 138, 0.4);
     background: linear-gradient(135deg, #0a2044, #1A75A8) !important;
     color: white !important;
 }


 /* Hero Video */
 .hero-section {
     position: relative;
     height: 85vh;
     min-height: 520px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-video {
     position: absolute;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
 }

 .hero-overlay {
     position: absolute;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 30% 20%, rgb(0 0 0 / 35%), rgb(0 0 0 / 46%));
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 3;
     max-width: 880px;
     text-align: center;
     animation: fadeSlideUp 1s ease-out;
 }

 @keyframes fadeSlideUp {
     0% {
         opacity: 0;
         transform: translateY(35px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-content h1 {
     font-size: 3.4rem;
     font-weight: 800;
     color: white;
     text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
     margin-bottom: 20px;
 }

 .hero-content p {
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.92);
     margin-bottom: 30px;
     font-weight: 500;
 }

 .btn-hero {
     border-radius: 60px;
     padding: 14px 36px;
     font-weight: 700;
     margin: 8px;
     transition: var(--transition-smooth);
     border: none;
 }

 .btn-primary-hero {
     background: white;
     color: var(--navy-deep);
 }

 .btn-primary-hero:hover {
     background: var(--cyan-glow);
     color: white;
     transform: scale(1.05);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
 }

 .btn-outline-hero {
     background: transparent;
     border: 2px solid white;
     color: white;
     backdrop-filter: blur(4px);
 }

 .btn-outline-hero:hover {
     background: white;
     color: var(--navy-deep);
     transform: scale(1.05);
 }

 /* Mobile Only (Phones) */
 @media (max-width: 576px) {

     .hero-section {
         height: 70vh;
         min-height: 420px;
         padding: 0 15px;
     }

     .hero-content {
         max-width: 100%;
         padding: 0 10px;
     }

     .hero-content h1 {
         font-size: 1.9rem;
         line-height: 1.25;
         margin-bottom: 14px;
     }

     .hero-content p {
         font-size: 0.95rem;
         line-height: 1.5;
         margin-bottom: 20px;
     }

     .btn-hero {
         padding: 12px 22px;
         font-size: 0.9rem;
         margin: 6px 4px;
         width: 100%;
         display: block;
     }

     .btn-primary-hero,
     .btn-outline-hero {
         width: 100%;
     }

     .hero-video {
         object-position: center;
     }

     .about-img-main {

         height: 315px !important;
     }


 }


 /* ===== TRUST STRIP ===== */
 .trust-strip {
     background: var(--off-white);
     padding: 24px 0;
     border-bottom: 1px solid var(--border);
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 4px 24px;
     border-right: 1px solid var(--border);
 }

 .trust-item:last-child {
     border-right: none;
 }

 .trust-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, var(--navy), var(--sky));
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.9rem;
     flex-shrink: 0;
 }

 .trust-text strong {
     font-size: 0.88rem;
     font-weight: 700;
     display: block;
     color: var(--navy);
 }

 .trust-text span {
     font-size: 0.76rem;
     color: var(--text-light);
 }

 /* ===== ABOUT SECTION ===== */
 .about-img-wrap {
     position: relative;
 }

 .about-img-main {
     width: 100%;
     border-radius: var(--radius-lg);
     object-fit: cover;
     height: 520px;
     box-shadow: var(--shadow-xl);
     transition: transform 0.6s var(--ease-out);
 }

 .about-img-main:hover {
     transform: scale(1.01);
 }

 .about-img-badge {
     position: absolute;
     bottom: -24px;
     right: -20px;
     background: white;
     border-radius: var(--radius-md);
     padding: 20px 24px;
     box-shadow: var(--shadow-lg);
     text-align: center;
     z-index: 2;
 }

 .about-img-badge .num {
     font-family: sans-serif;
     font-size: 2.4rem;
     font-weight: 800;
     color: var(--sky);
     line-height: 1;
 }

 .about-img-badge .lbl {
     font-size: 0.8rem;
     color: var(--text-light);
     font-weight: 500;
 }

 .about-float-card {
     position: absolute;
     top: 30px;
     left: -28px;
     background: white;
     border-radius: var(--radius-md);
     padding: 16px 20px;
     box-shadow: var(--shadow-lg);
     display: flex;
     align-items: center;
     gap: 14px;
     z-index: 2;
     max-width: 220px;
 }

 .about-float-card .icon {
     width: 44px;
     height: 44px;
     background: linear-gradient(135deg, var(--cyan), var(--sky));
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .about-float-card strong {
     font-size: 0.88rem;
     font-weight: 700;
     color: var(--navy);
     display: block;
 }

 .about-float-card span {
     font-size: 0.75rem;
     color: var(--text-light);
 }

 .about-values {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
     margin-top: 28px;
 }

 .value-chip {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 16px;
     background: var(--off-white);
     border-radius: var(--radius-sm);
     border: 1px solid var(--border);
     transition: all 0.25s;
 }

 .value-chip:hover {
     background: white;
     border-color: rgba(46, 139, 192, 0.2);
     transform: translateY(-2px);
     box-shadow: var(--shadow-sm);
 }

 .value-chip .vi {
     width: 36px;
     height: 36px;
     background: linear-gradient(135deg, var(--navy), var(--sky));
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.85rem;
     flex-shrink: 0;
 }

 .value-chip strong {
     font-size: 0.9rem;
     font-weight: 700;
     color: var(--navy);
     display: block;
     margin-bottom: 2px;
 }

 .value-chip p {
     font-size: 0.8rem;
     color: var(--text-light);
     margin: 0;
 }

 .btn-primary-main {
     background: linear-gradient(135deg, var(--navy), var(--sky));
     color: white;
     border-radius: 60px;
     padding: 13px 34px;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s var(--ease-spring);
     border: none;
     box-shadow: 0 6px 20px rgba(29, 95, 138, 0.25);
     font-size: 0.95rem;
 }

 .btn-primary-main:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 32px rgba(29, 95, 138, 0.35);
     color: white;
     background: linear-gradient(135deg, #091e3a, #1870A5);
 }

 /* ===== WHY CHOOSE US ===== */
 .why-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 @media (max-width: 992px) {
     .why-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 576px) {
     .why-grid {
         grid-template-columns: 1fr;
     }
 }

 .why-card {
     background: white;
     border-radius: var(--radius-md);
     padding: 36px 28px;
     border: 1px solid var(--border);
     transition: all 0.35s var(--ease-out);
     position: relative;
     overflow: hidden;
 }

 .why-card::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, var(--sky), var(--cyan));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.35s var(--ease-out);
 }

 .why-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-lg);
     border-color: rgba(46, 139, 192, 0.15);
 }

 .why-card:hover::before {
     transform: scaleX(1);
 }

 .why-icon {
     width: 64px;
     height: 64px;
     background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: white;
     margin-bottom: 22px;
     transition: transform 0.3s var(--ease-spring);
 }

 .why-card:hover .why-icon {
     transform: rotate(-6deg) scale(1.08);
 }

 .why-card h4 {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 12px;
 }

 .why-card p {
     font-size: 0.92rem;
     color: var(--text-mid);
     line-height: 1.75;
     margin: 0;
 }

 /* ===== SERVICES SECTION ===== */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 @media (max-width: 992px) {
     .services-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 576px) {
     .services-grid {
         grid-template-columns: 1fr;
     }
 }

 .service-card {
     background: white;
     border-radius: var(--radius-md);
     padding: 36px 30px;
     border: 1px solid var(--border);
     transition: all 0.4s var(--ease-out);
     position: relative;
     overflow: hidden;
     cursor: default;
 }

 .service-card::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(160deg, rgba(6, 23, 46, 0) 60%, rgba(6, 23, 46, 0.03));
     pointer-events: none;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-xl);
     border-color: rgba(0, 194, 224, 0.2);
 }

 .service-icon-wrap {
     width: 72px;
     height: 72px;
     background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.7rem;
     color: white;
     margin-bottom: 24px;
     transition: all 0.4s var(--ease-spring);
     position: relative;
 }

 .service-icon-wrap::after {
     content: '';
     position: absolute;
     inset: -4px;
     border-radius: 24px;
     background: linear-gradient(135deg, var(--cyan), var(--sky));
     z-index: -1;
     opacity: 0;
     transition: opacity 0.3s;
 }

 .service-card:hover .service-icon-wrap {
     transform: scale(1.08) rotate(-5deg);
     background: linear-gradient(135deg, var(--sky), var(--cyan));
 }

 .service-card:hover .service-icon-wrap::after {
     opacity: 0.2;
 }

 .service-card h4 {
     font-size: 1.08rem;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 12px;
 }

 .service-card p {
     font-size: 0.9rem;
     color: var(--text-mid);
     line-height: 1.8;
     margin: 0;
 }

 .service-card .learn-more {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     color: var(--sky);
     font-weight: 600;
     font-size: 0.85rem;
     margin-top: 18px;
     text-decoration: none;
     transition: gap 0.2s;
 }

 .service-card .learn-more:hover {
     gap: 10px;
 }

 /* ===== INDUSTRIES SECTION ===== */
 .industry-card {
     border-radius: var(--radius-md);
     overflow: hidden;
     position: relative;
     height: 260px;
     cursor: default;
     transition: transform 0.4s var(--ease-out);
 }

 .industry-card:hover {
     transform: translateY(-6px);
 }

 .industry-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s var(--ease-out);
 }

 .industry-card:hover img {
     transform: scale(1.06);
 }

 .industry-card .overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(6, 23, 46, 0.1) 0%, rgba(6, 23, 46, 0.85) 100%);
 }

 .industry-card .content {
     position: absolute;
     bottom: 24px;
     left: 24px;
     right: 24px;
 }

 .industry-card h5 {
     color: white;
     font-size: 1.1rem;
     margin-bottom: 4px;
 }

 .industry-card p {
     color: rgba(255, 255, 255, 0.75);
     font-size: 0.82rem;
     margin: 0;
 }

 /* ===== PROCESS SECTION ===== */
 .process-wrap {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 32px;
     position: relative;
 }

 .process-wrap::before {
     content: '';
     position: absolute;
     top: 40px;
     left: 10%;
     width: 80%;
     height: 2px;
     background: linear-gradient(90deg, var(--border), var(--cyan), var(--border));
     z-index: 0;
 }

 @media (max-width: 768px) {
     .process-wrap {
         grid-template-columns: 1fr 1fr;
     }

     .process-wrap::before {
         display: none;
     }
 }

 @media (max-width: 480px) {
     .process-wrap {
         grid-template-columns: 1fr;
     }
 }

 .process-step {
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .process-num {
     width: 80px;
     height: 80px;
     background: white;
     border: 3px solid var(--border);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-family: sans-serif;
     font-size: 1.6rem;
     font-weight: 800;
     color: var(--navy);
     transition: all 0.3s var(--ease-spring);
     box-shadow: var(--shadow-sm);
 }

 .process-step:hover .process-num {
     background: linear-gradient(135deg, var(--navy), var(--sky));
     color: white;
     border-color: transparent;
     transform: scale(1.1);
     box-shadow: 0 8px 24px rgba(29, 95, 138, 0.25);
 }

 .process-step h5 {
     font-size: 1rem;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 8px;
 }

 .process-step p {
     font-size: 0.87rem;
     color: var(--text-mid);
     line-height: 1.7;
 }

 /* ===== STATS SECTION ===== */
 .stats-section {
     background: linear-gradient(135deg, var(--navy) 0%, #0F3560 100%);
     position: relative;
     overflow: hidden;
 }

 .stats-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: radial-gradient(circle at 20% 50%, rgba(0, 194, 224, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
 }

 .stat-box {
     text-align: center;
     padding: 40px 20px;
     position: relative;
 }

 .stat-box::after {
     content: '';
     position: absolute;
     right: 0;
     top: 20%;
     width: 1px;
     height: 60%;
     background: rgba(255, 255, 255, 0.1);
 }

 .stat-box:last-child::after {
     display: none;
 }

 .stat-num {
     font-family: sans-serif;
     font-size: 3.6rem;
     font-weight: 800;
     color: white;
     line-height: 1;
     display: flex;
     align-items: flex-start;
     justify-content: center;
 }

 .stat-num .suf {
     font-size: 1.8rem;
     color: var(--cyan);
     margin-top: 8px;
 }

 .stat-label {
     font-size: 0.85rem;
     color: rgba(200, 225, 245, 0.65);
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-weight: 600;
     margin-top: 8px;
 }

 .stat-desc {
     font-size: 0.82rem;
     color: rgba(200, 225, 245, 0.4);
     margin-top: 4px;
 }

 /* ===== TESTIMONIALS ===== */
 .testimonial-card {
     background: white;
     border-radius: var(--radius-md);
     padding: 36px;
     border: 1px solid var(--border);
     height: 100%;
     transition: all 0.35s var(--ease-out);
     position: relative;
 }

 .testimonial-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-lg);
 }

 .testimonial-card .quote-mark {
     font-family: sans-serif;
     font-size: 5rem;
     color: var(--cyan);
     line-height: 0.5;
     opacity: 0.2;
     margin-bottom: 20px;
 }

 .testimonial-card p {
     font-size: 0.95rem;
     color: var(--text-mid);
     line-height: 1.85;
     font-style: italic;
     margin-bottom: 24px;
 }

 .testimonial-card .stars {
     color: var(--gold);
     font-size: 0.9rem;
     margin-bottom: 16px;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 14px;
     padding-top: 20px;
     border-top: 1px solid var(--border);
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--navy), var(--sky));
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: sans-serif;
     font-weight: 800;
     font-size: 1rem;
     color: white;
     flex-shrink: 0;
 }

 .author-info strong {
     font-size: 0.92rem;
     font-weight: 700;
     color: var(--navy);
     display: block;
 }

 .author-info span {
     font-size: 0.8rem;
     color: var(--text-light);
 }

 /* ===== FAQ SECTION ===== */
 .faq-section {
     background: var(--off-white);
 }

 .accordion-button {
     font-family: 'DM Sans', sans-serif;
     font-weight: 600;
     font-size: 1rem;
     color: var(--navy);
     background: white;
     border-radius: var(--radius-sm) !important;
     padding: 20px 24px;
     box-shadow: none !important;
     border: 1px solid var(--border);
 }

 .accordion-button:not(.collapsed) {
     color: var(--sky);
     background: white;
     border-color: rgba(46, 139, 192, 0.2);
 }

 .accordion-button::after {
     filter: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232E8BC0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
 }

 .accordion-body {
     font-size: 0.95rem;
     color: var(--text-mid);
     line-height: 1.8;
     padding: 20px 24px;
     background: white;
     border: 1px solid var(--border);
     border-top: none;
     border-radius: 0 0 var(--radius-sm) var(--radius-sm);
 }

 .accordion-item {
     border: none;
     background: transparent;
     margin-bottom: 10px;
 }

 /* ===== CTA SECTION ===== */
 .cta-section {
     background: linear-gradient(135deg, #061728 0%, #0D3558 50%, #06172E 100%);
     position: relative;
     overflow: hidden;
     border-radius: var(--radius-xl);
     margin: 0 20px;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(0, 194, 224, 0.12), transparent 70%);
     top: -200px;
     left: -100px;
 }

 .cta-section::after {
     content: '';
     position: absolute;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
     bottom: -100px;
     right: -50px;
 }

 .btn-cta-white {
     background: white;
     color: var(--navy);
     border-radius: 60px;
     padding: 15px 42px;
     font-weight: 700;
     font-size: 1rem;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s var(--ease-spring);
     border: none;
     box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
 }

 .btn-cta-white:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
     background: var(--cyan);
     color: white;
 }

 .btn-cta-ghost {
     background: transparent;
     color: rgba(255, 255, 255, 0.85);
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 60px;
     padding: 15px 42px;
     font-weight: 600;
     font-size: 1rem;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s var(--ease-out);
     backdrop-filter: blur(8px);
 }

 .btn-cta-ghost:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: white;
     color: white;
     transform: translateY(-4px);
 }

 /* ===== CONTACT STRIP ===== */
 .contact-strip {
     background: white;
     border-top: 1px solid var(--border);
     padding: 60px 0;
 }

 .contact-tile {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     padding: 30px;
     border-radius: var(--radius-md);
     border: 1px solid var(--border);
     transition: all 0.3s;
     height: 100%;
 }

 .contact-tile:hover {
     border-color: rgba(46, 139, 192, 0.2);
     box-shadow: var(--shadow-md);
     transform: translateY(-4px);
 }

 .contact-tile .ci {
     width: 56px;
     height: 56px;
     background: linear-gradient(135deg, var(--navy), var(--sky));
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .contact-tile strong {
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--text-light);
     text-transform: uppercase;
     letter-spacing: 0.08em;
     display: block;
     margin-bottom: 4px;
 }

 .contact-tile a,
 .contact-tile p {
     font-size: 1rem;
     color: var(--navy);
     font-weight: 600;
     margin: 0;
     text-decoration: none;
 }

 .contact-tile a:hover {
     color: var(--sky);
 }

 /* ===== FOOTER ===== */
 footer {
     background: #040F1C;
     color: rgba(180, 210, 235, 0.8);
     padding-top: 80px;
     padding-bottom: 0;
 }

 .footer-logo {
     font-family: sans-serif;
     font-size: 2rem;
     font-weight: 800;
     color: white;
     letter-spacing: -0.04em;
     margin-bottom: 12px;
 }

 .footer-logo span {
     color: var(--cyan);
 }

 footer p {
     font-size: 0.9rem;
     line-height: 1.8;
 }

 .footer-heading {
     color: white;
     font-size: 0.85rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: rgba(180, 210, 235, 0.7);
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.2s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .footer-links a:hover {
     color: white;
     padding-left: 6px;
 }

 .footer-links a::before {
     content: '›';
     color: var(--cyan);
     font-size: 1rem;
     line-height: 1;
 }

 .social-btn {
     width: 40px;
     height: 40px;
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 10px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: rgba(180, 210, 235, 0.7);
     text-decoration: none;
     transition: all 0.25s;
     font-size: 0.9rem;
 }

 .social-btn:hover {
     background: var(--sky);
     border-color: var(--sky);
     color: white;
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     padding: 20px 0;
     margin-top: 60px;
 }

 .footer-bottom p {
     font-size: 0.82rem;
     color: rgba(180, 210, 235, 0.4);
     margin: 0;
 }

 /* ===== QUOTE FORM SECTION ===== */
 .quote-section {
     background: var(--mist);
 }

 .quote-form-wrap {
     background: white;
     border-radius: var(--radius-lg);
     padding: 50px;
     box-shadow: var(--shadow-xl);
     border: 1px solid var(--border);
 }

 @media (max-width: 576px) {
     .quote-form-wrap {
         padding: 30px 20px;
     }
 }

 .form-control,
 .form-select {
     border: 1.5px solid var(--border);
     border-radius: var(--radius-sm);
     padding: 12px 16px;
     font-size: 0.92rem;
     color: var(--text-dark);
     transition: all 0.2s;
     font-family: 'DM Sans', sans-serif;
 }

 .form-control:focus,
 .form-select:focus {
     border-color: var(--sky);
     box-shadow: 0 0 0 3px rgba(46, 139, 192, 0.12);
     outline: none;
 }

 .form-label {
     font-weight: 600;
     font-size: 0.88rem;
     color: var(--navy);
     margin-bottom: 7px;
 }

 /* ===== MISC ===== */
 .highlight-text {
     background: linear-gradient(135deg, var(--sky), var(--cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .tag-pill {
     display: inline-block;
     background: rgba(46, 139, 192, 0.08);
     color: var(--sky);
     border-radius: 50px;
     padding: 4px 14px;
     font-size: 0.78rem;
     font-weight: 600;
     border: 1px solid rgba(46, 139, 192, 0.15);
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 992px) {
     .about-float-card {
         display: none;
     }

     .about-img-badge {
         right: 0;
     }

     .hero-stats .col-md-3 {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     }
 }

 @media (max-width: 768px) {
     .section-pad {
         padding: 70px 0;
     }

     .hero-h1 {
         font-size: 2.4rem;
     }

     .top-bar .d-md-block {
         display: none !important;
     }

     .cta-section {
         margin: 0 10px;
         border-radius: var(--radius-lg);
     }
 }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        top: 28px;
      
    }


.service-icon-s img{
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    height: 223px;
    object-fit: cover;
}


 @media (max-width: 768px) {


    a.btn.btn-nav-cta.ms-lg-3.mt-3.mt-lg-0 {
    width: 100%;
}


     .top-bar {
         display: none;
     }
 }