/* Extracted from about_us.html */
:root{
      --primary:#1E40AF;
      --accent:#0EA5E9;
      --dark:#0F172A;
      --muted:#475569;
      --transition: 800ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body{
      font-family:'Inter', sans-serif;
      color: var(--dark);
      background:#ffffff;
      line-height:1.7;
      overflow-x:hidden;
      transition: background-color var(--transition), color var(--transition);
    }
    a{ text-decoration:none!important; }

    section{
      padding:110px 0;
      position:relative;
      z-index:1;
    }

    section[data-theme="light"]{ color:var(--dark); }
    section[data-theme="dark"]{ color:#fff; }
    section[data-theme="dark"] .text-secondary{ color:rgba(255,255,255,.75)!important; }

    /* NAVBAR (same as your index) */
    .navbar{
      padding:20px 0;
      background:rgba(255,255,255,.9);
      backdrop-filter:blur(14px);
      transition:.35s;
      border-bottom:1px solid rgba(0,0,0,.06);
    }
    .navbar.scrolled{
      padding:12px 0;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    .nav-link{
      font-weight:600;
      color:#0f172a;
    }

    /* === ONLY ADDITION (Navbar Mega Menu UI) === */
    .mega-menu{
      width: 520px;
      border-radius: 18px;
      overflow: hidden;
    }
    .mega-inner{ padding: 14px; }
    .mega-title{
      font-weight: 900;
      color: var(--dark);
      font-size: .9rem;
      letter-spacing: .02em;
      margin-bottom: 10px;
    }
    .mega-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:14px;
      transition:.2s ease;
      color: var(--dark);
    }
    .mega-item:hover{ background: rgba(14,165,233,.08); }
    .mega-ico{
      width:42px;height:42px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      color: var(--primary);
      background: linear-gradient(135deg,#E0F2FE,#DBEAFE);
      flex: 0 0 auto;
      font-size: 18px;
    }
    .mega-name{ font-weight: 800; line-height: 1.2; margin-bottom: 2px; }
    .mega-desc{
      font-size: .86rem;
      color: rgba(71,85,105,.9);
      line-height: 1.25;
      margin: 0;
    }
    .animate-dropdown{ animation: dropdownFade .22s ease-out; }
    @keyframes dropdownFade{
      from{ opacity:0; transform: translateY(10px); }
      to{ opacity:1; transform: translateY(0); }
    }

    /* ✅ Desktop: open towards LEFT + hover open */
    @media (min-width: 992px){
      .navbar .dropdown-menu.mega-menu{
        left: auto !important;
        right: 0 !important;
        margin-top: 6px;
      }
      .navbar .dropdown:hover > .dropdown-menu{
        display: block;
      }
    }

    /* ✅ Mobile: full width inside collapsed navbar */
    @media (max-width: 991px){
      .mega-menu{ width: 100%; }
      .navbar .dropdown-menu.mega-menu{
        position: static !important;
        float: none;
        left: 0 !important;
        right: 0 !important;
        margin-top: 10px;
        box-shadow: none !important;
      }
    }

    /* Contact highlight (no consultation button) */
    .nav-contact{
      background: linear-gradient(135deg, rgba(30,64,175,.12), rgba(14,165,233,.15));
      border-radius: 999px;
      padding: 10px 18px !important;
      font-weight: 800 !important;
    }
    .nav-contact:hover{
      background: linear-gradient(135deg, rgba(30,64,175,.18), rgba(14,165,233,.22));
    }

    /* HERO (page) - updated (no buttons) */
    .page-hero{
      min-height:70vh;
      display:flex;
      align-items:center;
      text-align:center;
      color:#fff;
      padding:160px 0 120px;
      background:
        linear-gradient(135deg, rgba(15,23,42,.88), rgba(30,64,175,.82)),
        url('../images/web_development_about_image.jpg') center/cover fixed;
    }

    /* MORE COLORFUL SECTIONS (single backgrounds, still clean) */
    #overview{ background:linear-gradient(135deg,#ffffff,#F0F9FF); }
    #history{ background:linear-gradient(135deg,#ffffff,#ECFEFF); }
    #mission-vision{ background:linear-gradient(135deg,#ffffff,#EEF2FF); }

    /* CONTENT CARDS */
    .info-card{
      background:#fff;
      border-radius:24px;
      padding:38px 32px;
      border:1px solid rgba(0,0,0,.06);
      transition:.35s;
      height:100%;
      box-shadow: 0 10px 30px rgba(2,6,23,.06);
    }
    .info-card:hover{ transform:translateY(-8px); }

    .info-icon{
      width:60px;height:60px;
      background:linear-gradient(135deg,#E0F2FE,#DBEAFE);
      color:var(--primary);
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      margin-bottom:18px;
    }

    /* TIMELINE */
    .timeline{ position: relative; padding-left: 22px; }
    .timeline:before{
      content:"";
      position:absolute;
      left:6px;
      top:6px;
      bottom:6px;
      width:2px;
      background: rgba(15,23,42,.12);
    }
    .timeline-item{ position: relative; padding: 0 0 22px 24px; }
    .timeline-dot{
      position:absolute;
      left:-2px;
      top:6px;
      width:16px;height:16px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 8px 18px rgba(30,64,175,.22);
    }
    .timeline-item h5{ font-weight:800; margin-bottom:6px; }

    /* FULL WIDTH SECTION BGs */
    #values{ background:linear-gradient(135deg,#F0F9FF,#ECFEFF); }
    #cta{ background:linear-gradient(135deg,#1E40AF,#0EA5E9); }

    .btn-ghost{
      background:rgba(255,255,255,.15);
      color:#fff!important;
      padding:14px 28px;
      border-radius:14px;
      font-weight:800;
      border:1px solid rgba(255,255,255,.25);
      display:inline-flex;
      align-items:center;
      gap:10px;
    }

    /* service-card + service-icon used in your key-features section */
    .service-card{
      background:#fff;
      border-radius:24px;
      padding:38px 32px;
      border:1px solid rgba(0,0,0,.06);
      transition:.35s;
      height:100%;
      box-shadow: 0 10px 30px rgba(2,6,23,.06);
    }
    .service-card:hover{ transform:translateY(-10px); }
    .service-icon{
      width:60px;height:60px;
      background:#E0F2FE;
      color:var(--primary);
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      margin-bottom:18px;
    }

    /* FOOTER (same structure as your index footer) */
    footer{
      background:#0F172A;
      color:#94A3B8;
      padding:90px 0 40px;
    }
    footer h5{ color:#fff;font-weight:800; }
    footer a{ color:#94A3B8;display:block;margin-bottom:10px; }
