
      :root {
        --bg: #f7fbff;
        --fg: #0f1724;
        --border: rgba(0, 0, 0, 0.08);
        --input: #ffffff;

        --primary: #0b66d0;
        --primary-fg: #ffffff;

        --secondary: #e9f2fb;
        --secondary-fg: #0b66d0;

        --muted: #f1f5f9;
        --muted-fg: #64748b;

        --card: #ffffff;

        --r-sm: 4px;
        --r-md: 6px;
        --r-lg: 8px;
        --r-xl: 12px;

        --shadow-soft: 0 20px 40px -12px rgba(0, 0, 0, 0.06);
        --shadow-hero: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        --shadow-card: 0 12px 24px -8px rgba(0, 0, 0, 0.08);

        --maxw: 1200px;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: Inter, system-ui, -apple-system, sans-serif;
        background: var(--bg);
        color: var(--fg);
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
      }

      h1,h2,h3{
        font-weight:700;
      }

      /* Container sizing to match original */
      .container-custom {
        max-width: var(--maxw);
      }

      /* Typography */
      .text-muted-2 {
        color: var(--muted-fg) !important;
      }

      .section {
        padding: 60px 0;
      }

      .bg-muted {
        background: var(--muted);
      }

      .section-label {
        display: inline-block;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 16px;
      }

	.header-logo{
		 width:300px;
		
}

      /* Buttons */
      .btn-uba-primary {
        background: var(--primary);
        color: var(--primary-fg);
        border: 0;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1),
          0 4px 12px rgba(11, 102, 208, 0.2);
        font-weight: 700;
      }
      .btn-uba-primary:hover {
        background: #0a5cc0;
        color: var(--primary-fg);
      }

      .btn-uba-outline {
        border: 1px solid var(--border);
        background: transparent;
        color: var(--fg);
        font-weight: 700;
      }
      .btn-uba-outline:hover {
        border-color: rgba(11, 102, 208, 0.35);
        background: rgba(11, 102, 208, 0.04);
        color: var(--fg);
      }

      /* Badge */
      .badge-uba {
        display: inline-flex;
        align-items: center;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--secondary);
        color: var(--secondary-fg);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }

      /* Navbar */
      .navbar-uba {
        height: 80px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
      }

      .brand-main {
        font-size: 20px;
        font-weight: 900;
        color: var(--primary);
        line-height: 1.1;
      }

      .brand-sub {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--muted-fg);
      }

      .navlink-uba {
        font-size: 14px;
        font-weight: 600;
        color: var(--muted-fg);
        text-decoration: none;
        transition: color 0.2s ease;
      }
      .navlink-uba:hover {
        color: var(--fg);
      }
      .navlink-uba.active {
        color: var(--fg);
      }

      /* Hero */
      .hero {
        padding: 60px 0 90px;
        background: linear-gradient(to bottom, #ffffff, #f8fafc);
      }

      .hero-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.025em;
        margin-bottom: 24px;
        background: linear-gradient(to bottom right, #0f172a, #334155);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-desc {
        font-size: clamp(1.05rem, 1.6vw, 1.25rem);
        line-height: 1.6;
        margin-bottom: 40px;
        color: var(--muted-fg);
        max-width: 540px;
      }

      .hero-image {
        width: 100%;
        border-radius: 24px;
        box-shadow: var(--shadow-hero);
        object-fit: cover;
      }

      .trusted-wrap {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
      }

      .trusted-title {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--muted-fg);
        letter-spacing: 0.06em;
        margin-bottom: 16px;
      }

      .trusted-logos {
        height: 32px;
        width: auto;
        opacity: 0.6;
        max-width: 100%;
      }

      /* Floating Stats */
      .stats-float {
        margin-top: -80px;
        position: relative;
        z-index: 10;
      }

      .stats-card {
        background: var(--card);
        border-radius: 12px;
        padding: 40px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(226, 232, 240, 0.8);
      }

      .stat-num {
        font-size: 36px;
        font-weight: 900;
        color: var(--primary);
        line-height: 1.1;
        margin-bottom: 6px;
      }

      .stat-label {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--muted-fg);
        letter-spacing: 0.05em;
        margin: 0;
      }

      /* Service cards */
      .service-card {
        padding: 32px;
        background: var(--card);
        border: 1px solid rgba(226, 232, 240, 1);
        border-radius: 12px;
        height: 100%;
        transition: transform 0.2s ease, box-shadow 0.2s ease,
          border-color 0.2s ease;
      }
      .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
        border-color: rgba(233, 242, 251, 1);
      }

      .service-icon {
        display: grid;
        place-items: left;
        margin-bottom: 24px;
      }
      .service-icon img{
        max-width:100px;
      }

      .service-title {
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 12px;
      }

      .service-desc {
        font-size: 14px;
        color: var(--muted-fg);
        margin: 0;
      }

      /* About feature items */
      .feature-item {
        display: flex;
        gap: 20px;
        margin-bottom: 16px;
        padding: 24px;
        background: var(--card);
        border-radius: 8px;
        border: 1px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
      }
      .feature-item:hover {
        border-color: rgba(226, 232, 240, 1);
        background: #fafbfc;
      }

      .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--muted);
        color: var(--fg);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
      }

      .about-image {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
      }

      .quote-badge {
        position: absolute;
        bottom: 32px;
        left: -32px;
        background: var(--primary);
        color: #fff;
        padding: 24px;
        border-radius: 8px;
        max-width: 240px;
        box-shadow: 0 10px 30px rgba(11, 102, 208, 0.3);
      }

      .quote-badge p {
        margin: 0;
        color: #fff;
        font-weight: 800;
        font-size: 14px;
      }

      /* Leadership */
      .leader-image {
        width: 100%;
        max-width: 440px;
        border-radius: 24px;
        box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
        object-fit: cover;
      }

      .leader-metric-num {
        font-size: 32px;
        font-weight: 900;
        color: var(--fg);
        line-height: 1.1;
      }

      .leader-metric-label {
        font-size: 13px;
        color: var(--muted-fg);
        margin: 0;
      }

      /* Contact */
      .contact-shell {
        border-radius: 24px;
        overflow: hidden;
        background: #0f172a;
      }

      .contact-left {
        padding: 64px;
        background: #0f172a;
      }

      .contact-left h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 900;
        margin-bottom: 16px;
      }

      .contact-left p.lead {
        color: #94a3b8;
        margin-bottom: 48px;
      }

      .contact-item {
        display: flex;
        gap: 16px;
        margin-bottom: 32px;
      }

      .contact-icon {
        color: #38bdf8;
        font-size: 24px;
        line-height: 1;
        margin-top: 2px;
      }

      .contact-label {
        display: block;
        color: #fff;
        font-weight: 800;
        font-size: 14px;
        margin-bottom: 4px;
      }

      .contact-value {
        color: #94a3b8;
        font-size: 14px;
      }

      .contact-form {
        padding: 48px;
        background: #fff;
      }

      .form-label-uba {
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 8px;
      }

      .form-control-uba {
        background: var(--input);
        border: 1px solid rgba(226, 232, 240, 1);
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 14px;
      }

      .form-control-uba:focus {
        border-color: rgba(11, 102, 208, 1);
        box-shadow: 0 0 0 0.2rem rgba(11, 102, 208, 0.15);
      }

      textarea.form-control-uba {
        resize: none;
      }

      /* Footer */
      .footer-simple {
        padding: 32px 0;
        border-top: 1px solid rgba(226, 232, 240, 1);
        color: var(--muted-fg);
        font-size: 13px;
      }

      .footer-link {
        color: inherit;
        text-decoration: none;
      }
      .footer-link:hover {
        text-decoration: underline;
      }


      /* main-form */
      

      

      