 :root {
     --blue: #2B7CFF; /* #0177BF;*/
     --red: #ED1B24;
     --white: #ffffff;
     --text-color: #666;
     --text-blue: #38bdf8;
     --section-color: #FAFAFA;
 }

 /* ─── RESET ─── */
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0
     
 }

 html {
    scroll-behavior: smooth;
    overflow-x: hidden ;
    max-width: 100%;
 }

 body {
     overflow-x: hidden
 }
 

 /* ─── HEADER ─── */
 .main-header {
     background: linear-gradient(90deg, #020b2f 0%, #03154f 50%, #041f73 100%);
     position: sticky;
     top: 0;
     z-index: 1050;
     width: 100%;
     /* box-shadow:0 2px 20px rgba(2,11,47,.45); */
 }

 .navbar {
     padding: .7rem 0
 }

 /* ─── BRAND ─── */
 .navbar-brand img {
     filter: brightness(1.1);
     transition: opacity .2s
 }

 .navbar-brand:hover img {
     opacity: .85
 }

 /* ─── NAV LINKS ─── */
 .navbar-nav .nav-link {
     color: rgba(255, 255, 255, .82) !important;
    /* font-size: .875rem;
     font-weight: 500; */
    font-size: 16px;
    font-weight: 600;
     padding: .45rem .9rem !important;
     border-radius: 6px;
     transition: color .18s, background .18s;
 }

 .navbar-nav .nav-link:hover,
 .navbar-nav .nav-link.active-menu {
     color: #fff !important;
     background: rgba(255, 255, 255, .1);
 }

 .navbar-nav .nav-link .bi-chevron-down {
     font-size: .65rem;
     margin-left: 3px;
     transition: transform .25s;
     vertical-align: middle;
 }

 .navbar-nav .nav-link.active-menu .bi-chevron-down {
     transform: rotate(180deg)
 }

 /* ─── CTA BUTTON ─── */
 .btn-get-quote {
     border-radius: 50px;
     font-size: .875rem;
     font-weight: 600;
     letter-spacing: .02em;
     text-decoration: none;
     display: inline-block;


    gap: 10px; 
    display: inline-flex;
    align-items: center;
    height: 52px; 
    padding: 0 28px;
    text-decoration: none;
    color: #fff;
    border: 2px solid #1b6fff;
    background: rgba(255,255,255,.03);
    box-shadow:
        0 0 18px rgba(27,111,255,.55);
    transition: .3s;
    
 }

 .btn-get-quote:hover {
    background: #1b6fff;
    color: white;
    transform: translateY(-2px);
 }

.btn-get-quote span {
    font-size: 18px;
}

/* ==========================
   ACTIVE MENU
========================== */

.nav-menu .active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #1b6fff,
        #3b89ff
    ); 
    color: white;
    min-width: 90px;
    height: 50px;
    border-radius: 14px;
    box-shadow:
        0 0 20px rgba(59,137,255,.55);
    padding: 0 25px;
}




 /* ─── MEGA MENU BASE ─── */
 .mega-wrapper {
     position: absolute;
     top: calc(100% + 8px);
     background: #fff;
     border-radius: 14px;
     box-shadow: 0 16px 48px rgba(2, 11, 47, .18), 0 2px 8px rgba(2, 11, 47, .08);
     border-top: 3px solid #3b6af5;
     padding: 0;
     overflow: hidden;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateX(-50%) translateY(-8px);
     left: 50%;
     transition: opacity .22s ease, transform .22s ease, visibility .22s;
     z-index: 1200;
 }

 .mega-wrapper.open {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
     transform: translateX(-50%) translateY(0);
 }

 /* Prevent Bootstrap from auto-closing our custom menus */
 .mega-wrapper {
     pointer-events: auto !important;
 }

 /* ─── SERVICES: widest (960px, 4 columns) ─── */
 #mega-services {
     width: 960px
 }

 /* ─── AREAS: medium (700px, 4 columns) ─── */
 #mega-areas {
     width: 700px
 }

 /* ─── INDUSTRIES: compact (420px, 2 columns) ─── */
 #mega-industries {
     width: 420px
 }

 /* ─── MEGA INNER LAYOUT ─── */
 .mega-body {
     display: flex;
     gap: 0
 }

 /* Left sidebar (Services only) */
 .mega-sidebar {
     background: linear-gradient(160deg, #020b2f, #041f73);
     width: 190px;
     flex-shrink: 0;
     padding: 1.5rem 1rem;
     display: flex;
     flex-direction: column;
     gap: .25rem;
 }

 .mega-sidebar-title {
     color: rgba(255, 255, 255, .45);
     font-size: .65rem;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     margin-bottom: .6rem;
     padding-bottom: .6rem;
     border-bottom: 1px solid rgba(255, 255, 255, .1);
 }

 .sidebar-tab {
     display: flex;
     align-items: center;
     gap: .6rem;
     padding: .55rem .75rem;
     border-radius: 8px;
     cursor: pointer;
     border: none;
     background: transparent;
     color: rgba(255, 255, 255, .75);
     font-size: .82rem;
     font-weight: 500;
     text-align: left;
     width: 100%;
     transition: background .18s, color .18s;
 }

 .sidebar-tab .tab-icon {
     width: 28px;
     height: 28px;
     border-radius: 7px;
     background: rgba(255, 255, 255, .1);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .8rem;
     flex-shrink: 0;
     transition: background .18s;
 }

 .sidebar-tab:hover,
 .sidebar-tab.active {
     background: rgba(255, 255, 255, .1);
     color: #fff
 }

 .sidebar-tab.active .tab-icon {
     background: #3b6af5
 }

 .sidebar-tab .bi-chevron-right {
     margin-left: auto;
     font-size: .6rem;
     color: rgba(255, 255, 255, .35)
 }

 /* Right content panels */
 .mega-panels {
     flex: 1;
     padding: 1.5rem;
     min-width: 0
 }

 .mega-panel {
     display: none
 }

 .mega-panel.active {
     display: grid
 }

 .mega-panel-3 {
     grid-template-columns: repeat(3, 1fr);
     gap: 0 1.5rem
 }

 .mega-panel-2 {
     grid-template-columns: repeat(2, 1fr);
     gap: 0 1.5rem
 }

 .panel-section-title {
     font-size: .67rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: #94a3b8;
     margin-bottom: .7rem;
     padding-bottom: .4rem;
     border-bottom: 1px solid #f1f5f9;
 }

 /* Sub-accordion groups */
 .service-group {
     margin-bottom: .5rem
 }

 .service-group-toggle {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: .35rem .5rem;
     border-radius: 7px;
     cursor: pointer;
     font-size: .82rem;
     font-weight: 600;
     color: #1e293b;
     transition: background .15s;
     border: none;
     background: transparent;
     width: 100%;
     text-align: left;
 }

 .service-group-toggle:hover {
     background: #f1f5f9
 }

 .service-group-toggle .bi-chevron-down {
     font-size: .6rem;
     color: #94a3b8;
     transition: transform .2s
 }

 .service-group.open .service-group-toggle .bi-chevron-down {
     transform: rotate(180deg)
 }

 .service-group-links {
     display: none;
     padding: .25rem 0 .25rem .75rem;
     border-left: 2px solid #e2e8f0;
     margin-left: .75rem;
 }

 .service-group.open .service-group-links {
     display: block
 }

 /* Mega links */
 .mega-link {
     display: block;
     font-size: .8rem;
     color: #475569;
     padding: .22rem .4rem;
     border-radius: 5px;
     text-decoration: none;
     transition: color .15s, background .15s, padding-left .15s;
 }

 .mega-link:hover {
     color: #3b6af5;
     background: #eff4ff;
     padding-left: .75rem
 }

 /* Plain icon links */
 .plain-link {
     display: flex;
     align-items: center;
     gap: .5rem;
     font-size: .83rem;
     color: #334155;
     padding: .38rem .5rem;
     border-radius: 7px;
     text-decoration: none;
     transition: background .15s, color .15s;
 }

 .plain-link .link-icon {
     width: 26px;
     height: 26px;
     border-radius: 6px;
     background: #eff4ff;
     color: #3b6af5;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .75rem;
     flex-shrink: 0;
     transition: background .15s, color .15s;
 }

 .plain-link:hover {
     background: #f1f5f9;
     color: #1e293b
 }

 .plain-link:hover .link-icon {
     background: #3b6af5;
     color: #fff
 }

 /* ─── AREAS grid ─── */
 .areas-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     padding: 1.5rem;
 }

 .area-col+.area-col {
     border-left: 1px solid #f1f5f9;
     padding-left: 1.25rem
 }

 .area-col-head {
     font-size: .67rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: #3b6af5;
     margin-bottom: .8rem;
     display: flex;
     align-items: center;
     gap: .4rem;
 }

 .area-col-head::before {
     content: '';
     display: block;
     width: 3px;
     height: 14px;
     border-radius: 2px;
     background: #3b6af5;
 }

 .area-link {
     display: block;
     font-size: .82rem;
     color: #334155;
     padding: .28rem .25rem;
     border-radius: 5px;
     text-decoration: none;
     transition: color .15s, padding-left .15s;
 }

 .area-link:hover {
     color: #3b6af5;
     padding-left: .4rem
 }

 /* ─── INDUSTRIES grid ─── */
 .industries-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: .25rem;
     padding: 1.25rem;
 }

 .industry-link {
     display: flex;
     align-items: center;
     gap: .6rem;
     padding: .55rem .65rem;
     border-radius: 9px;
     text-decoration: none;
     color: #334155;
     font-size: .83rem;
     font-weight: 500;
     transition: background .15s, color .15s;
 }

 .industry-link .ind-icon {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     background: #f1f5f9;
     color: #64748b;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .9rem;
     flex-shrink: 0;
     transition: background .15s, color .15s;
 }

 .industry-link:hover {
     background: #eff4ff;
     color: #1e293b
 }

 .industry-link:hover .ind-icon {
     background: #3b6af5;
     color: #fff
 }

 /* ─── OVERLAY ─── 
#nav-overlay{
    position:fixed;inset:0;z-index:1100;display:none;
}
#nav-overlay.show{display:block} */

 /* ─── HAMBURGER ─── */
 .custom-toggler {
     border: none;
     background: transparent;
     padding: 6px;
     cursor: pointer;
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .custom-toggler:focus {
     box-shadow: none;
     outline: none
 }

 .tog-line {
     display: block;
     width: 25px;
     height: 2px;
     background: #fff;
     border-radius: 2px;
     transform-origin: center;
     transition: transform .3s, opacity .3s;
 }

 .custom-toggler[aria-expanded=true] .tog-top {
     transform: translateY(7px) rotate(45deg)
 }

 .custom-toggler[aria-expanded=true] .tog-mid {
     opacity: 0;
     transform: scaleX(0)
 }

 .custom-toggler[aria-expanded=true] .tog-bot {
     transform: translateY(-7px) rotate(-45deg)
 }

@media(max-width:1199px) {

    /* Hide Get Quote button on small screens */
    .navbar-collapse .d-flex.align-items-center {
        display: none !important;
    }

}

@media(max-width:767px) {

    .navbar-collapse .d-flex.align-items-center {
        display: none !important;
    }

}

 /* ─── MOBILE ─── */
 @media(max-width:1199px) {
     .navbar-collapse {
         background: linear-gradient(160deg, #020b2f, #041f73);
         border-radius: 0 0 16px 16px;
         padding: 1rem 1.25rem 1.5rem;
         margin-top: .5rem;
         box-shadow: 0 8px 24px rgba(2, 11, 47, .5);
         border-top: 1px solid rgba(255, 255, 255, .08);
         /*    background:#03154f;
        border-radius:0 0 12px 12px;
        padding:1rem 1.25rem 1.5rem;
        margin-top:.5rem;
        box-shadow:0 8px 24px rgba(2,11,47,.5); */
     }

     .navbar-nav .nav-link {
         padding: .55rem .5rem !important;
         border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
         border-radius: 0;
     }

     /* On mobile, mega menus become static dropdowns */
     .mega-wrapper {
         position: static !important;
         transform: none !important;
         left: auto !important;
         width: 100% !important;
         border-radius: 8px !important;
         border-top: none !important;
         background: rgba(255, 255, 255, .05) !important;
         padding: .75rem !important;
         margin-top: .25rem;
         border: 1px solid rgba(255, 255, 255, .1) !important;
         box-shadow: none !important;
         opacity: 1;
         visibility: visible;
         pointer-events: all;
         display: none;
     }

     .mega-wrapper.open {
         display: block
     }

     .mega-sidebar {
         display: none
     }

     .mega-panels {
         padding: .5rem
     }

     .mega-panel {
         display: grid !important
     }

     .mega-panel-3,
     .mega-panel-2 {
         grid-template-columns: 1fr
     }

     .areas-grid {
         grid-template-columns: repeat(2, 1fr);
         padding: .75rem
     }

     .area-col+.area-col {
         border-left: none;
         padding-left: 0;
         border-top: 1px solid rgba(255, 255, 255, .1);
         padding-top: .75rem;
         margin-top: .75rem
     }

     .mega-sidebar-title,
     .panel-section-title {
         color: rgba(255, 255, 255, .5)
     }

     .mega-link,
     .plain-link,
     .area-link,
     .industry-link,
     .service-group-toggle {
         color: rgba(255, 255, 255, .8)
     }

     .plain-link .link-icon,
     .industry-link .ind-icon {
         background: rgba(255, 255, 255, .1);
         color: rgba(255, 255, 255, .7)
     }

     .area-col-head {
         color: #a8c4ff
     }

     .area-col-head::before {
         background: #5b8dee
     }

     .service-group-links {
         border-left-color: rgba(255, 255, 255, .2)
     }

     .industries-grid {
         grid-template-columns: repeat(2, 1fr)
     }

     .d-flex.align-items-center {
         margin-top: 1rem
     }

     .btn-get-quote {
         width: 100%;
         text-align: center
     }
    }

     /* Hide all panels on mobile by default */
     /* .mega-panel {
    display: none !important;
}
.mega-panel.active {
    display: block !important;
} */

     /* Fix the white box on service-group-toggle */
     /*
.service-group-toggle {
    background: transparent !important;
    color: rgba(255,255,255,.85) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 8px !important;
}
.service-group-toggle:hover {
    background: rgba(255,255,255,.06) !important;
}
.service-group-links {
    background: transparent !important;
}*/

 


 /*

@media(max-width:1199px){
    .navbar-collapse{
        background: linear-gradient(160deg, #020b2f, #041f73);
        border-radius: 0 0 16px 16px;
        padding: 1rem 1.25rem 1.5rem;
        margin-top: .5rem;
        box-shadow: 0 8px 24px rgba(2,11,47,.6);
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .navbar-nav .nav-link{
        color: rgba(255,255,255,.85) !important;
        padding: .65rem .5rem !important;
        border-bottom: 1px solid rgba(255,255,255,.07) !important;
        border-radius: 0;
    }
    .navbar-nav .nav-link:hover{
        color: #fff !important;
        background: rgba(255,255,255,.06);
        border-radius: 8px;
    }
    .mega-wrapper{
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: 100% !important;
        border-radius: 8px !important;
        border-top: none !important;
        background: rgba(255,255,255,.05) !important;
        padding: .75rem !important;
        margin-top: .25rem;
        border: 1px solid rgba(255,255,255,.08) !important;
        box-shadow: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
    }
    .mega-wrapper.open{ display: block }
    .mega-sidebar{ display: none }
    .mega-panels{ padding: .5rem }
    .mega-panel{ display: grid !important }
    .mega-panel-3, .mega-panel-2{ grid-template-columns: 1fr }
    .areas-grid{ grid-template-columns: repeat(2,1fr); padding: .75rem }
    .area-col+.area-col{
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,.08);
        padding-top: .75rem;
        margin-top: .75rem;
    }
    .panel-section-title{ color: rgba(255,255,255,.45) }
    .mega-link,
    .plain-link,
    .area-link,
    .industry-link,
    .service-group-toggle{ color: rgba(255,255,255,.8) }
    .plain-link .link-icon,
    .industry-link .ind-icon{
        background: rgba(255,255,255,.1);
        color: rgba(255,255,255,.7);
    }
    .area-col-head{ color: #a8c4ff }
    .area-col-head::before{ background: #5b8dee }
    .service-group-links{ border-left-color: rgba(255,255,255,.15) }
    .industries-grid{ grid-template-columns: repeat(2,1fr) }
    .d-flex.align-items-center{ margin-top: 1rem }
    .btn-get-quote{ width: 100%; text-align: center; display: block }
} */


 /* ================= FOOTER ================= */

    .footer {
      background: #060d1f;
      padding: 70px 80px 40px;
    }
 
    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
      gap: 40px;
      padding-bottom: 50px;
    }
 
    /* ── Brand Column ─────────────────────────────────────────── */
    .brand-col .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      margin-bottom: 24px;
    }
 
    .logo-box {
      position: relative;
      width: 58px;
      height: 58px;
      background: #0d1e38;
      border: 1.5px solid #1e3a5f;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }
 
    .logo-box::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 5px;
      width: 16px;
      height: 16px;
      background-image:
        radial-gradient(circle, #3b9eff 1.3px, transparent 1.3px),
        radial-gradient(circle, #3b9eff 1.3px, transparent 1.3px),
        radial-gradient(circle, #3b9eff 1.3px, transparent 1.3px),
        radial-gradient(circle, #3b9eff 1.3px, transparent 1.3px);
      background-size: 7px 7px;
      background-position: 0 0, 7px 0, 0 7px, 7px 7px;
      background-repeat: no-repeat;
      opacity: 0.8;
    }
 
    .logo-letters {
      font-size: 26px;
      font-weight: 900;
      padding-top: 8px;
    }
    .logo-letters .lt { color: #fff; }
    .logo-letters .ld { color: #3b9eff; }
 
    .logo-divider {
      width: 1.5px;
      height: 48px;
      background: rgba(255,255,255,0.25);
      flex-shrink: 0;
    }
 
    .logo-text .brand {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.3px;
    }
    .logo-text .brand span { color: #3b9eff; }
    .logo-text .sub {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 4px;
      margin-top: 2px;
    }
 
    .brand-desc {
      font-size: 14.5px;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      max-width: 300px;
    }
 
    /* ── Section Columns ──────────────────────────────────────── */
    .footer-col strong {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px; /* 14px;*/
    }
 
    .footer-col .col-underline {
      width: 36px;
      height: 3px;
      background: #1a7fe8;
      border-radius: 2px;
      margin-top: 6px; 
      margin-bottom: 22px;
      box-shadow: 0 0 8px #1a7fe8;
    }
 
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin: 0;
      padding: 0;
    
    }
   
    .footer-col ul li a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 14.5px;
      transition: color 0.15s;
    }
 
    .footer-col ul li a:hover { color: #fff; }
 
    .footer-col ul li a .arr {
      color: #1a7fe8;
      font-size: 13px;
      font-weight: 700;
    }
 
    /* ── Get in Touch ─────────────────────────────────────────── */
    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
 
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
 
    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1.5px solid #1a7fe8;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(26,127,232,0.08);
    }
 
    .contact-icon svg {
      width: 18px;
      height: 18px;
      stroke: white; /* #3b9eff;*/
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .contact-item p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      line-height: 1.5;
      padding-top: 8px;
    }
 
    /* ── CTA Banner ───────────────────────────────────────────── */
    .cta-banner {
      border: 1.5px solid #1a7fe8;
      border-radius: 14px;
      padding: 36px 48px;
      display: flex;
      align-items: center;
      gap: 32px;
      margin-bottom: 40px;
      background: rgba(26, 127, 232, 0.06);
      box-shadow: 0 0 30px rgba(26,127,232,0.15), inset 0 0 30px rgba(26,127,232,0.04);
      position: relative;
      overflow: hidden;
    }
 
    /* dot pattern left */
    .cta-banner::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 160px;
      background-image: radial-gradient(circle, rgba(59,158,255,0.25) 1px, transparent 1px);
      background-size: 14px 14px;
      pointer-events: none;
    }
 
    /* dot pattern right */
    .cta-banner::after {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 160px;
      background-image: radial-gradient(circle, rgba(59,158,255,0.25) 1px, transparent 1px);
      background-size: 14px 14px;
      pointer-events: none;
    }
 
    .rocket-circle {
      width: 72px;
      height: 72px;
      border: 2px solid #1a7fe8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(26,127,232,0.1);
      box-shadow: 0 0 16px rgba(26,127,232,0.4);
      position: relative;
      z-index: 1;
    }
 
    .rocket-circle svg {
      width: 32px;
      height: 32px;
      stroke: #3b9eff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .cta-divider {
      width: 1.5px;
      height: 70px;
      background: rgba(255,255,255,0.2);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
 
    .cta-text {
      flex: 1;
      position: relative;
      z-index: 1;
    }
 
    .cta-text strong {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 8px;
    }
 
    .cta-text strong span { color: #3b9eff; }
 
    .cta-text p {
      font-size: 14.5px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
 
    .cta-btn {
      flex-shrink: 0;
      background: #1a7fe8;
      color: #fff;
      border: 2px solid #3b9eff;
      border-radius: 10px;
      padding: 16px 36px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: inherit;
      white-space: nowrap;
      box-shadow: 0 0 20px rgba(26,127,232,0.5);
      transition: box-shadow 0.2s, transform 0.1s;
      position: relative;
      z-index: 1;
    }
 
    .cta-btn:hover {
      box-shadow: 0 0 30px rgba(26,127,232,0.8);
      transform: scale(1.02);
    }
 
    .cta-btn .arrow { font-size: 20px; font-weight: 400; }
 
    /* ── Bottom Bar ───────────────────────────────────────────── */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
 
    .social-links {
      display: flex;
      gap: 12px;
    }
 
    .social-links a {
      width: 42px;
      height: 42px;
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 15px;
      transition: border-color 0.15s, color 0.15s;
    }
 
    .social-links a:hover {
      border-color: #3b9eff;
      color: #3b9eff;
    }
 
    .social-links a svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }
 
    .copyright {
      font-size: 13.5px;
      color: rgba(255,255,255,0.45);
    }


    /* ================= FOOTER RESPONSIVE ================= */


/* ---------- Laptop / Large Tablet ---------- */
@media (max-width: 1100px) {

    .footer {
        padding: 60px 40px 35px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

    .brand-desc {
        max-width: 100%;
    }

    .cta-banner {
        padding: 30px;
        gap: 25px;
    }

    .cta-text strong {
        font-size: 24px;
    }

    .cta-btn {
        padding: 14px 25px;
    }

}



/* ---------- Tablet ---------- */
@media (max-width: 768px) {

    .footer {
        padding: 50px 25px 30px;
    }


    /* Footer columns */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* Brand */
    .brand-col {
        text-align: left;
    }

    .brand-col .logo-area {
        justify-content: flex-start;
    }

    .brand-desc {
        max-width: 100%;
        margin: 0;
    }



    /* Footer links */
    .footer-col {
        text-align: left;
    }


    .footer-col .col-underline {
        margin-left: 0;
        margin-right: 0;
    }


    .footer-col ul {
        align-items: flex-start;
    }


    .footer-col ul li a {
        justify-content: flex-start;
    }



    /* Contact */
    .contact-list {
        align-items: flex-start;
    }


    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }


    .contact-item p {
        padding-top: 8px;
    }



    /* CTA */
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px 25px;
        gap: 25px;
    }


    .cta-divider {
        width: 100%;
        height: 1px;
    }


    .cta-text strong {
        font-size: 22px;
    }


    .cta-text p {
        font-size: 14px;
    }


    .cta-btn {
        width: auto;
    }



    /* Bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}



/* ---------- Mobile Phones ---------- */
@media (max-width: 480px) {


    .footer {
        padding: 40px 18px 25px;
    }



    /* Logo */
    .brand-col .logo-area img {
        max-width: 190px;
        height: auto;
    }



    .brand-desc {
        font-size: 14px;
        line-height: 1.7;
    }



    /* Footer heading */
    .footer-col strong {
        font-size: 17px;
    }



    /* Links */
    .footer-col ul {
        gap: 12px;
    }


    .footer-col ul li a {
        font-size: 14px;
    }



    /* Contact */
    .contact-item {
        gap: 12px;
    }


    .contact-icon {
        width: 36px;
        height: 36px;
    }


    .contact-item p {
        font-size: 13.5px;
        word-break: break-word;
    }



    /* CTA */
    .cta-banner {
        padding: 25px 18px;
    }


    .rocket-circle {
        width: 60px;
        height: 60px;
    }


    .cta-text strong {
        font-size: 20px;
    }


    .cta-text p {
        font-size: 13px;
    }


    .cta-btn {
        padding: 13px 22px;
        font-size: 14px;
    }



    /* Social */
    .social-links {
        gap: 10px;
    }


    .social-links a {
        width: 38px;
        height: 38px;
    }


    .copyright {
        font-size: 12px;
    }

}



/* ---------- Very Small Phones ---------- */
@media (max-width: 360px) {


    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }


    .footer-top {
        gap: 28px;
    }


    .cta-text strong {
        font-size: 18px;
    }


    .cta-btn {
        width: 100%;
        justify-content: center;
    }


    .social-links {
        flex-wrap: wrap;
    }

}


