 /* about section drop down */
 .dropdown {
        position: relative;
    }

    .dropbtn {
        cursor: pointer;
        padding-right: 5px;
    }

    /* Dropdown Box */
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        min-width: 250px; /* 👈 Increased width */
        border-radius: 6px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        z-index: 1000;
        padding: 10px 0;
    }

    .dropdown-content li {
        list-style: none;
        width: 100%;
    }

    /* Dropdown links */
    .dropdown-content li a {
        display: block;
        padding: 12px 20px; /* 👈 More space */
        color: #333;
        font-size: 15px;
        text-decoration: none;
        white-space: nowrap; /* prevents text wrapping */
        transition: all 0.3s ease;
    }

    .dropdown-content li a:hover {
        background-color: #f5f5f5;
        color: #0056b3;
        padding-left: 25px; /* 👈 small sliding effect */
    }

    /* Show dropdown on hover */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Optional: subtle transition on dropdown open */
    .dropdown-content {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    .dropdown:hover .dropdown-content {
        opacity: 1;
        transform: translateY(0);
    }
    

  
    .hero{display:grid;grid-template-columns:1fr 420px;gap:22px;align-items:center;margin-top:18px}
    .brand-badge{display:flex;align-items:center;gap:12px}
    .brand-badge h1{margin:0;font-size:20px;color:#16324a}
    .hero-card{background:var(--card);padding:24px;border-radius:var(--radius);box-shadow:0 8px 30px rgba(12,30,60,.06)}
    .kicker{display:inline-block;font-weight:600;color:var(--accent-dark);font-size:13px;margin-bottom:8px}
    h2{margin:6px 0 12px}
    p.lead{color:var(--muted);margin:0 0 12px}
    .cta-row{display:flex;gap:12px;margin-top:12px}
    .btn{background:var(--accent-dark);color:#fff;padding:10px 16px;border-radius:10px;text-decoration:none;font-weight:600}
    .btn.ghost{background:transparent;color:var(--accent-dark);border:1px solid rgba(11,103,255,.12)}

    /* Hero image placeholder */
    .hero-img{width:100%;height:100%;min-height:240px;border-radius:10px;overflow:hidden;background:linear-gradient(135deg,#eaf6ff,#fff);display:flex;align-items:center;justify-content:center}
    .hero-img svg{width:90%;height:auto;opacity:.95}

    /* Columns */
    .grid-2{display:grid;grid-template-columns:1fr 340px;gap:20px;margin-top:20px}
    .card{background:var(--card);padding:18px;border-radius:12px;box-shadow:0 6px 20px rgba(12,30,60,.04)}

    /* Why cards */
    .why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
    .why-item{padding:12px;border-radius:10px;background:linear-gradient(180deg,rgba(15,183,255,.04),#fff);border:1px solid rgba(11,103,255,.04)}
    .why-item h4{margin:0 0 6px}
    .why-item p{margin:0;color:var(--muted);font-size:14px}

    /* Table */
    table{width:100%;border-collapse:collapse;margin-top:8px}
    th,td{padding:10px;border-bottom:1px solid #f0f3f7;text-align:left}
    th{background:#fbfdff}

    /* Testimonials */
    .testimonials{display:flex;flex-direction:column;gap:10px}
    .test{display:flex;gap:12px;align-items:flex-start}
    .avatar{width:52px;height:52px;border-radius:999px;background:linear-gradient(90deg,#e6f7ff,#fff);display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--accent-dark)}
    .test p{margin:0;color:var(--muted)}

    /* FAQ */
    .faq-item{margin-bottom:8px}
    details{background:#fff;padding:12px;border-radius:10px;border:1px solid #f1f4f8}
    summary{font-weight:600;cursor:pointer}

    /* Footer small */
    .small{font-size:13px;color:var(--muted)}

    /* Responsive */
    @media (max-width:980px){
      .hero{grid-template-columns:1fr;}
      .grid-2{grid-template-columns:1fr}
      .hero-img{min-height:180px}
    }