        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

        :root {
            --primary: #FACE0C;
            --secondary: #0d9ed9;
            --dark: #082050;
            --black: #000000;
            --white: #FFFFFF;
            --gray: #F5F7FA;
            --text: #1A1A1A;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Aptos', 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
        }
        
        /* Top bar inserted above navigation */
        .top-bar{
        background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
        color: #fff;
        height: 40px;
        display: flex;
        align-items: center;
        font-family: inherit;
        font-size: 0.95rem;
        }
        .top-bar .top-bar-container{
        max-width: 1400px;
        margin: 0 auto;
        width: 92%;
        padding: 0 1.5rem;
        display: flex;
        justify-content: flex-end; /* text on right side */
        align-items: center;
        }
        .top-bar .region-text{
        font-weight: 600;
        letter-spacing: 0.6px;
        }
        
        
        /* Basic reset for nav area */
        .main-nav { background:#fff; box-shadow:0 1px 4px rgba(0,0,0,0.06); }
        .nav-container {
          max-width:1200px;
          margin:0 auto;
          padding:12px 20px;
          display:flex;
          align-items:center;
          gap:16px;
        }
        
        /* Logo */
        .logo img { height:auto; width:155px; display:block; }
        
        /* Desktop nav links */
        .nav-links {
          list-style:none;
          display:flex;
          gap:18px;
          margin:0;
          padding:0;
          margin-left: 20%;
          align-items:center;
          flex:1;
        }
        .nav-links li a {
          text-decoration:none;
          padding:8px 6px;
          display:inline-block;
          font-weight:500;
          color:#222;
        }
        .nav-links li a:hover { opacity:0.85; }
        
        /* CTA */
        .cta-btn {
          background:#0d9ed9;
          color:#fff;
          padding:10px 16px;
          text-decoration:none;
          border-radius:6px;
          font-weight:600;
          white-space:nowrap;
        }
        
        /* Hamburger - hidden on desktop */
        .nav-toggle {
          display:none;
          background:transparent;
          border:0;
          width:44px;
          height:44px;
          align-items:center;
          justify-content:center;
          cursor:pointer;
        }
        .hamburger {
          display:block;
          width:22px;
          height:2px;
          background:#222;
          position:relative;
        }
        .hamburger::before,
        .hamburger::after{
          content:"";
          position:absolute;
          left:0;
          width:22px;
          height:2px;
          background:#222;
        }
        .hamburger::before { top:-7px; }
        .hamburger::after  { top:7px; }

        

        /* Navigation */
        nav {
            position: sticky;
            top: 0px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0rem 2rem 0rem 0rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            font-family: var(--font-heading);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            font-family: var(--font-body);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-family: var(--font-body);
        }

        .cta-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(12, 165, 222, 0.2);
        }

        /* Hero Section */
        .hero {
            /*margin-top: 80px;*/
            min-height: 90vh;
            display: flex;
            align-items: center;
            /*background: linear-gradient(135deg, #FEF7C0 0%, #FEFCD6 50%, #FEFEF1 100%);*/
            background: #f9f9f9;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            /*background: radial-gradient(circle, rgba(12, 165, 222, 0.15) 0%, transparent 0%);*/
            top: -300px;
            right: -300px;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(24, 47, 123, 0.08) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 50px) rotate(180deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #182F7B;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-content-uk h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #182F7B;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        
        
        .hero-content .highlight {
            color: #FACE0C;
        }
        
        .hero-content-uk .highlight {
            color: #FACE0C;
        }
        
        .typing-text {
            border-right: 3px solid #fff;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            min-width: 200px;
            animation: blinkCursor .7s infinite;
        }
        
        @keyframes blinkCursor {
            0% { border-color: transparent; }
            50% { border-color: #fff; }
            100% { border-color: transparent; }
        }



        .hero-content .subheading {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            font-weight: 500;
            font-family: var(--font-body);
        }

        .hero-content .quote {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text);
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            opacity: 0.9;
            font-family: var(--font-body);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn-primary {
            background: var(--primary) !important;
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            font-family: var(--font-body);
            border-color: var(--primary) !important;
        }

        .btn-primary:hover {
            background: var(--secondary) !important;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(12, 165, 222, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            padding: 1rem 2rem;
            border: 2px solid var(--secondary);
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            font-family: var(--font-body);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: white;
        }

        .hero-visual {
            position: relative;
            z-index: 1;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
           
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            background-size: 60px 60px;
            animation: slideBackground 20s linear infinite;
        }
        
        .hero-img{
            width:100%;
        }
        
        .hero-footer {
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: #fffffffa;
            padding: 20px 0;
            box-shadow: 0 -10px 30px #ffffff80;
        }
        
        /* Logo carousel */
        .logo-carousel {
          overflow: hidden;
          width: 100%;
          --gap: 32px;
          --item-height: auto; /* adjust logo height */
          padding: 12px 0;
          background: transparent;
        }
        
        .logo-carousel-track {
          display: flex;
          gap: var(--gap);
          align-items: center;
          /* we'll set animation dynamically via JS with CSS variable --scroll-duration */
          animation: scroll var(--scroll-duration, 20s) linear infinite;
          will-change: transform;
        }
        
        .logo-carousel:hover .logo-carousel-track,
        .logo-carousel:focus-within .logo-carousel-track {
          animation-play-state: paused;
        }
        
        /* Each logo box */
        .logo-item {
          flex: 0 0 auto;
          display: flex;
          align-items: center;
          justify-content: center;
          height: var(--item-height);
          padding: 8px;
          background: transparent;
          border-radius: 8px;
        }
        
        /* Image styles */
        .logo-item img {
          max-height: 100%;
          max-width: 160px; /* prevent overly wide logos */
          object-fit: contain;
          display: block;
          filter: none; /* tweak if you want grayscale: grayscale(1) */
          transition: transform .25s ease;
        }
        
        /* small scale on hover for visual feedback (still pauses due to parent hover) */
        .logo-item:hover img {
          transform: scale(1.02);
        }
        
        /* Keyframes: translate track left by 50% (we duplicate content in JS) */
        @keyframes scroll {
          from { transform: translateX(0); }
          to   { transform: translateX(-50%); } /* -50% because we duplicate content */
        }

        @keyframes slideBackground {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 60px 60px, -60px -60px; }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: floatCard 6s ease-in-out infinite;
        }

        .floating-card:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-card:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-card:nth-child(3) {
            bottom: 15%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .card-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            font-family: var(--font-heading);
        }

        .center-graphic {
            position: relative;
            z-index: 1;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            box-shadow: 0 20px 60px rgba(12, 165, 222, 0.3);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border: #FACE0C solid 2px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text);
            font-size: 0.95rem;
            font-family: var(--font-body);
            text-align: center;
        }

        /* Client Logos */
        .clients {
            padding: 4rem 2rem;
            background: white;
            text-align: center;
        }

        .clients h3 {
            font-size: 1rem;
            color: var(--text);
            opacity: 0.6;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: var(--font-heading);
        }

        .client-logos {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.5;
        }

        .client-logo {
            width: 120px;
            height: 60px;
            background: var(--gray);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text);
        }

        /* Vision/Mission */
        .vision-mission {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .vm-card {
            background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
            padding: 3rem;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .vm-card h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #FACE0C;
            text-align: center;
            font-weight: 800;
        }

        .vm-card p, .vm-card ul {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.95;
            font-family: var(--font-body);
            text-align: center;
        }

        .vm-card ul {
            list-style: none;
            padding-left: 0;
        }

        .vm-card ul li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .vm-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        /* Services */
        .services {
            /*background: var(--gray);*/
            padding: 6rem 2rem;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services h2 {
            font-size: 3rem;
            color: #182F7B;
            margin-bottom: 3rem;
            text-align: center;
        }
.services-p {
            font-size: 23px;
            color: #000;
            margin-top: 3rem;
            text-align: center;
        }
        
        .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
  justify-content: center; /* 👈 important */
  gap: 30px;
}
.bento-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-card {
  width: 300px;
  margin: 10px;
  padding: 2rem;
  border: 1px solid #FACE0C;
  border-radius: 20px;
}
        
        

        .service-card:hover {
            transform: translateY(-8px);
            border: 1px solid #FACE0C;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: #182F7B;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text);
            opacity: 0.8;
            line-height: 1.7;
            font-family: var(--font-body);
        }

        /* Process */
        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 80px;
            padding: 0 40px;
        }
        .timeline-line {
            position: absolute;
            top: 68px;
            left: 16.5%;
            right: 16.5%;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }   
        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 350px;
            height: 100%;
        }
        
        .step-label {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 8px 24px;
            border-radius: 20px;
            font-weight: 600;
            color: var(--color-text-main);
            margin-bottom: 24px;
            font-size: .9rem;
            box-shadow: 0 2px 5px #0000000d;
        }
        .step-dot {
            width: 16px;
            height: 16px;
            background-color: #e0e0e0;
            border-radius: 50%;
            border: 4px solid #fff;
            margin-bottom: 40px;
            box-shadow: 0 0 0 2px #e0e0e0;
        }
        .step-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            padding: 32px;
            text-align: left;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 220px;
            justify-content: flex-start;
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .process-step:hover .step-dot {
            background-color: #FACE0C;
            box-shadow: 0 0 0 1px #FACE0C;
        }
        
        .process-step:hover .step-card {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px #00000014;
            border-color: #FACE0C;
        }
                    
        .process {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
        }

        .process h2 {
            font-size: 3rem;
            color: #182F7B;
            margin-bottom: 1rem;
            text-align: center;
        }

        .process-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #FACE0C;
            margin-bottom: 4rem;
            font-family: var(--font-heading);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0d9ed9, var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin: 0 auto 1.5rem;
        }

        .process-step h3 {
            font-size: 1.5rem;
            color: #182F7B;
            margin-bottom: 1rem;
        }

        .process-step p {
            color: var(--text);
            opacity: 0.8;
            line-height: 1.7;
            font-family: var(--font-body);
        }

        /* Why I2I */
        .why-i2i {
            background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
            padding: 6rem 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-i2i::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(12, 165, 222, 0.2) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
        }

        .why-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .why-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .why-content .tagline {
            font-size: 1.8rem;
            color: #FACE0C;
            margin-bottom: 3rem;
            font-family: var(--font-heading);
        }

        .why-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            opacity: 0.95;
            font-family: var(--font-body);
        }
        
        /*blog */
        
        .feature-card{background:var(--card-bg); border-radius:12px; padding:1.5rem;}
        .feature-image{display:block; width:100%; height:260px; object-fit:cover; border-radius:10px}
        .feature-title{font-weight:700; font-size:1.125rem; margin-top:1rem}
        .feature-desc{color:var(--muted); margin-top:.5rem}
        
        
        /* Right column list */
        .side-card{display:flex; gap:12px; padding:12px 0; border-bottom:1px solid #eee}
        .side-card:last-child{border-bottom:0}
        .side-thumb{width:88px; height:88px; border-radius:8px; object-fit:cover;}
        .side-meta{font-size:.75rem; color:var(--muted); letter-spacing:.03em}
        .side-title{font-weight:600; margin:2px 0}
        .side-caption{color:var(--muted); font-size:.9rem}
        
        
        /* small label above cards */
        .label-small{font-size:.72rem; color:var(--muted); font-weight:600; text-transform:uppercase}
        
        
        /* HERO SUBCRIBE */
        .hero-sub{padding:20px 0 60px}
        .hero-sub h2{font-weight:600; text-align:center; margin-bottom:18px;color: #182F7B;}
        .email-wrap{max-width:760px; margin:0 auto; display:flex; align-items:center; gap:0}
        .input-card{flex:1; display:flex; background:#fff; border:1px solid #eee; border-radius:12px; box-shadow:0 1px 0 rgba(0,0,0,0.03); overflow:hidden}
        .input-card .form-control{border:0; border-right:1px solid #f0f0f0; padding:18px 20px; font-size:1rem; border-radius:0}
        .cta-hero-btn{background:#FACE0C; color:white; border-radius:10px; padding:14px 22px; border:0; font-weight:700; width: 270px}
        .cta-hero-btn:hover {background:#0d9ed9; color:white; border-radius:10px; padding:14px 22px; border:0; font-weight:700; width: 270px}
        .input-card:focus-within{box-shadow:0 4px 18px rgba(13,110,253,0.06);}
                

        /* Footer */
        footer {
            background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #FACE0C;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-family: var(--font-heading);
        }

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

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
            font-family: var(--font-body);
        }

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

        .footer-section p {
            font-family: var(--font-body);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-family: var(--font-body);
        }

        /* Page Selector */
        .page-selector {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            background: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .page-selector select {
            padding: 0.75rem 1rem;
            border: 2px solid var(--primary);
            border-radius: 8px;
            font-size: 1rem;
            color: var(--secondary);
            font-weight: 600;
            cursor: pointer;
            background: white;
            font-family: var(--font-body);
        }
        
        
        /*about page*/
        .section{
            padding: 8rem;
        }
        
        .about-hero {
            /*background-color: #1A1919;*/
            background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
            color: #fff;
            text-align: center;
            padding-top: 160px;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 32px;
            color: #FACE0C;
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
        }
        
        .about-intro {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.25rem;
            line-height: 1.6;
            opacity: .9;
        }
        
        .about-intro p {
            margin-bottom: 24px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }
        
        .section-header h2 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 16px;
            color: #182F7B;
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 1.25rem;
            color: #face0c;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        
        .team-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, .05);
            transition: transform .3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px #0000000d;
        }
        
        .member-image img {
            width: 160px;
            height: 160px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #eee;
            margin-bottom: 15px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            
        }
        
        
        .member-info {
            padding: 32px;
        }
        
        .member-info h3 {
            font-size: 1.5rem;
            color: #1A1919;
            margin-bottom: 4px;
            text-align: center;
            font-weight: 700;
        }
        
        .role {
            display: block;
            font-size: .9rem;
            color: #FACE0C;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .member-info p {
            color: #444444;
            margin-bottom: 16px;
            line-height: 1.6;
            text-align: center;
        }
        
        .member-quote {
            border-left: 3px solid #FACE0C;
            padding-left: 16px;
            font-style: italic;
            color: #000000;
            font-weight: 500;
        }
        
        .advisors-section {
            background-color: #f9f9f9;
        }
        
        .advisors-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .advisor-card {
            background: #fff;
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, .05);
            position: relative;
        }
        
        .advisory-img{
            position: absolute;
            overflow: hidden;
            left: 390px;
            top: 15px;
        }
        
        .advisory-img img {
            width: 100px;
            height: 100px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transition: 0.4s;
        }
        

        .advisory-img img:hover {
            transform: scale(1.05);
        }
        
        .advisor-card h3 {
            font-size: 1.25rem;
            color: #1a1919;
            margin-bottom: 4px;
            font-weight: 700;
        }
        
        .advisor-card .role {
            display: block;
            font-size: .9rem;
            color: #FACE0C;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 40px;
            text-align: left;
        }
        
        /*Service Page */
        
       
        
        .services-hero {
            background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
            text-align: center;
            padding-top: 160px;
            padding-bottom: 60px;
        }
        
        .services-hero h1{
            font-size: 3rem;
            margin-bottom: 32px;
            color: #FACE0C;
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
        }
        
        .services-intro{
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.25rem;
            line-height: 1.6;
            opacity: .9;
        }
        
        .services-intro p{
            margin-bottom: 24px;
            color: #fff;
        }
        
        .arrow-list {
            list-style: none;     /* remove dots */
            padding-left: 0;
            text-align: center;
        }
            
        .arrow-list li {
            position: relative;
            /*padding-left: 24px;*/
            margin-bottom: 10px;
        }
            
        .arrow-list li::before {
            content: "";        /* arrow */
            position: absolute;
            left: 0;
            top: 0;
            color: #0b66ff;
            font-weight: bold;
        }
        
        
        .bento-card {
            background: #fff;
            border-radius: 24px;
            padding: 0px;
            border: 1px solid rgba(0, 0, 0, .05);
            transition: transform .3s ease, box-shadow .3s  ease;
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 280px;
            text-align: center;
        }
        
        .flip-card {
            perspective: 1000px;
        }
        
        .flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease;
            transform-style: preserve-3d;
        }
        
        .flip-card:hover .flip-inner  {
            transform: rotateY(180deg);
        }
        
        .flip-front, .flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .flip-front {
            background: #fff;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Add different images */
        
        .flip-img{
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            overflow: hidden;
        }
        
        .flip-img::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
        }
        
        .flip-back {
            color: #000;
            transform: rotateY(180deg);
            text-align: left;
            overflow: hidden;
        }
        
        /* Contact Page */
        
        .contact-hero {
            /*background-color: #1a1919;*/
            background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
            color: #fff;
            text-align: center;
            padding-top: 160px;
            padding-bottom: 80px;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 24px;
            color: #FACE0C;
            font-weight: 700;
        }
        
        .card-content h3{
            position: relative;
            color: #fff !important;
            font-weight: 800;
        }
        
        .contact-hero p {
            font-size: 1.25rem;
            opacity: .9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            background: #fff;
            border-radius: 24px;
            padding: 64px;
            box-shadow: 0 20px 40px #0000000d;
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 32px;
            color: #1a1919;
        }
        
        .info-item {
            margin-bottom: 32px;
        }
        
        .info-item .label {
            display: block;
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #444444;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .info-item a, .info-item p {
            font-size: 1.1rem;
            color: #000000;
            font-weight: 500;
        }
        
        .contact-form {
            display: grid;
            gap: 24px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group label {
            font-weight: 600;
            font-size: .9rem;
            color: #1a1919;
        }
        
        .form-group input, .form-group textarea {
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color .2s;
        }
        
        .submit-btn {
            justify-self: start;
            margin-top: 16px;
            min-width: 160px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-image-container {
                height: 400px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content .subheading {
                font-size: 1.3rem;
            }

            .vision-mission,
            .process-steps,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .process-subtitle {
                font-size: 1.1rem;
            }

            .services h2,
            .process h2 {
                font-size: 2.5rem;
            }

            nav .nav-container {
                padding: 1rem 1.5rem;
            }

            .floating-card {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            
            .nav-container {
            padding:10px 14px;
            }
            
            /* hide CTA on mobile */
            .cta-btn { display:none; }
            
            /* show hamburger */
            .nav-toggle { display:flex; }
            
            /* nav-links become vertical and hidden by default */
            .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: none;
            z-index: 999;
            }
            
            .nav-links.open {
            display: flex;
            }
            
            .nav-links li a {
            padding:14px 18px;
            border-bottom:1px solid rgba(0,0,0,0.03);
            }
            
            /* Slight shadow for open menu */
            .nav-links.open { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
          


            .mobile-menu {
                display: block;
            }

            .hero {
                min-height: auto;
                padding: 3rem 0;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content .subheading {
                font-size: 1.1rem;
            }

            .hero-content .quote {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .hero-image-container {
                height: 300px;
            }

            .center-graphic {
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }

            .floating-card {
                padding: 0.75rem;
            }

            .card-icon {
                font-size: 1.5rem;
            }

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

            .stat-number {
                font-size: 2rem;
            }

            .client-logos {
                gap: 2rem;
            }

            .client-logo {
                width: 100px;
                height: 50px;
                font-size: 0.85rem;
            }

            .vm-card {
                padding: 2rem;
            }

            .vm-card h2 {
                font-size: 2rem;
            }

            .vm-card p, .vm-card ul {
                font-size: 1rem;
            }

            .services {
                padding: 4rem 1.5rem;
            }

            .services h2 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }

            .process {
                padding: 0 1.5rem;
                margin: 4rem auto;
            }

            .process h2 {
                font-size: 2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .process-step h3 {
                font-size: 1.3rem;
            }

            .why-i2i {
                padding: 4rem 1.5rem;
            }

            .why-content h2 {
                font-size: 2rem;
            }

            .why-content .tagline {
                font-size: 1.3rem;
            }

            .why-content p {
                font-size: 1rem;
            }
            
            .process-timeline {
                flex-direction: column;
                gap: 48px;
                padding: 0px;
            }
            
            .timeline-line {
                display: none;
            }
            .process-step {
                max-width: 100%;
                flex-direction: row;
                align-items: flex-start;
                gap: 24px;
            }
            .step-label {
                display: none;
            }
            .step-dot {
                margin-top: 24px;
            }
            
            
            

            footer {
                padding: 3rem 1.5rem 2rem;
            }

            .footer-content {
                gap: 2rem;
            }

            .page-selector {
                bottom: 1rem;
                right: 1rem;
                padding: 0.75rem;
            }

            .page-selector select {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }

            /* About page responsive */
            #about h1 {
                font-size: 2.5rem !important;
                padding: 0 1rem;
            }

            #about p {
                font-size: 1.1rem !important;
                padding: 0 1rem;
            }

            /* Services page responsive */
            #services h1 {
                font-size: 2.5rem !important;
            }

            #services > div {
                padding: 2rem 1rem !important;
            }

            /* UK page responsive */
            #uk section:first-of-type > div {
                grid-template-columns: 1fr !important;
                padding: 3rem 1.5rem !important;
            }

            #uk h1 {
                font-size: 2.5rem !important;
            }

            #uk h2 {
                font-size: 2rem !important;
            }

            /* Contact page responsive */
            #contact > div > div {
                padding: 2rem 1.5rem !important;
                border-radius: 20px !important;
            }

            #contact h1 {
                font-size: 2rem !important;
            }

            #contact form > div {
                grid-template-columns: 1fr !important;
            }

            #contact > div > div > div {
                grid-template-columns: 1fr !important;
            }
        }

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

            .hero-content .subheading {
                font-size: 1rem;
            }
            
            .logo img { height:40px; width:auto; }
          .nav-links li a { padding:12px 14px; font-size:15px; }

            .logo {
                font-size: 1.25rem;
            }

            .cta-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .hero-image-container {
                height: 250px;
            }

            .center-graphic {
                width: 120px;
                height: 120px;
                font-size: 2.5rem;
            }

            .floating-card {
                display: none;
            }

            .stat-card {
                padding: 1.5rem;
            }

            .vm-card {
                padding: 1.5rem;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }
            
            .about-hero {
  background-color: #1A1919;
  background: linear-gradient(135deg, #182F7B 0%, var(--dark) 100%);
  color: #fff;
  text-align: center;
  padding-top: 30px;
        }
        
        .section {
 padding: 3rem 0;
  }
  .about-hero h1 {
  font-size: 1.75rem;
  }
  .about-intro {
  font-size: 1rem;
  }
  
  .advisors-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.advisory-img {
  position: revert;
  overflow: hidden;
  left: 390px;
  top: 15px;
}

.footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-hero h1 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: #FACE0C;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto;
}

  .contact-container {
    grid-template-columns: none;
  }
  
  .info-item a, .info-item p {
  font-size: .75rem;
  color: #000000;
  font-weight: 500;
}

.arrow-list li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.hero-content-uk h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #182F7B;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
  
}

        /* Hidden pages */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }
        
        /* Responsive: slightly reduce size on small screens */
@media (max-width: 600px){
.top-bar{height:36px; font-size:0.9rem}
.top-bar .top-bar-container{padding:0 1rem}
}

@media (min-width: 1400px){
    .advisory-img {
    position: absolute;
    overflow: hidden;
    left: 465px !important;
    top: 15px;
}


@media (min-width: 1600px) and (max-width: 3560px){
    .advisory-img {
    position: absolute;
    overflow: hidden;
    left: 500px !important;
    top: 15px;
}

.services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            transition: all 0.3s;
            border: 2px solid transparent;
            border-color: #FACE0C;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }


}
