/* ================================
   BASE RESET (header-related)
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7fc;
    color: #333333;
    padding-top: 0;
}

/* ================================
   ANNOUNCEMENT BAR
   ================================ */
.announcement-bar {
    background: linear-gradient(135deg, #00e5ff, #00b0ff);
    border-bottom: none;
    padding: 10px 40px;
    width: 100%;
    transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    max-height: 60px;
    overflow: hidden;
}
.announcement-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.announcement-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}
.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #001d4c !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.announcement-item i {
    color: #001d4c !important;
}
.announcement-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.announcement-socials a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 29, 76, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #001d4c;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}
.announcement-socials a:hover {
    background: #001d4c;
    color: #00e5ff;
}

/* ================================
   SITE HEADER
   ================================ */
.site-header {
    background-color: #001d4c;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: margin 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-radius 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}
.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-text span {
    color: #00e5ff;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 28px 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.nav-menu > li > a:hover {
    color: #00e5ff;
}
.nav-menu > li > a i {
    font-size: 12px;
    transition: transform 0.25s ease;
}
.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* ================================
   DROPDOWNS (desktop)
   ================================ */
/* --- About dropdown --- */
.dropdown .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 25px -5px rgba(9,21,64,.1), 0 25px 50px -12px rgba(27,44,193,.2);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 10px, 0);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index: 1001;
    border: 1px solid rgba(27,44,193,.08);
}
.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}
.dropdown .sub-menu > li {
    list-style: none;
}
.dropdown .sub-menu > li > a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: #091540;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.dropdown .sub-menu > li:hover > a {
    color: #1B2CC1;
    background: #f4f7fc;
    border-left-color: #1B2CC1;
    transform: translateX(4px);
}

/* ================================
   SERVICES MEGA MENU (desktop) – PERFECTLY CENTERED
   ================================ */
@media (min-width: 1025px) {
    /* Make parent <li> static so the dropdown positions relative to the full-width <ul> */
    .nav-menu > .services-mega-menu {
        position: static !important;
    }

    .nav-menu > .services-mega-menu > .sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        width: 1250px !important;
        max-width: calc(100vw - 40px) !important;
        transform: translateX(-50%) translateY(10px) !important;
        padding: 28px 30px !important;
        display: flex !important;
        flex-wrap: wrap;
        box-sizing: border-box;
        background: linear-gradient(180deg, #ffffff 0%, #f9faff 100%) !important;
        border: 1px solid rgba(27,44,193,.08);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 25px -5px rgba(9,21,64,.1), 0 25px 50px -12px rgba(27,44,193,.2) !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        z-index: 999999;
        transition: opacity .28s ease, transform .28s ease, visibility .28s ease !important;
    }
    .nav-menu > .services-mega-menu:hover > .sub-menu {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
    }
    .nav-menu > .services-mega-menu > .sub-menu > li {
        width: 20% !important;
        padding: 6px !important;
        box-sizing: border-box;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .mega-block {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .nav-menu > .services-mega-menu > .sub-menu > li a {
        text-decoration: none;
    }
    .nav-menu > .services-mega-menu > .sub-menu > li .mega-block > a {
        display: flex !important;
        align-items: center;
        min-height: 44px;
        padding: 10px 14px !important;
        color: #091540 !important;
        font-size: 15px;
        font-weight: 700;
        border-radius: 10px;
        border-left: 3px solid transparent;
        transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease !important;
    }
    .nav-menu > .services-mega-menu > .sub-menu > li .mega-block:hover > a {
        color: #1B2CC1 !important;
        background: #ffffff !important;
        border-left-color: #1B2CC1;
        transform: translateX(4px);
        box-shadow: 0 4px 14px rgba(27,44,193,.08);
    }
    .nav-menu > .services-mega-menu > .sub-menu > li .sub-menu {
        position: static !important;
        display: block !important;
        width: 100% !important;
        margin: 4px 0 0 !important;
        padding: 4px 10px 6px !important;
        background: transparent !important;
        box-shadow: none !important;
        list-style: none !important;
    }
    .nav-menu > .services-mega-menu > .sub-menu > li .sub-menu > li > a {
        display: flex;
        align-items: center;
        padding: 5px 0 !important;
        color: #525c76 !important;
        font-size: 13.5px;
        font-weight: 500;
        transition: color .2s ease, transform .2s ease !important;
    }
    .nav-menu > .services-mega-menu > .sub-menu > li .sub-menu > li > a:hover {
        color: #1B2CC1 !important;
        transform: translateX(4px) !important;
    }
}

/* ================================
   INDUSTRIES DROPDOWN (desktop) – 5 COLUMNS, WIDE, NO SCROLLBAR
   ================================ */
/* ================================
   INDUSTRIES DROPDOWN (desktop) – CENTERED, WIDTH 1250px
   ================================ */
/* ================================
   INDUSTRIES DROPDOWN – CENTERED (desktop only)
   ================================ */
@media (min-width: 1025px) {
    /* Make the parent <li> static so the dropdown positions relative to the full-width <ul> */
    .nav-menu > .industries-dropdown {
        position: static !important;
    }

    .nav-menu > .industries-dropdown > .sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(10px) !important;
        width: 1250px !important;
        max-width: 96vw !important;
        padding: 22px 30px !important;
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 6px 18px !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px -5px rgba(9,21,64,.1), 0 25px 50px -12px rgba(27,44,193,.2) !important;
        border: 1px solid rgba(27,44,193,.08) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity .28s ease, transform .28s ease, visibility .28s ease !important;
        z-index: 1001 !important;
        list-style: none !important;
    }

    .nav-menu > .industries-dropdown:hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
    }
}

.industries-dropdown .sub-menu li {
    list-style: none;
}
.industries-dropdown .sub-menu li a {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #091540;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}
.industries-dropdown .sub-menu li a:hover {
    color: #1B2CC1 !important;
    background: #f4f7fc;
    border-left-color: #1B2CC1;
    transform: translateX(4px);
}
.industries-dropdown .sub-menu li a:hover .first-icon {
    color: #1B2CC1;
}
.industries-dropdown .sub-menu .first-icon {
    margin-right: 8px;
    font-size: 14px;
    color: #1B2CC1;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

/* ================================
   CTA BUTTON & MOBILE TOGGLE
   ================================ */
.btn-cta {
    background: linear-gradient(135deg, #00e5ff, #00b0ff);
    color: #001d4c;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.35);
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
    background: linear-gradient(135deg, #33ebff, #1ac1ff);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ================================
   SCROLLED FLOATING STATE (desktop)
   ================================ */
@media (min-width: 1025px) {
    body.scrolled .announcement-bar {
        transform: translateY(-100%);
        opacity: 0;
        max-height: 0;
        padding: 0 40px;
        margin: 0;
        border: none;
        pointer-events: none;
    }
    body.scrolled .site-header {
        top: 15px;
        margin: 0 20px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
        height: 80px;
        background-color: #001d4c;
    }
    body.scrolled .header-container {
        padding: 0 40px;
    }
    body.scrolled .logo-img {
        max-height: 50px;
    }
    body.scrolled .nav-menu > li > a {
        padding: 28px 15px;
        font-size: 16px;
    }
    body.scrolled .btn-cta {
        padding: 12px 26px;
        font-size: 14px;
    }
}

/* ================================
   RESPONSIVE (mobile & tablet)
   ================================ */
@media (max-width: 1024px) {
    .announcement-bar {
        padding: 10px 20px;
    }
    .header-container {
        padding: 0 20px;
    }
    .announcement-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .announcement-contacts {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    .announcement-socials {
        justify-content: center;
    }
    .mobile-toggle {
        display: block;
    }
    .header-cta .btn-cta {
        display: none !important;
    }

    /* Navigation drawer */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #00173d;
        padding: 0 0 25px 0;
        box-shadow: 0 15px 25px rgba(0,0,0,0.3);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
        border-top: 1px solid rgba(0, 229, 255, 0.15);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu > li {
        width: 100%;
        position: relative;
    }
    .nav-menu > li > a {
        padding: 14px 20px;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 15px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .nav-menu > li > a .toggle-arrow {
        pointer-events: auto;
        cursor: pointer;
        padding: 8px 10px;
        margin-left: auto;
        transition: transform 0.25s ease;
        font-size: 14px;
        z-index: 10;
    }
    .nav-menu > li.open > a .toggle-arrow {
        transform: rotate(180deg);
    }
    .nav-menu > li.open > a {
        color: #00e5ff;
        background: rgba(0, 229, 255, 0.05);
    }

    /* ---- All submenus on mobile: overlay dropdowns (except industries) ---- */
    .dropdown .sub-menu,
    .services-mega-menu > .sub-menu {
        display: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 8px 16px !important;
        max-height: none !important;
        overflow-y: visible !important;
        z-index: 9999 !important;
        border: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
        gap: unset !important;
    }

       .industries-dropdown .sub-menu {
        display: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 10px 14px !important;
        max-height: none !important;
        overflow-y: visible !important;
        z-index: 9999 !important;
        border: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4px 10px !important;
        /* FIX: Ensure items align properly */
        align-items: start !important;
        justify-items: start !important;
        justify-content: start !important;
    }

    /* Industry link styling on mobile */
    .industries-dropdown .sub-menu li a {
        padding: 6px 4px !important;
        font-size: 13px !important;
        white-space: normal !important;  /* Allows text to wrap if needed */
        word-break: break-word !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Fix for second column items */
    .industries-dropdown .sub-menu li {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .dropdown.open > .sub-menu,
    .services-mega-menu.open > .sub-menu,
    .industries-dropdown.open > .sub-menu {
          display: grid !important; 
    }

    /* ---- Nested mega-block submenus (second level) ---- */
    .mega-block .sub-menu {
        display: none !important;
        background: #f8fafc !important;
        padding: 5px 15px 5px 40px !important;
        border-radius: 6px;
        margin-bottom: 6px;
        position: relative !important;
        box-shadow: none !important;
        max-height: none !important;
        overflow-y: visible !important;
        list-style: none !important;
    }
    .mega-block.open > .sub-menu {
        display: block !important;
    }

    /* ---- Fix nested sub-menu items ---- */
    .mega-block .sub-menu li {
        display: block !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .mega-block .sub-menu li a {
        display: flex !important;
        align-items: center !important;
        padding: 8px 0 8px 30px !important;
        font-size: 14px !important;
        color: #525c76 !important;
        border-left: none !important;
        background: transparent !important;
        transform: none !important;
        font-weight: 500 !important;
    }
    .mega-block .sub-menu li a:hover {
        color: #1B2CC1 !important;
        background: transparent !important;
    }
    .mega-block .sub-menu li a .second-icon {
        margin-right: 12px !important;
        font-size: 11px !important;
        color: #94a3b8 !important;
    }
    .mega-block .sub-menu li a:hover .second-icon {
        color: #1B2CC1 !important;
    }
    .mega-block .sub-menu li:last-child {
        border-bottom: none !important;
    }

    /* ---- Mobile mega-block parent links ---- */
    .mega-block > a {
        color: #091540 !important;
        font-weight: 700;
        font-size: 14px;
        display: flex !important;
        align-items: center;
        padding: 10px 5px !important;
        text-decoration: none;
        cursor: pointer;
        gap: 10px;
    }
    .mega-block > a i {
        margin-right: 8px !important;
        font-size: 16px;
        width: 24px;
        text-align: center;
        flex-shrink: 0;
    }
    .mega-block.has-children > a::after {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        color: #94a3b8;
        margin-left: auto;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }
    .mega-block.has-children.open > a::after {
        transform: rotate(90deg);
    }

    /* ---- General submenu item spacing and hover ---- */
    .sub-menu li a {
        padding: 12px 16px !important;
        font-size: 15px;
        border-left: none !important;
        transform: none !important;
    }
    .sub-menu li a:hover {
        transform: none !important;
        background: transparent !important;
    }

    /* ---- Icon spacing on mobile ---- */
    .first-icon {
        margin-right: 12px !important;
        font-size: 16px !important;
    }
    .second-icon {
        margin-right: 12px !important;
        font-size: 11px !important;
    }

    /* ---- Extra: ensure no default list styles on any submenu ---- */
    .sub-menu,
    .sub-menu ul,
    .mega-block .sub-menu ul {
        list-style: none !important;
        padding-left: 0 !important;
    }
    .nav-menu a,
    .sub-menu a,
    .mega-block a,
    .dropdown a {
        text-decoration: none !important;
    }

    /* ---- Toggle arrow for mobile submenu ---- */
    .toggle-sub-arrow {
        font-size: 12px;
        color: #94a3b8;
        margin-left: auto;
        padding: 4px 6px;
        transition: transform 0.25s ease;
        cursor: pointer;
        pointer-events: auto;
    }
    .mega-block.open .toggle-sub-arrow {
        transform: rotate(180deg);
    }
}

/* ================================
   SUBMENU ICONS – FIRST LEVEL
   ================================ */
.first-icon {
    margin-right: 12px;
    font-size: 16px;
    color: #1B2CC1;
    width: 20px;
    text-align: center;
    transition: color 0.25s ease;
}
.sub-menu li a:hover .first-icon,
.mega-block > a:hover .first-icon {
    color: #1B2CC1;
}

/* ================================
   SUBMENU ICONS – SECOND LEVEL
   ================================ */
.second-icon {
    margin-right: 12px;
    font-size: 11px;
    color: #94a3b8;
    width: 16px;
    text-align: center;
    transition: color 0.25s ease;
}
.sub-menu li a:hover .second-icon {
    color: #1B2CC1;
}

/* ================================
   COURSES DROPDOWN – TWO COLUMNS, CENTERED
   ================================ */

/* --- Desktop (≥1025px) --- */
@media (min-width: 1025px) {
    .courses-dropdown .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 580px;
        max-width: 94vw;
        padding: 18px 22px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 20px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 25px -5px rgba(9,21,64,.1), 0 25px 50px -12px rgba(27,44,193,.2);
        border: 1px solid rgba(27,44,193,.08);
        opacity: 0;
        visibility: hidden;
        transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
        z-index: 1001;
        list-style: none;
    }

    .courses-dropdown:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .courses-dropdown .sub-menu li {
        list-style: none;
    }

    .courses-dropdown .sub-menu li a {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        color: #091540;
        text-decoration: none;
        border-left: 3px solid transparent;
        transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .courses-dropdown .sub-menu li a:hover {
        color: #1B2CC1 !important;
        background: #f4f7fc;
        border-left-color: #1B2CC1;
        transform: translateX(4px);
    }

    .courses-dropdown .sub-menu li a:hover .first-icon {
        color: #1B2CC1;
    }

    .courses-dropdown .sub-menu .first-icon {
        margin-right: 10px;
        font-size: 14px;
        color: #1B2CC1;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
        transition: color 0.25s ease;
    }
}

/* --- Tablet & Mobile (<1025px) --- */
@media (max-width: 1024px) {
    /* Inherit mobile styles from existing dropdown */
    .courses-dropdown .sub-menu {
        display: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 10px 14px !important;
        max-height: none !important;
        overflow-y: visible !important;
        z-index: 9999 !important;
        border: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4px 10px !important;
        align-items: start !important;
        justify-items: start !important;
        justify-content: start !important;
    }

    .courses-dropdown.open > .sub-menu {
        display: grid !important;
    }

    .courses-dropdown .sub-menu li a {
        padding: 6px 4px !important;
        font-size: 13px !important;
        white-space: normal !important;
        word-break: break-word !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        color: #091540 !important;
        text-decoration: none !important;
        border-left: none !important;
    }

    .courses-dropdown .sub-menu li {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        list-style: none !important;
    }

    .courses-dropdown .sub-menu .first-icon {
        margin-right: 10px !important;
        font-size: 14px !important;
        color: #1B2CC1;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }
}
/* ================================
   FOOTER STYLES (from footer)
   ================================ */
.site-footer {
    background-color: #00112c;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-top-bar {
    background: linear-gradient(135deg, #00173b, #001d4c);
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}
.footer-top-bar .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Make footer main background match top bar */
.footer-main {
    background: linear-gradient(135deg, #00173b, #001d4c);
    padding: 60px 0;
}
.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 0.9fr 0.9fr;
    gap: 40px;
}

.footer-brand-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}
.footer-logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-logo-text span {
    color: #00e5ff;
}
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-social-icons a:hover {
    background: #00e5ff;
    color: #00112c;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.footer-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.footer-cta-text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.footer-cta-text h3 span {
    color: #00e5ff;
}
.footer-cta-text p {
    color: #94a3b8;
    font-size: 13.5px;
    max-width: 460px;
    margin: 0 auto;
}
.footer-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
}
.footer-action-buttons .btn {
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.btn-outline {
    background: transparent;
    color: #00e5ff;
    border: 2px solid #00e5ff;
}
.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}
.btn-primary {
    background: linear-gradient(135deg, #00e5ff, #00b0ff);
    color: #001d4c;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #33ebff, #1ac1ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.45);
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #00e5ff;
    border-radius: 2px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.footer-contact li i {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.footer-contact li div {
    display: flex;
    flex-direction: column;
}
.footer-contact strong {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.footer-contact a,
.footer-contact span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.footer-contact a:hover {
    color: #00e5ff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.footer-links a i {
    font-size: 10px;
    color: #00e5ff;
    transition: transform 0.25s ease;
}
.footer-links a:hover {
    color: #00e5ff;
    transform: translateX(5px);
}
.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-bottom {
    background-color: #000a1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
}
.footer-legal-links a:hover {
    color: #00e5ff;
}
.footer-bottom p {
    color: #64748b;
    font-size: 13.5px;
}
.footer-bottom p a {
    color: #00e5ff;
    text-decoration: none;
    font-weight: 600;
}
.footer-bottom p a:hover {
    text-decoration: underline;
}

/* ================================
   FOOTER RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .footer-container {
        padding: 0 25px;
    }
    .footer-top-bar .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand-social {
        align-items: center;
    }
    .footer-main .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    .footer-column {
        padding-left: 10%;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .footer-container {
        padding: 0 18px;
    }
    .footer-main .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-column {
        padding-left: 12%;
    }
    .footer-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    .footer-action-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================================
   GLOBAL ANIMATIONS & UTILITIES
   ============================================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.animate-fade-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.animate-zoom-in {
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.animate-fade-up.is-visible,
.animate-fade-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}
.animate-zoom-in.is-visible {
    opacity: 1;
    transform: scale(1);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.35s; }
.delay-3 { transition-delay: 0.55s; }
.delay-4 { transition-delay: 0.75s; }

@keyframes slideBackground {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION 1: HERO BANNER
   ============================================================ */
.hero-banner-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-color: #00122e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
}
.hero-banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 46, 0.55);
    z-index: 2;
    pointer-events: none;
}
.hero-sketch-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    opacity: 0.35;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.hero-banner-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    margin: 0 auto;
}
.hero-banner-content h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-brand-highlight {
    background: linear-gradient(135deg, #00e5ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-banner-content p {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 35px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
.hero-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.hero-banner-actions .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00E5FF;
}
.btn-hero-outline:hover {
    background: #00E5FF;
    color: #00122e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,229,255,0.35);
}
.btn-hero-solid {
    background: #00E5FF;
    color: #00122e;
    border: 2px solid #00E5FF;
}
.btn-hero-solid:hover {
    background: transparent;
    color: #00E5FF;
    border-color: #00E5FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,229,255,0.35);
}
/* ============================================================
   TRUSTED CLIENTS SECTION (Pure CSS Infinite Loop)
   ============================================================ */
.trusted-clients-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #0f2240 0%, #070d1b 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.trusted-clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.2;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}

.trusted-clients-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.trusted-clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.trusted-clients-header .section-subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.trusted-clients-header .section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* ===== Carousel – Pure CSS Infinite Loop ===== */
.clients-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient masks on edges */
.clients-track-wrapper::before,
.clients-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.clients-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #070d1b 0%, transparent 100%);
}

.clients-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #070d1b 0%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollClients 25s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    padding: 30px 40px;
    min-width: 250px;
    min-height: 130px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.client-slide:hover {
    border-color: #00e5ff;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
}

.client-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.client-slide img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-slide:hover img {
    filter: brightness(1);
}

/* ===== Keyframes: Left to Right Infinite Scroll ===== */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .client-slide {
        min-width: 220px;
        min-height: 110px;
        padding: 25px 30px;
    }
    .client-slide img {
        max-width: 160px;
        max-height: 65px;
    }
}

@media (max-width: 992px) {
    .client-slide {
        min-width: 280px;
        min-height: 120px;
        padding: 25px 35px;
    }
    .client-slide img {
        max-width: 180px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .trusted-clients-section {
        padding: 60px 20px;
    }
    .trusted-clients-header .section-title {
        font-size: 28px;
    }
    .client-slide {
        min-width: 280px;
        min-height: 120px;
        padding: 25px 30px;
    }
    .client-slide img {
        max-width: 180px;
        max-height: 70px;
    }
    .clients-track {
        gap: 20px;
        animation: scrollClients 30s linear infinite;
    }
    .clients-track-wrapper::before,
    .clients-track-wrapper::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .client-slide {
        min-width: 240px;
        min-height: 100px;
        padding: 20px 25px;
    }
    .client-slide img {
        max-width: 150px;
        max-height: 60px;
    }
    .clients-track {
        gap: 15px;
        animation: scrollClients 35s linear infinite;
    }
}
/* ============================================================
   SECTION 1B: WHO WE ARE
   ============================================================ */
.who-we-are-section {
    background: radial-gradient(circle at center, #003366 0%, #001f3f 50%, #00122e 100%);
    position: relative;
    color: #ffffff;
    padding: 100px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.25;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.who-we-are-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.who-we-are-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.who-we-are-subtitle {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}
.who-we-are-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.who-we-are-desc {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 35px;
}
.who-we-are-desc strong {
    color: #00E5FF;
    font-weight: 700;
}
.btn-read-more {
    background: #00E5FF;
    color: #00122e;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    border: 2px solid #00E5FF;
}
.btn-read-more:hover {
    background: transparent;
    color: #00E5FF;
    border-color: #00E5FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,229,255,0.35);
}
.who-we-are-right {
    position: relative;
}
.who-we-are-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 34, 80, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.who-we-are-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 34, 80, 0.65);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}
.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
}
.card-overlay-content {
    position: relative;
    z-index: 2;
}
.card-overlay-content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}
.card-overlay-content p {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
}
.card-overlay-content p strong {
    color: #00E5FF;
}
.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #002250;
    border: 4px solid #00E5FF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,34,80,0.4);
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.experience-badge:hover {
    transform: scale(1.05);
}
.experience-badge h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: #00E5FF;
}
.experience-badge p {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2px;
    color: #e2e8f0;
    max-width: 90px;
}

/* ============================================================
   SECTION 1C: OUR APPROACH (NEW)
   ============================================================ */
.section-approach {
    padding: 90px 20px;
    background: #0c1427;
    color: #ffffff;
}
.section-approach .container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-approach .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-approach .approach-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: block;
}
.section-approach .approach-content .section-subtitle {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.section-approach .approach-content .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-approach .approach-content p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.approach-features {
    list-style: none;
    padding: 0;
}
.approach-features li {
    color: #cbd5e1;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.approach-features li:last-child {
    border-bottom: none;
}
.approach-features li strong {
    color: #ffffff;
}

/* ============================================================
   SECTION 2: FEATURED SERVICES
   ============================================================ */
.featured-services-section {
    background: radial-gradient(circle at center, #003366 0%, #001f3f 50%, #00122e 100%);
    position: relative;
    color: #ffffff;
    padding: 110px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.featured-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.25;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 65px;
}
.section-subtitle {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.section-divider {
    height: 3px;
    width: 90px;
    background: linear-gradient(90deg, #00E5FF, #B7EA31);
    margin: 0 auto;
    border-radius: 2px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.service-card {
    background: rgba(0, 34, 80, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 45px 45px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 229, 255, 0.15);
}
.service-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 34, 80, 0.7);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}
.icon-badge {
    position: absolute;
    top: -32px;
    left: 45px;
    width: 74px;
    height: 74px;
    background: #002250;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E5FF;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(0,34,80,0.4);
    border: 4px solid #00E5FF;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .icon-badge {
    transform: scale(1.08) rotate(5deg);
    background: #00E5FF;
    color: #00122e;
}
.card-content {
    margin-top: 15px;
}
.card-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.3;
}
.card-desc {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}
.service-card-btn {
    background: #00E5FF;
    color: #00122e;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #00E5FF;
    width: max-content;
}
.service-card-btn:hover {
    background: transparent;
    color: #00E5FF;
    border-color: #00E5FF;
    box-shadow: 0 5px 20px rgba(0,229,255,0.3);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION 2B: DEVELOPMENT PROCESS
   ============================================================ */
.dev-process-wrapper {
    margin-top: 130px;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    padding-top: 110px;
}
.dev-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 50px;
    gap: 15px;
}
.dev-process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00E5FF, #38bdf8, #10b981, #B7EA31, #f59e0b, #ef4444, #a855f7);
    z-index: 1;
}
.dev-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}
.dev-step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00122e;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    border: 4px solid #001f3f;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dev-process-step:hover .dev-step-icon {
    transform: translateY(-8px) scale(1.08);
}
.step-req .dev-step-icon { background: #00E5FF; color: #00122e; }
.step-plan .dev-step-icon { background: #38bdf8; color: #00122e; }
.step-design .dev-step-icon { background: #10b981; color: #00122e; }
.step-coding .dev-step-icon { background: #B7EA31; color: #00122e; }
.step-testing .dev-step-icon { background: #f59e0b; color: #00122e; }
.step-deploy .dev-step-icon { background: #ef4444; color: #ffffff; }
.step-maint .dev-step-icon { background: #a855f7; color: #ffffff; }
.dev-step-title {
    color: #f8fafc;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    padding: 0 5px;
}

/* ============================================================
   SECTION 2C: WHY DIGITAL MARKETING MATTERS (NEW)
   ============================================================ */
.section-digital-marketing {
    padding: 90px 20px;
    background: radial-gradient(circle at center, #003366 0%, #001f3f 50%, #00122e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.section-digital-marketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.25;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.section-digital-marketing .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.section-digital-marketing .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-digital-marketing .digital-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: block;
}
.section-digital-marketing .digital-content .section-subtitle {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.section-digital-marketing .digital-content .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-digital-marketing .digital-content p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.section-digital-marketing .digital-content .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: transparent;
    color: #00e5ff;
    border: 2px solid #00e5ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.section-digital-marketing .digital-content .btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

/* ============================================================
   SECTION 3: WHY CHOOSE US
   ============================================================ */
.why-choose-section {
    background: radial-gradient(circle at center, #003366 0%, #001f3f 50%, #00122e 100%);
    position: relative;
    color: #ffffff;
    padding: 110px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.25;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.why-choose-card {
    background: rgba(0, 34, 80, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 45px 45px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 229, 255, 0.15);
}
.why-choose-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 34, 80, 0.7);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}
.why-choose-card:hover .icon-badge {
    transform: scale(1.08) rotate(5deg);
    background: #00E5FF;
    color: #00122e;
}

/* ============================================================
   SECTION 3B: WHAT MAKES US UNIQUE
   ============================================================ */
.unique-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 100px;
}
.unique-column-left,
.unique-column-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.unique-column-left .unique-feature-item {
    align-items: flex-end;
    text-align: right;
}
.unique-column-right .unique-feature-item {
    align-items: flex-start;
    text-align: left;
}
.unique-step-number {
    font-size: 44px;
    font-weight: 900;
    color: #00E5FF;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.unique-feature-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}
.unique-feature-item p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}
.unique-center-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup-frame {
    width: 100%;
    max-width: 320px;
    background: rgba(0, 34, 80, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 6px solid #00E5FF;
    border-radius: 36px;
    padding: 20px 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    box-sizing: border-box;
}
.phone-screen-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.phone-header-bar {
    height: 10px;
    width: 80px;
    background: rgba(0, 229, 255, 0.3);
    border-radius: 5px;
    margin: 0 auto 5px;
}
.phone-card-mock {
    background: rgba(0, 34, 80, 0.7);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.phone-img-placeholder {
    width: 100%;
    height: 100px;
    background: #002250;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E5FF;
    font-weight: 700;
    font-size: 13px;
}
.phone-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.phone-line {
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}
.phone-line.short { width: 60%; }
.phone-line.medium { width: 80%; }
.phone-line.long { width: 100%; }

/* ============================================================
   SECTION 3C: OUR GLOBAL REACH (NEW)
   ============================================================ */
.section-global-reach {
    padding: 90px 20px;
    position: relative;
    color: #ffffff;
    background: radial-gradient(circle at center, #003366 0%, #001f3f 50%, #00122e 100%);
    overflow: hidden;
    text-align: center;
}
.section-global-reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}
.section-global-reach .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}
.section-global-reach .section-subtitle {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.section-global-reach .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-global-reach p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}
.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.global-stats .stat-item {
    background: rgba(0, 34, 80, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    transition: all 0.3s ease;
}
.global-stats .stat-item:hover {
    background: rgba(0, 34, 80, 0.7);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-4px);
}
.global-stats .stat-item .number {
    font-size: 38px;
    font-weight: 900;
    color: #00E5FF;
    display: block;
}
.global-stats .stat-item .label {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 6px;
    display: block;
}

/* ============================================================
   SECTION 4: TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: radial-gradient(circle at center, #003366 0%, #001f3f 50%, #00122e 100%);
    position: relative;
    color: #ffffff;
    padding: 110px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.25;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.testimonials-header-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials-subtitle {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.testimonials-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.testimonial-controls {
    display: flex;
    gap: 15px;
}
.testimonial-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #002250;
    border: 2px solid rgba(0, 229, 255, 0.3);
    color: #00E5FF;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-control-btn:hover {
    background: #00E5FF;
    color: #00122e;
    border-color: #00E5FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,229,255,0.35);
}
.testimonials-slider-col {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    will-change: transform;
}
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.testimonial-bubble {
    background: #001f3f;
    border-radius: 20px;
    padding: 45px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 60px;
    border-width: 20px 20px 0 0;
    border-style: solid;
    border-color: #001f3f transparent;
    display: block;
    width: 0;
}
.testimonial-stars {
    color: #B7EA31;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.testimonial-text {
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}
.quote-icon-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 100%;
    background: #002250;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E5FF;
    font-size: 32px;
    border-left: 1px solid rgba(0, 229, 255, 0.2);
}
.testimonial-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding-left: 20px;
}
.client-avatar-circle {
    width: 60px;
    height: 60px;
    background: #002250;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E5FF;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid #00E5FF;
}
.client-details h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 3px 0;
}
.client-details span {
    color: #e2e8f0;
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.85;
}

/* ============================================================
   SECTION 4B: FAQ
   ============================================================ */
.faq-section {
    background: radial-gradient(circle at center, #002250 0%, #00122e 50%, #000a18 100%);
    position: relative;
    color: #ffffff;
    padding: 120px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.2;
    animation: slideBackground 25s linear infinite;
    pointer-events: none;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(0, 26, 61, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 28px;
    padding: 65px 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}
.faq-section-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0,229,255,0.3);
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: rgba(0, 34, 80, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active {
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.4);
}
.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: color 0.3s ease;
}
.faq-question-btn:hover {
    color: #00E5FF;
}
.faq-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(0, 229, 255, 0.15);
    color: #00E5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-icon-box {
    transform: rotate(45deg);
    background: #00E5FF;
    color: #00122e;
}
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 25px;
    box-sizing: border-box;
}
.faq-item.active .faq-answer-panel {
    padding: 0 25px 22px 25px;
}
.faq-answer-panel p {
    color: #cbd5e1;
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 1024px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-header-col {
        text-align: center;
        align-items: center;
    }
    .testimonial-controls {
        justify-content: center;
    }
    .unique-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .unique-column-left,
    .unique-column-right {
        align-items: center !important;
        text-align: center !important;
    }
    .unique-feature-item p {
        max-width: 100%;
    }
    .dev-process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .dev-process-timeline::before {
        display: none;
    }
    .dev-process-step {
        width: 100%;
        max-width: 320px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        background: rgba(0, 34, 80, 0.4);
        padding: 18px 22px;
        border-radius: 16px;
        border: 1px solid rgba(0, 229, 255, 0.15);
    }
    .dev-step-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .section-approach .row,
    .section-digital-marketing .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .services-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .who-we-are-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .who-we-are-title,
    .section-title,
    .testimonials-title,
    .faq-section-title {
        font-size: 32px;
    }
    .hero-banner-content h1 {
        font-size: 40px;
    }
    .experience-badge {
        top: -15px;
        right: 15px;
        width: 120px;
        height: 120px;
    }
    .experience-badge h2 {
        font-size: 32px;
    }
    .experience-badge p {
        font-size: 10px;
    }
}
@media (max-width: 576px) {
    .hero-banner-content h1 {
        font-size: 30px;
    }
    .hero-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-banner-actions .btn {
        width: 100%;
    }
    .who-we-are-card {
        padding: 25px;
        min-height: 380px;
    }
    .card-overlay-content h3 {
        font-size: 22px;
    }
    .testimonial-bubble {
        padding: 30px 20px;
    }
    .quote-icon-box {
        width: 55px;
        font-size: 24px;
    }
    .faq-container {
        padding: 35px 20px;
    }
    .global-stats {
        grid-template-columns: 1fr;
    }
}