<style>
        /* Hide scrollbar completely and prevent horizontal overflow */
        html, body { scrollbar-width: none; -ms-overflow-style: none; overflow-x: hidden; }
        html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
/* Theme Updated: 2026-06-25 09:32:23 */
        /* Loading spinner for better UX */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }
        
        .page-loader.loaded {
            opacity: 0;
            pointer-events: none;
        }
        
        .loader-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #123C69;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
    --primary-red: #123C69;
    --premium-gold: #D4AF37;
    --light-blue: #4B6CB7;       /* Premium Red */
    --bg-main: #F8FAFC;
    --bg-section: #F8F9FA;
    --text-main: #1E293B;
    --text-muted: #555555;
    --card-bg: #FFFFFF;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --glass-border: rgba(0, 0, 0, 0.08);
    --white: #FFFFFF;
    --primary-black: #111111; /* Kept for footer */
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-muted);
    overflow-x: hidden;
    line-height: 1.6;
    
}

p {
    font-size: 15px;
    line-height: 1.7;
}

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
        }

        button {
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
       
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 99999;
            padding: 0 5%;
            height: 76px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            transition: box-shadow 0.3s ease, padding 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 16px rgba(0,0,0,0.08);
        }

        /* Logo */
        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .logo img {
            height: 45px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        /* Nav links */
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            color: #1C1C1E;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.2px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-links a:hover {
            color: var(--primary-red);
            background: rgba(18, 60, 105, 0.1);
            border-radius: 4px;
        }
        .nav-links a.active {
            color: #fff !important;
            background: #123C69 !important;
            border-radius: 4px;
        }

        /* Apply Now button */
        .nav-btn { background: var(--premium-gold);
            color: #fff;
            padding: 11px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.2px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-btn:hover { background: #b08d29;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(212, 175, 55,0.35);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #123C69 !important;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            overflow-y: auto;
            background: #fff;
            border-left: 1px solid rgba(0,0,0,0.08);
            z-index: 100001;
            padding: 90px 30px 120px;
            transition: right 0.35s cubic-bezier(.4,0,.2,1);
            box-shadow: -8px 0 30px rgba(0,0,0,0.08);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .mobile-menu a {
            color: #1C1C1E;
            text-decoration: none;
            font-size: 21px;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        .mobile-menu a:hover { color: var(--primary-red); }
        .close-menu {
            position: absolute;
            top: 28px;
            right: 28px;
            font-size: 26px;
            color: #1C1C1E;
            cursor: pointer;
            line-height: 1;
        }

        /* Navbar entrance animation */
        @keyframes navSlideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to   { transform: translateY(0);    opacity: 1; }
        }
        .navbar { animation: navSlideDown 0.6s cubic-bezier(.4,0,.2,1) both; }

        /* ============================================
           HERO SECTION ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Exact Reference Layout
           ============================================ */

        /* Keyframes */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeRight {
            from { opacity: 0; transform: translateX(-24px); }
            to   { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to   { opacity: 1; transform: translateX(0); }
        }
        @keyframes badgePop {
            0%   { opacity: 0; transform: scale(0.7); }
            70%  { transform: scale(1.07); }
            100% { opacity: 1; transform: scale(1); }
        }
        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(-8px); }
        }
        @keyframes statCountUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero {
            position: relative;
            background: #111;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        /* Main Layout */
        .hero-inner {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
            padding: 100px 5% 40px;
            box-sizing: border-box;
        }

        /* ---- CONTENT CONTAINER ---- */
        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero-pre-title {
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fff;
            margin-bottom: 22px;
            display: block;
            animation: fadeRight 0.65s ease both;
            animation-delay: 0.2s;
            text-shadow: 0 2px 5px rgba(0,0,0,0.4);
        }

        .hero-title {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(32px, 4.5vw, 64px);
            font-weight: 800;
            line-height: 1.18;
            margin-bottom: 22px;
            color: #fff;
            letter-spacing: -0.5px;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.35s;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero-title .accent-word {
            color: var(--primary-red);
        }

        .hero-desc {
            font-size: 19px;
            line-height: 1.75;
            color: rgba(255,255,255,0.95);
            margin-bottom: 36px;
            max-width: 600px;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.5s;
            text-shadow: 0 2px 5px rgba(0,0,0,0.4);
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.65s;
        }

        .btn-primary { background: var(--premium-gold);
            color: #fff;
            padding: 13px 28px;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .3s ease;
            box-shadow: 0 6px 20px rgba(212, 175, 55,0.35);
        }
        .btn-primary:hover { background: #b08d29;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(212, 175, 55,0.45);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.1);
            color: #fff;
            padding: 12px 26px;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 6px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .3s ease;
            backdrop-filter: blur(4px);
        }
        .btn-secondary:hover {
            border-color: #fff;
            background: #fff;
            color: #1C1C1E;
            transform: translateY(-2px);
        }

        /* ---- FULL WIDTH SLIDER ---- */
        .mySwiper {
            width: 100%;
            height: 100vh;
            overflow-y: auto;
            position: relative;
            flex-grow: 1;
            z-index: 1;
            margin: 0;
            padding: 0;
        }

        .swiper-slide {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow-y: auto;
            overflow: hidden;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Subtle gradient overlay */
        .swiper-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.55);
            pointer-events: none;
        }
        
        .swiper-pagination-bullet {
            background: var(--white);
            opacity: 0.7;
        }
        .swiper-pagination-bullet-active {
            background: var(--primary-red);
            opacity: 1;
        }

        /* Floating years-of-excellence badge */
        .hero-years-badge {
            position: absolute;
            top: 50%;
            margin-top: -40px;
            left: -40px;
            z-index: 10;
            background: #fff;
            border-radius: 16px;
            padding: 18px 26px;
            box-shadow: 0 12px 36px rgba(0,0,0,0.13);
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 185px;
            animation: badgePop 0.7s cubic-bezier(.4,0,.2,1) 1s both,
                       badgeFloat 3.5s ease-in-out 1.8s infinite;
        }
        .hero-years-badge .badge-icon {
            width: 46px;
            height: 46px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .hero-years-badge .badge-num {
            font-family: 'Manrope', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: #1C1C1E;
            line-height: 1;
            display: block;
        }
        .hero-years-badge .badge-label {
            font-size: 15px;
            color: #555;
            font-weight: 500;
            display: block;
            margin-top: 3px;
        }

        /* ---- STATS BAR (below hero) ---- */
        .hero-stats-bar {
            background: transparent;
            border-top: none;
            border-bottom: none;
            padding: 26px 3%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            width: 100%;
            box-sizing: border-box;
            z-index: 5;
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.85s;
        }
        .hero-stat-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex: 1;
            min-width: 150px;
        }
        .hero-stat-item + .hero-stat-item {
            border-left: 1px solid rgba(0,0,0,0.08);
            padding-left: 26px;
        }
        .hero-stat-icon {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            background: rgba(212, 175, 55,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            color: var(--primary-red);
            flex-shrink: 0;
        }
        .hero-stat-num {
            font-family: 'Manrope', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: #1C1C1E;
            line-height: 1;
            display: block;
        }
        .hero-stat-label {
            font-size: 15px;
            color: #555;
            display: block;
            margin-top: 3px;
            font-weight: 500;
        }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 1100px) {
            .nav-links { gap: 2px; }
            .nav-links a { font-size: 15px; padding: 6px 8px; }
        }
        @media (max-width: 900px) {
            .navbar .nav-links, .navbar .nav-btn, .navbar .nav-actions { display: none !important; }
            .hamburger { display: flex; }
        }
        @media (max-width: 1024px) {
            .hero-inner { flex-direction: column; min-height: auto; margin-top: 76px; }
            .hero-left  { flex: none; padding: 60px 6% 40px; }
            .hero-right { height: 420px; flex: none; }
            .hero-red-stripe { left: 0; width: auto; }
            .hero-white-gap  { left: 30px; width: auto; }
            .hero-img-main   { left: 45px; }
        }
        @media (max-width: 768px) {
            .hero-left  { padding: 50px 5% 30px; }
            .hero-right { height: 320px; }
            .hero-stat-item + .hero-stat-item { border-left: none; padding-left: 0; }
            .hero-stats-bar { justify-content: center; gap: 20px; }
            .hero-stat-item { min-width: 130px; flex: 0 0 42%; }
        }
        @media (max-width: 480px) {
            .hero-right  { height: 260px; }
            .hero-title  { font-size: 30px; }
            .hero-stat-item { flex: 0 0 100%; border-left: none !important; padding-left: 0 !important; }
        }




        /* ---- PARTNERS TICKER ---- */
        .partners-ticker {
            background: #fff;
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 0;
            overflow: hidden;
            position: relative;
            z-index: 10;
        }
        .partners-ticker::before,
        .partners-ticker::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }
        .partners-ticker::before {
            left: 0;
            background: linear-gradient(90deg, #fff 0%, transparent 100%);
        }
        .partners-ticker::after {
            right: 0;
            background: linear-gradient(270deg, #fff 0%, transparent 100%);
        }
        .partners-ticker-label {
            position: absolute;
            left: 0; top: 0; bottom: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            padding: 0 30px;
            background: linear-gradient(90deg, #fff 70%, transparent 100%);
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-muted);
            white-space: nowrap;
        }
        .partners-track {
            display: flex;
            align-items: center;
            gap: 0;
            animation: partnerScroll 30s linear infinite;
            width: max-content;
        }
        .partners-ticker:hover .partners-track {
            animation-play-state: paused;
        }
        @keyframes partnerScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .partner-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 22px 48px;
            white-space: nowrap;
            border-right: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            cursor: default;
        }
        .partner-item img {
            mix-blend-mode: multiply;
            filter: brightness(1.1) contrast(1.2);
        }
        .partner-item:hover {
            background: rgba(211,47,47,0.03);
        }
        .partner-item:hover .partner-name {
            color: var(--primary-red);
        }
        .partner-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            flex-shrink: 0;
        }
        .partner-icon.ri  { background: rgba(211,47,47,0.15); color: #E57373; }
        .partner-icon.gb  { background: rgba(66,133,244,0.15); color: #82b1ff; }
        .partner-icon.ug  { background: rgba(255,193,7,0.12);  color: #FFD54F; }
        .partner-icon.gr  { background: rgba(76,175,80,0.12);  color: #81C784; }
        .partner-icon.pu  { background: rgba(156,39,176,0.15); color: #CE93D8; }
        .partner-icon.cy  { background: rgba(0,188,212,0.12);  color: #80DEEA; }
        .partner-icon.or  { background: rgba(255,152,0,0.12);  color: #FFCC80; }
        .partner-icon.pi  { background: rgba(233,30,99,0.12);  color: #F48FB1; }
        .partner-name {
            font-family: 'Manrope', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            letter-spacing: 0.3px;
            transition: color 0.3s;
        }
        .partner-sub {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            display: block;
            letter-spacing: 0.5px;
            margin-top: 1px;
        }

        /* ---- FEATURED PROGRAMS STRIP ---- */
        .programs-strip {
            background: var(--bg-section);
            padding: 60px 5%;
            position: relative;
            overflow: hidden;
        }
        .programs-strip::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(211,47,47,0.2), transparent);
        }
        .programs-strip-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 16px;
        }
        .programs-strip-header h2 {
            font-family: 'Manrope', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--text-main);
        }
        .programs-strip-header h2 span { color: var(--primary-red); }
        .programs-strip-header a {
            color: var(--primary-red);
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(211,47,47,0.4);
            padding: 10px 24px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .programs-strip-header a:hover { background: rgba(211,47,47,0.1); }
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 18px;
        }
        .program-card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 18px;
            padding: 24px 22px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all 0.3s ease;
            cursor: default;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }
        .program-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.3s;
            background: linear-gradient(135deg, rgba(211,47,47,0.03), transparent);
        }
        .program-card:hover { border-color: rgba(211,47,47,0.35); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
        .program-card:hover::before { opacity: 1; }
        .program-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .program-icon.red  { background: rgba(211,47,47,0.15); color: #E57373; }
        .program-icon.blue { background: rgba(66,133,244,0.15); color: #82b1ff; }
        .program-icon.gold { background: rgba(255,193,7,0.12);  color: #FFD54F; }
        .program-icon.green{ background: rgba(76,175,80,0.12);  color: #81C784; }
        .program-icon.pur  { background: rgba(156,39,176,0.15); color: #CE93D8; }
        .program-icon.cyan { background: rgba(0,188,212,0.12);  color: #80DEEA; }
        .program-info h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .program-info p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.4;
        }
        .program-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(211,47,47,0.15);
            color: #E57373;
            font-size: 15px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            border: 1px solid rgba(211,47,47,0.25);
        }

        /* ---- RECRUITERS ---- */
        .recruiters-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            margin-top: 40px;
        }
        .recruiter-chip {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }
        .recruiter-chip:hover {
            border-color: rgba(211,47,47,0.3);
            color: var(--text-main);
            background: rgba(211,47,47,0.03);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        }
        .recruiter-chip i { font-size: 15px; color: var(--primary-red); }
        .placement-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 50px;
            padding: 30px 36px;
            background: #fff;
            border: 1px solid rgba(211,47,47,0.15);
            border-radius: 20px;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(211,47,47,0.05);
        }
        .placement-cta-text h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .placement-cta-text p {
            font-size: 18px;
            color: var(--text-muted);
        }

        /* Section Styles */
        section {
            padding: 65px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 48px;
            margin-bottom: 15px;
            color: var(--text-main);
        }

        .section-header p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .section-header h2 span {
            color: var(--primary-red);
        }

        /* Trust Section */
        .trust-section {
            padding: 160px 5% 100px 5%;
            background: #fff;
        }

        .trust-inner {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-left {
            flex: 1.1;
        }

        .trust-pre-title {
            color: var(--primary-red);
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            display: block;
        }

        .trust-title {
            font-family: 'Manrope', serif; /* Or you can add playfair for serif */
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 800;
            color: #000;
            line-height: 1.3;
            margin-bottom: 24px;
        }

        .trust-desc {
            font-size: 17px;
            color: #444;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .trust-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .trust-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 18px;
            font-size: 16px;
            font-weight: 600;
            color: #111;
        }

        .trust-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 16px;
            height: 16px;
            background: var(--primary-red); /* Solid red dot */
            border-radius: 50%;
        }

        .trust-right {
            flex: 1;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .trust-card {
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
        }

        .card-red { background: #123C69; color: #fff; border: 1px solid rgba(229, 57, 53, 0.2); }
        .card-white { background: #fff; border: 1px solid rgba(0,0,0,0.06); }
        
        .card-red .trust-stat { color: #fff; }
        .card-red .trust-label { color: rgba(255,255,255,0.9); }

        /* The staggered layout effect */
        .card-top { transform: translateY(-30px); }
        .card-bottom { transform: translateY(30px); }

        .trust-stat {
            font-size: clamp(36px, 4vw, 48px);
            font-weight: 800;
            color: #000;
            margin-bottom: 8px;
            line-height: 1;
            font-family: 'Manrope', sans-serif;
        }

        .trust-stat sup {
            font-size: 24px;
            vertical-align: super;
        }

        .trust-label {
            font-size: 15px;
            font-weight: 500;
            color: #111;
        }

        @media (max-width: 900px) {
            .trust-inner {
                flex-direction: column;
                gap: 40px;
            }
            .card-top, .card-bottom {
                transform: none; /* disable stagger on mobile */
            }
            .trust-card {
                height: 180px;
            }
        }

        

        /* Why Choose Us Section */
        .why-choose {
            background-image: url('https://images.unsplash.com/photo-1513258496099-481620d4ce87?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            padding: 80px 5%;
            z-index: 1;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(248, 249, 250, 0.85);
            backdrop-filter: blur(10px);
            z-index: -1;
        }

        .why-choose-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            flex: 0 0 calc(33.333% - 17px);
            background: rgba(255, 255, 255, 0.95);
            padding: 30px 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (max-width: 900px) {
            .feature-item { flex: 0 0 calc(50% - 12.5px); }
        }
        
        @media (max-width: 600px) {
            .feature-item { flex: 0 0 100%; }
        }

        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .feature-item i {
            font-size: 32px;
            color: var(--primary-red);
            background: rgba(211, 47, 47, 0.08);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 5px;
        }

        .feature-item h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .feature-item p {
            color: var(--text-muted);
            font-size: 19px;
        }

        /* Animated Testimonials Section */
        .animated-testimonials {
            background: var(--bg-section);
            overflow: hidden;
            padding: 80px 0;
            position: relative;
        }

        .animated-testimonials .section-header {
            margin-bottom: 50px;
            padding: 0 5%;
        }

        .marquee-container {
            display: flex;
            overflow: hidden;
            user-select: none;
            gap: 30px;
        }

        .marquee-track {
            display: flex;
            gap: 30px;
            animation: scroll-left 40s linear infinite;
            /* To make infinite scroll seamless, we duplicate the content in HTML */
        }



        .testimonial-box {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            width: 320px; /* Reduced width to force text to wrap perfectly into multiple lines */
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-shrink: 0;
        }

        .testimonial-box p {
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author i {
            font-size: 3rem;
            color: var(--primary-red);
        }

        .author-info h4 {
            font-size: 18px;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .author-info span {
            font-size: 14px;
            color: var(--text-muted);
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 15px)); }
        }

        @media (max-width: 768px) {
            .testimonial-box {
                min-width: 320px;
                padding: 30px;
            }
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-main);
            padding: 80px 5%;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            overflow: hidden;
        }

        .faq-item details {
            width: 100%;
        }

        .faq-item summary {
            padding: 24px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-main);
            transition: background 0.3s ease;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 24px;
            color: var(--primary-red);
            font-weight: 400;
            transition: transform 0.3s ease;
        }

        .faq-item details[open] summary {
            background: #fdfdfd;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .faq-item details[open] summary::after {
            content: '-';
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 24px;
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Blog Section */
        .blog-section {
            background: var(--bg-section);
            padding: 80px 5%;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .blog-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .blog-content {
            padding: 25px 20px;
        }

        .blog-date {
            font-size: 14px;
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .blog-content h3 {
            font-size: 20px;
            color: var(--text-main);
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-content p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-link {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary-red);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* News Section */
        .news {
            background: var(--bg-main);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
        }

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover img {
            transform: scale(1.1);
        }

        .news-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 18px;
            color: var(--primary-red);
        }

        .news-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--text-main);
        }

        .news-content p {
            color: var(--text-muted);
            margin-bottom: 25px;
            font-size: 19px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .news-content a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .news-content a:hover {
            color: #FF5252;
        }

        /* CTA Section */
        .cta {
            background: #123C69;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta .btn-primary {
            background: var(--white);
            color: var(--primary-red);
        }

        .cta .btn-primary:hover {
            background: #f0f0f0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .cta .btn-secondary {
            border: 1px solid #fff;
            color: #fff;
            background: transparent;
        }

        .cta .btn-secondary:hover {
            background: #fff;
            color: var(--primary-red);
        }

        /* Footer */
        .footer {
            background: var(--primary-black);
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #fff;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        .footer-section ul a:hover {
            color: var(--primary-red);
        }

        .footer-section .social-links {
            display: flex;
            gap: 15px;
        }

        .footer-section .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s ease;
        }

        .footer-section .social-links a:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 30px;
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 19px;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form button {
            background: var(--primary-red);
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #FF5252;
        }

        .footer-bottom {
            border-top: 1px solid var(--glass-border);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--primary-red);
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 48px;
            }

            .hero-stats {
                gap: 40px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }

            .why-choose-content {
                grid-template-columns: 1fr;
            }

            .placement-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 36px;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 200px);
            }

            .gallery-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .testimonial-card {
                min-width: 300px;
            }

            .cta h2 {
                font-size: 36px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 18px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 30px;
                font-size: 20px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                min-width: 280px;
            }
        }
    

                                /* HUBIX DIVISIONS SECTION */
        .hubix-sec {
            padding: 80px 0;
            background: #ffffff;
            font-family: 'Manrope', sans-serif;
        }
        
        .hubix-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        .hubix-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .hubix-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
        }
        
        .hubix-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .hubix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .hubix-card-v2 {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
        }
        
        .hubix-card-v2:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            border-color: #d0d0d0;
        }
        
        .hubix-img-wrapper {
            height: 100px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hubix-card-inner img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .hubix-card-v2 h3 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .hubix-card-v2 p {
            font-size: 14px;
            color: #555;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        .hubix-badge, .hubix-card-glow, .hubix-card-line {
            display: none;
        }

        @media (max-width: 768px) {
            .hubix-header h2 { font-size: 28px; }
            .hubix-grid { grid-template-columns: 1fr; }
        }

        .quick-facts-strip {
            background: #123C69;
            padding: 50px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .quick-facts-strip::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: skewX(-20deg);
            animation: strip-shine 4s infinite linear;
            pointer-events: none;
        }

        @keyframes strip-shine {
            0% { left: -100%; }
            50% { left: 200%; }
            100% { left: 200%; }
        }

        .qf-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .qf-card {
            flex: 1;
            min-width: 160px;
            max-width: 200px;
            text-align: center;
            position: relative;
            padding: 20px 10px;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(255,255,255, 0.05);
            border: 1px solid rgba(255,255,255, 0.1);
            transition: transform 0.3s ease;
        }

        .qf-card:hover {
            transform: translateY(-5px);
        }

        .qf-card::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            animation: line-pass 2.5s infinite linear;
        }

        @keyframes line-pass {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .qf-icon-box {
            width: 56px; height: 56px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 14px;
        }

        .qf-icon-box i { font-size: 22px; color: #fff; }
        .qf-title { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; color: #fff; display: block; }
        .qf-desc { font-size: 15px; color: rgba(255,255,255,0.9); display: block; margin-top: 4px; }
    </style>
<style>
        .gtag-sec {
            padding: 100px 0;
            background: #f8f9fa; /* Light off-white */
            position: relative;
            overflow: hidden;
            font-family: 'Manrope', sans-serif;
            color: #333;
        }
        .gtag-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .gtag-header .hubix-badge {
            background: #fdedef;
            color: #123C69;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid #f5c6cb;
        }
        .gtag-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #123C69; /* Navy Blue from flyer */
            margin-bottom: 10px;
        }
        .gtag-header h2 span {
            color: #123C69; /* Red theme */
        }
        .gtag-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        .gtag-card {
            background: #fff;
            border: 1px solid #eaedf2;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .gtag-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: #dbe4f0;
        }
        .gtag-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #123C69;
        }
        .gtag-card h3 i {
            color: #123C69;
            font-size: 22px;
        }
        .gtag-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .gtag-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 20px;
            font-size: 17px;
            color: #123C69;
            font-weight: 800;
            line-height: 1.4;
            text-transform: uppercase;
        }
        .gtag-list li::before {
            content: '*';
            font-family: 'Manrope', sans-serif;
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #123C69;
            font-size: 22px;
            line-height: 1;
        }
        .gtag-malayalam {
            background: #fff;
            border: 1px solid #eaedf2;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0 0 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            position: relative;
        }
        .gtag-malayalam::before {
            content: '';
            position: absolute;
            left: -1px;
            top: -1px;
            bottom: -1px;
            width: 8px;
            background: #123C69;
            border-radius: 12px 0 0 12px;
        }
        .gtag-malayalam h4 {
            color: #123C69;
            margin-bottom: 8px;
            font-size: 18px;
            font-weight: 700;
        }
        .gtag-malayalam p.highlight {
            color: #123C69;
            font-weight: 800;
            font-size: 20px;
            margin-bottom: 12px;
        }
        .gtag-malayalam p.details {
            color: #123C69;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
            font-weight: 600;
        }
        .gtag-dm-box {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaedf2;
            color: #333;
        }
        .gtag-dm-box h4 {
            color: #123C69;
            font-size: 26px;
            
            margin-bottom: 15px;
            font-weight: 800;
        }
        .gtag-dm-box p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
            font-weight: 500;
        }
        .gtag-dm-box .software-badges {
            display: flex;
            gap: 12px;
        }
        .gtag-dm-box .software-badges span {
            background: #123C69;
            color: #fff;
            padding: 6px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .gtag-dm-box .software-badges .ps { color: #31a8ff; border: 1px solid rgba(49, 168, 255, 0.5); }
        .gtag-dm-box .software-badges .ai { color: #ff9a00; border: 1px solid rgba(255, 154, 0, 0.5); }
        
        .gtag-100-badge {
            margin-top: 30px; 
            text-align: center; 
            padding: 30px 20px; 
            background: #fff; 
            border-radius: 20px; 
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            border: 1px solid #eaedf2;
        }
        .gtag-100-badge h3 {
            color: #123C69; 
            font-size: 60px; 
            font-weight: 900;
            justify-content: center; 
            margin-bottom: 5px;
            line-height: 1;
            letter-spacing: -2px;
        }
        .gtag-100-badge h3 span {
            font-size: 40px;
            vertical-align: top;
        }
        .gtag-100-badge p {
            color: #123C69; 
            font-weight: 800;
            font-size: 18px;
            margin: 0;
        }
        .gtag-banner {
            margin: 60px auto 0;
            max-width: 1200px;
            background: #ffcc00; /* Yellow from flyer */
            border-radius: 15px;
            padding: 25px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
        }
        .gtag-banner-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #333;
            font-weight: 800;
            font-size: 18px;
        }
        .gtag-banner-item i {
            color: #fff;
            font-size: 22px;
        }
        @media (max-width: 900px) {
            .gtag-grid { grid-template-columns: 1fr; }
            .gtag-banner { flex-direction: column; text-align: center; }
            .gtag-banner-item { justify-content: center; width: 100%; }
        }
    </style>
<style>
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 99999;
        }
        .float-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 30px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: bounce 2s infinite ease-in-out alternate;
            transition: transform 0.3s ease;
        }
        .float-icon:hover {
            transform: scale(1.1) !important;
            animation-play-state: paused;
        }
        .float-whatsapp {
            background-color: #25D366;
            animation-delay: 0s;
        }
        .float-phone {
            background-color: var(--primary-red, #123C69);
            animation-delay: 1s;
        }
        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-15px); }
        }
    </style>
<style>
/* Entry Modal CSS */
.entry-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.entry-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.entry-modal-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.4s ease;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.entry-modal-overlay.show .entry-modal-content {
    transform: translateY(0);
}

.entry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    font-weight: bold;
}

.entry-modal-close:hover {
    color: #333;
}

.entry-modal-header h2 {
    color: #123C69;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.entry-modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
}

.entry-modal-left {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Robot Animation */
.robot-animation {
    max-width: 100%;
    height: auto;
    animation: robotFloat 2s ease-in-out infinite;
}

.robot-animation:hover {
    animation: robotFloat 1s ease-in-out infinite;
}

.robot-animation.stop-animation {
    animation: none !important;
}

@keyframes robotFloat {
    0% { transform: scale(1.5) translateY(0px); }
    50% { transform: scale(1.5) translateY(-5px); }
    100% { transform: scale(1.5) translateY(0px); }
}

.entry-modal-right {
    flex: 1.1;
}

#entryForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#entryForm input, #entryForm textarea, #entryForm select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

/* Country dropdown with arrow */
.country-select-wrap {
    position: relative;
    width: 100%;
}
.country-select-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
}
.country-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    color: #666;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.country-select:focus {
    border-color: #0b4b8a;
    color: #333;
}

#entryForm input:focus, #entryForm textarea:focus, #entryForm select:focus {
    border-color: #0b4b8a;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.phone-input:focus-within {
    border-color: #0b4b8a;
}

.phone-input span {
    padding: 12px 16px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
    color: #555;
    font-size: 16px;
    white-space: nowrap;
}

.phone-input input {
    border: none !important;
    border-radius: 0 !important;
    width: 100%;
}

#entryForm .submit-btn { background: #D4AF37;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s;
}

#entryForm .submit-btn:hover { background: #b08d29;
}

@media (max-width: 768px) {
    .entry-modal-body {
        flex-direction: column;
    }
    .entry-modal-left {
        max-height: 200px;
    }
    .robot-animation {
        max-height: 150px;
        animation: robotMobileWave 1s ease-in-out infinite;
    }
}
@keyframes robotMobileWave {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1) rotate(15deg); }
    transition: transform 0.4s ease;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.entry-modal-overlay.show .entry-modal-content {
    transform: translateY(0);
}

.entry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    font-weight: bold;
}

.entry-modal-close:hover {
    color: #333;
}

.entry-modal-header h2 {
    color: #123C69;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.entry-modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
}

.entry-modal-left {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Robot Animation */
.robot-animation {
    max-width: 100%;
    height: auto;
    animation: robotFloat 2s ease-in-out infinite;
}

.robot-animation:hover {
    animation: robotFloat 1s ease-in-out infinite;
}

.robot-animation.stop-animation {
    animation: none !important;
}

@keyframes robotFloat {
    0% { transform: scale(1.5) translateY(0px); }
    50% { transform: scale(1.5) translateY(-5px); }
    100% { transform: scale(1.5) translateY(0px); }
}

.entry-modal-right {
    flex: 1.1;
}

#entryForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#entryForm input, #entryForm textarea, #entryForm select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

/* Country dropdown with arrow */
.country-select-wrap {
    position: relative;
    width: 100%;
}
.country-select-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
}
.country-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    color: #666;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.country-select:focus {
    border-color: #0b4b8a;
    color: #333;
}

#entryForm input:focus, #entryForm textarea:focus, #entryForm select:focus {
    border-color: #0b4b8a;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.phone-input:focus-within {
    border-color: #0b4b8a;
}

.phone-input span {
    padding: 12px 16px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
    color: #555;
    font-size: 16px;
    white-space: nowrap;
}

.phone-input input {
    border: none !important;
    border-radius: 0 !important;
    width: 100%;
}

#entryForm .submit-btn { background: #D4AF37;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s;
}

#entryForm .submit-btn:hover { background: #b08d29;
}

@media (max-width: 768px) {
    .entry-modal-body {
        flex-direction: column;
    }
    .entry-modal-left {
        max-height: 200px;
    }
    .robot-animation {
        max-height: 150px;
        animation: robotMobileWave 1s ease-in-out infinite;
    }
}
@keyframes robotMobileWave {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1) rotate(15deg); }
    75% { transform: scale(1) rotate(-15deg); }
    100% { transform: scale(1) rotate(0deg); }
}
</style>
            left: 0;
            width: 100%;
            z-index: 998;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }
        .marquee-content span {
            font-weight: 700;
            font-size: 14px;
            margin-right: 50px;
            letter-spacing: 0.5px;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (max-width: 768px) {
            .marquee-wrapper { top: 70px; } /* Adjust for mobile navbar if smaller */
        }
    </style>
<style>
        .courses-sec {
            padding: 100px 5%;
            background: linear-gradient(180deg, #fdfdfd 0%, #f4f6f9 100%);
            position: relative;
            overflow: hidden;
            font-family: 'Manrope', sans-serif;
        }
        .courses-sec::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55,0.03) 0%, transparent 70%);
            border-radius: 50%;
        }
        .courses-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        .courses-header .hubix-badge {
            display: inline-block;
            background: rgba(212, 175, 55,0.08);
            color: #123C69;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border: 1px solid rgba(212, 175, 55,0.15);
        }
        .courses-header h2 {
            font-size: 46px;
            font-weight: 900;
            color: #111;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .courses-header h2 span {
            color: #123C69;
        }
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .course-box {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
        }
        .course-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(212, 175, 55,0.08);
            border-color: rgba(212, 175, 55,0.2);
        }
        .course-box-img {
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
            position: relative;
        }
        .course-box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .course-box:hover .course-box-img img {
            transform: scale(1.05);
        }
        .course-box h3 {
            font-size: 24px;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
        }
        .course-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }
        .course-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #555;
            font-weight: 600;
            line-height: 1.5;
        }
        .course-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 3px;
            color: #123C69;
            font-size: 14px;
        }
        .course-btn {
            margin-top: 25px;
            display: inline-block;
            background: rgba(212, 175, 55,0.05);
            color: #123C69;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
        }
        .course-box:hover .course-btn { background: #D4AF37;
            color: #fff;
        }
        @media (max-width: 1024px) {
            .courses-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .courses-grid { grid-template-columns: 1fr; }
            .courses-header h2 { font-size: 36px; }
        }
    </style>
<style>
    .floating-btns {
        position: fixed;
        bottom: 28px;
        right: 28px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        z-index: 9999;
    }
    .float-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 18px rgba(0,0,0,0.25);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-size: 1.55rem;
        color: #fff;
    }
    .float-btn:hover {
        transform: scale(1.12) translateY(-3px);
        box-shadow: 0 8px 28px rgba(0,0,0,0.3);
        color: #fff;
    }
    .float-btn.whatsapp { background: #25D366; }
    .float-btn.phone    { background: #123C69; }

    /* pulse ring */
    .float-btn::after {
        content: '';
        position: absolute;
        width: 56px; height: 56px;
        border-radius: 50%;
        animation: pulse-ring 2.2s ease-out infinite;
        opacity: 0;
    }
    .float-btn.whatsapp::after { border: 3px solid #25D366; }
    .float-btn.phone::after    { border: 3px solid #123C69; }
    @keyframes pulse-ring {
        0%   { transform: scale(1);   opacity: 0.7; }
        100% { transform: scale(1.8); opacity: 0; }
    }
</style>
<style>
    .goog-te-banner-frame.skiptranslate, iframe.goog-te-banner-frame { display: none !important; }
    body { top: 0px !important; position: static !important; }
    #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
    .goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }
    body.translated-ltr { margin-top: 0px !important; }
    </style>
/* Added to increase logo size */
.logo img, a.logo img, .footer-logo img { transform: scale(1.3); transform-origin: left center; max-height: 80px; }

/* Force larger logo size */
.logo img, a.logo img, .footer-logo img, .header .logo img { max-height: none !important; height: 100px !important; width: auto !important; max-width: 300px !important; transform: none !important; }

/* Fix red background/button on active navbar links */
.nav-links li.active > a, .navbar .active > a, .nav-links a:active, .nav-links a:focus, .main-menu ul li.active a { color: #123C69 !important; background: transparent !important; }
.nav-links li.active > a::before, .navbar .active > a::before, .main-menu ul li.active a::before { background: #b08d29 !important; }

/* Change footer icon colors from red */
.footer .social-links a, .footer .social-links a i, .footer-section ul li i { color: #b08d29 !important; }
.footer .social-links a:hover, .footer .social-links a:hover i { color: #fff !important; }

/* Remove red button style from Insights link */
.nav-links a[href='blog.html'], .mobile-menu a[href='blog.html'] { background-color: transparent !important; color: #123C69 !important; padding: auto; border-radius: 0; box-shadow: none !important; font-weight: 500 !important; }
.nav-links a[href='blog.html']:hover, .mobile-menu a[href='blog.html']:hover { color: #b08d29 !important; background-color: transparent !important; }

/* Completely remove red button styles and golden active borders from ALL navbar links */
.navbar a, .nav-links a, .mobile-menu a, .nav-links li.active > a, .navbar .active > a { background-color: transparent !important; background: transparent !important; color: #123C69 !important; box-shadow: none !important; }
.navbar a[href='carrer.html'], .nav-links a[href='carrer.html'] { background-color: #123C69 !important; color: #fff !important; border-radius: 4px !important; padding: 10px 20px !important; }
.navbar a[href='carrer.html']:hover { background-color: #b08d29 !important; }
.nav-links li.active > a::before, .navbar .active > a::before, .main-menu ul li.active a::before { display: none !important; background: transparent !important; }
.nav-links a:hover, .mobile-menu a:hover { color: #b08d29 !important; background-color: transparent !important; }

/* Fix Career button text color visibility */
.navbar a[href=\'carrer.html\'], .nav-links a[href=\'carrer.html\'], .mobile-menu a[href=\'carrer.html\'], .nav-links li.active > a[href=\'carrer.html\'], .navbar .active > a[href=\'carrer.html\'] { background-color: #123C69 !important; color: #fff !important; border-radius: 4px !important; padding: 10px 20px !important; }
.navbar a[href=\'carrer.html\']:hover, .nav-links a[href=\'carrer.html\']:hover, .mobile-menu a[href=\'carrer.html\']:hover { background-color: #b08d29 !important; color: #fff !important; }

/* Remove any golden color from Career button */
.navbar a[href=\'carrer.html\']:hover, .nav-links a[href=\'carrer.html\']:hover, .mobile-menu a[href=\'carrer.html\']:hover { background-color: #0c2b4d !important; color: #fff !important; }
.nav-links li.active > a[href=\'carrer.html\']::before, .navbar .active > a[href=\'carrer.html\']::before { display: none !important; background: transparent !important; }

/* Remove button styling completely from all navbars, including Career */
.navbar a, .nav-links a, .mobile-menu a, .navbar a[href=\'carrer.html\'], .nav-links a[href=\'carrer.html\'], .navbar .active > a, .nav-links li.active > a { background-color: transparent !important; background: transparent !important; color: #123C69 !important; border-radius: 0 !important; padding: unset !important; box-shadow: none !important; font-weight: 500 !important; }
.navbar a:hover, .nav-links a:hover, .mobile-menu a:hover, .navbar a[href=\'carrer.html\']:hover { background-color: transparent !important; color: #b08d29 !important; }
.nav-links li.active > a::before, .navbar .active > a::before, .main-menu ul li.active a::before { display: none !important; background: transparent !important; }

/* Kill ALL blue active buttons globally */
.navbar .active, .nav-links .active, .mobile-menu .active, .navbar .active > a, .nav-links .active > a, .mobile-menu .active > a, .navbar li.active, .nav-links li.active, .mobile-menu li.active, .navbar li.active > a, .nav-links li.active > a, .mobile-menu li.active > a, .rs-header-two .rs-sticky-header.active { background-color: transparent !important; background: transparent !important; color: #123C69 !important; box-shadow: none !important; border-radius: 0 !important; }

/* FORCE ALL NAVBAR LINKS TO HAVE NO BACKGROUND */
nav a, .nav-links a, .mobile-menu a, .rs-header a, nav li, .nav-links li, .mobile-menu li, .rs-header li, nav .active, .nav-links .active, .mobile-menu .active, .rs-header .active { background-color: transparent !important; background: transparent !important; }

/* FORCE ALL CURRENT MENU ITEMS TO HAVE NO BACKGROUND */
.current-menu-item, .current-menu-item > a, .current_page_item, .current_page_item > a, .nav-item.active, .nav-item.active > a, .active-menu, .active-menu > a { background-color: transparent !important; background: transparent !important; color: #123C69 !important; }

/* Force all navbar text to stay dark blue, never golden for active items */
.navbar a, .nav-links a, .mobile-menu a, .navbar .active > a, .nav-links .active > a, .mobile-menu .active > a, .navbar li.active > a, .nav-links li.active > a, .mobile-menu li.active > a, .current-menu-item > a, .current_page_item > a, .nav-item.active > a, .navbar a:hover, .nav-links a:hover, .mobile-menu a:hover { color: #123C69 !important; }

/* Fix font weight to match original navbar links */
.navbar a, .nav-links a, .mobile-menu a { font-weight: 600 !important; }





