 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #0b0c0f;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #eef2ff;
      line-height: 1.5;
      scroll-behavior: smooth;
    }


       /* Header - sticky clean */
    .header {
      background: rgba(35, 48, 80, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(51, 65, 85, 0.5);
      position: sticky;
      top: 0;
      z-index: 1000;

    }

    .container-header {
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px 24px;
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.logo img {
    width: 90px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}



    /* Desktop Navigation */
    .desktop-menu {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-link {
      color: #f1f5f9;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s;
      position: relative;
    }

    .nav-link:hover {
      color: #22d3ee;
    }

    /* Desktop Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-btn {
      background: none;
      border: none;
      color: #f1f5f9;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: inherit;
    }

    .dropdown-btn i {
      font-size: 11px;
      transition: transform 0.25s;
    }

    .dropdown:hover .dropdown-btn i {
      transform: rotate(180deg);
    }

    .dropdown-content {
      position: absolute;
      top: calc(100% + 12px);
      left: -12px;
      background: #1e293b;
      backdrop-filter: blur(10px);
      min-width: 210px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.2s ease;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      padding: 12px 20px;
      color: #e2e8f0;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .dropdown-content a:hover {
      background: #334155;
      color: white;
      padding-left: 24px;
    }

    /* Desktop Auth Buttons */
    .auth-buttons {
      display: flex;
      gap: 12px;
    }

    .btn {
      padding: 8px 24px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      font-family: inherit;
    }

    .btn-login {
      background: transparent;
      color: #cbd5e1;
      border: 1px solid #475569;
    }

    .btn-login:hover {
      background: #334155;
      color: white;
    }

    .btn-register {
      background: linear-gradient(95deg, #22d3ee, #38bdf8);
      color: #0f172a;
      box-shadow: 0 2px 8px rgba(34,211,238,0.3);
    }

    .btn-register:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 14px rgba(34,211,238,0.4);
    }

    /* ===== SIDE MENU (MOBILE) - SLIDE FROM RIGHT ===== */
    .hamburger {
      display: none;
      background: rgba(255,255,255,0.05);
      border: 1px solid #334155;
      width: 44px;
      height: 44px;
      border-radius: 30px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .hamburger i {
      font-size: 22px;
      color: white;
    }

    /* Overlay (dark background when menu open) */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
 backdrop-filter: blur(3px);
      z-index: 1100;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Side Menu Panel - slides from right */
    .side-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: #0f172a;
      box-shadow: -5px 0 25px rgba(0,0,0,0.5);
      z-index: 1200;
      transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      display: flex;
      flex-direction: column;
      padding: 24px 20px 30px;
      overflow-y: auto;
      border-left: 1px solid #2d3a4e;
    }

    .side-menu.open {
      right: 0;
    }

    /* Side Menu Header */
    .side-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 1px solid #334155;
      margin-bottom: 20px;
    }

    .side-logo {
      font-size: 26px;
      font-weight: 800;
      background: linear-gradient(135deg, #38bdf8, #a855f7);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .close-menu {
      background: #1e2937;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 30px;
      color: white;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .close-menu:hover {
      background: #334155;
    }

    /* Side Navigation Links */
    .side-nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .side-link {
      color: #e2e8f0;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      padding: 14px 16px;
      border-radius: 14px;
      transition: all 0.2s;
    }

    .side-link:hover {
      background: #1e293b;
      color: #22d3ee;
    }

    /* Side Dropdown */
    .side-dropdown {
      margin-top: 4px;
    }

    .side-dropdown-btn {
      width: 100%;
      background: transparent;
      border: none;
      color: #e2e8f0;
      font-size: 1.05rem;
      font-weight: 500;
      padding: 14px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 14px;
      cursor: pointer;
      transition: background 0.2s;
      font-family: inherit;
    }

    .side-dropdown-btn:hover {
      background: #1e293b;
    }

    .side-dropdown-btn i {
      font-size: 12px;
      transition: transform 0.25s;
    }

    .side-dropdown-content {
      display: none;
      flex-direction: column;
      padding-left: 28px;
      margin: 4px 0 8px 0;
      gap: 6px;
    }

    .side-dropdown-content a {
      color: #cbd5e6;
      text-decoration: none;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 0.95rem;
      transition: all 0.2s;
    }

    .side-dropdown-content a:hover {
      background: #1e2a3e;
      color: white;
      padding-left: 22px;
    }

    /* Side Auth Buttons */
    .side-auth {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 12px;
      border-top: 1px solid #334155;
    }

    .side-auth .btn {
      width: 100%;
      text-align: center;
      padding: 12px;
      font-size: 0.95rem;
    }

   

    @media (max-width: 768px) {
      .desktop-menu, .auth-buttons {
        display: none;
      }
      .hamburger {
        display: flex;
      }
     
    }

    @media (max-width: 480px) {
      .side-menu {
        width: 85%;
      }
    }

    /* modern gradient accents */
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 2rem 1.8rem;
       background: #101218;
      border-radius: 1.5rem;
      margin-bottom: 1.25rem;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(41, 188, 253, 0.2);
      transition: all 0.3s ease;
    }

    /* glowing glass effect */
    .glass-card {
      background: rgba(18, 19, 21, 0.75);
      backdrop-filter: blur(2px);
      border-radius: 2rem;
      border: 1px solid rgba(41, 188, 253, 0.25);
      transition: all 0.3s ease;
    }

    h1, h2, h3 {
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 3rem;
      background: linear-gradient(120deg, #ffffff 20%, #29bcfd 70%, #7dd3fc 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1.2rem;
      line-height: 1.2;
      text-align: center;
    }

    h2 {
      font-size: 2rem;
      margin: 2.2rem 0 1rem 0;
      position: relative;
      display: inline-block;
    }
    h2:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, #29bcfd, transparent);
      border-radius: 4px;
    }

    h3 {
      font-size: 1.8rem;
      margin: 20px 20px;
      color: #29bcfd;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;

    }
    
    h3 i {
      font-size: 1.2rem;
      width: 28px;
      color: #29bcfd;
    }

    p {
    font-size: 17px;
    line-height: 1.9;
    color: #f7f2f2;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}


ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

li {
    font-size: 17px;
    line-height: 1.8;
    color: #f5eded;
    margin-bottom: 8px;
}

ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol li {
    list-style: none;
    margin: 0;
    padding: 0;
}
   

    /* modern button styles */
  .btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 60px;
}

    .btn-primary {
      background: linear-gradient(105deg, #29bcfd, #0f8bc9);
      color: #121315;
      box-shadow: 0 8px 18px rgba(41, 188, 253, 0.25);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(41, 188, 253, 0.35);
      background: linear-gradient(105deg, #33c4ff, #1a9be0);
    }
    .btn-secondary {
      background: rgba(41, 188, 253, 0.12);
      border: 1px solid rgba(41, 188, 253, 0.5);
      color: #29bcfd;
    }
    .btn-secondary:hover {
      background: rgba(41, 188, 253, 0.25);
      transform: translateY(-2px);
      border-color: #29bcfd;
    }
    .flex-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin: 1.5rem 0;
    }

    /* feature cards grid */
    .feature-grid-modern {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin: 1.8rem 0;
    }
    .feature-item {
      background: #13151c;
      border-radius: 1.5rem;
      padding: 1.2rem;
      text-align: center;
      border-bottom: 2px solid #29bcfd;
      transition: all 0.2s;
    }
    .feature-item i {
      font-size: 2rem;
      color: #29bcfd;
      margin-bottom: 0.5rem;
    }
    .feature-item span {
      font-weight: 500;
      font-size: 0.9rem;
    }

    /* tables elegant */
    .spec-table, .comparison-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 1.5rem;
      overflow: hidden;
      margin: 1.5rem 0;
      background: #101218;
    }
    .spec-table th, .comparison-table th {
      background: #191d26;
      color: #29bcfd;
      font-weight: 600;
      padding: 14px 18px;
      text-align: left;
    }
    .spec-table td, .comparison-table td {
      padding: 12px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .spec-table tr:hover, .comparison-table tr:hover {
      background: rgba(41, 188, 253, 0.05);
    }

    /* step cards */
    .step-card {
      background: #111317;
      border-radius: 1.2rem;
      padding: 1rem 1.5rem;
      margin: 0.8rem 0;
      display: flex;
      align-items: baseline;
      gap: 1rem;
      border-left: 3px solid #29bcfd;
      transition: all 0.2s;
    }
    .step-card:hover {
      transform: translateX(5px);
      background: #15181f;
    }
    .step-number {
      background: #29bcfd;
      color: #121315;
      width: 28px;
      height: 28px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    /* review modern */
    .review-modern {
      background: linear-gradient(145deg, #111318, #0e0f14);
      border-radius: 1.5rem;
      padding: 1.4rem;
      margin: 1rem 0;
      border: 1px solid rgba(41, 188, 253, 0.2);
      transition: transform 0.2s;
    }
    .review-modern:hover {
      border-color: #29bcfd40;
      transform: translateX(6px);
    }
    .review-name i {
      color: #29bcfd;
      margin-right: 6px;
    }
    .stars {
      color: #ffb74d;
      letter-spacing: 2px;
      font-size: 0.8rem;
    }

    /* FAQ STYLES - Box with shadow, H3 headings */
    .faq-section {
      margin: 2rem 0;
    }
    
    .faq-box {
      background: #101218;
      border-radius: 1.5rem;
      padding: 1.5rem 1.8rem;
      margin-bottom: 1.25rem;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(41, 188, 253, 0.2);
      transition: all 0.3s ease;
    }
    
    .faq-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 30px -12px rgba(41, 188, 253, 0.2);
      border-color: rgba(41, 188, 253, 0.5);
    }
    
    .faq-box h3 {
      margin-bottom: 0.75rem;
      font-size: 1.3rem;
      font-weight: 700;
      color: #29bcfd;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .faq-box h3 i {
      font-size: 1.4rem;
      width: 32px;
      color: #29bcfd;
    }
    
    .faq-box p {
      margin: 0;
      padding-left: 44px;
      color: #d1d5f0;
      line-height: 1.6;
      font-size: 0.98rem;
    }
    
    @media (max-width: 640px) {
      .faq-box {
        padding: 1.2rem;
      }
      .faq-box p {
        padding-left: 0;
        margin-top: 0.5rem;
      }
      .faq-box h3 {
        flex-wrap: wrap;
      }
    }

  

    .badge-icon {
      background: #29bcfd10;
      border-radius: 30px;
      padding: 5px 12px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    @media (max-width: 720px) {
      .container {
        padding: 1.8rem;
      }
      h1 {
        font-size: 2.2rem;
      }
      h2 {
        font-size: 1.7rem;
      }
    }
    .glow-text {
      text-shadow: 0 0 6px rgba(41,188,253,0.3);
    }
    hr {
      border-color: #1e212a;
      margin: 1.8rem 0;
    }

    /* ess pages */

       /* About Us Page Specific Styles */
    .main-hero {
      text-align: center;
      margin-bottom: 3rem;
    }

    /* About Content Card */
    .main-card {
      background: #101218;
      border-radius: 1.8rem;
      padding: 2rem 2.2rem;
      margin: 2rem 0;
      box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(41, 188, 253, 0.1);
      transition: all 0.3s ease;
    }

    .main-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 35px -12px rgba(41, 188, 253, 0.25), 0 8px 18px rgba(0, 0, 0, 0.4);
      background: #12161f;
    }

    .main-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #e0e4f5;
    }

    .main-text p {
      margin-bottom: 1.4rem;
    }

    .main-text p:last-child {
      margin-bottom: 0;
    }

   
    @media (max-width: 720px) {
      
      .main-card {
        padding: 1.5rem;
      }
    
    }

 .footer {
      background: #0b1120;
      border-top: 5px solid #2e7ce0;
      margin-top: auto;
      padding: 50px 0 35px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Logo and brand */
    .footer-brand {
      text-align: center;
      margin-bottom: 32px;
    }

    .footer-logo {
      font-size: 32px;
      font-weight: 800;
      background: linear-gradient(135deg, #38bdf8, #a855f7, #34d399);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      letter-spacing: -0.5px;
    }

    /* Navigation Links - Single Row / Single Column Style */
    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid #1e2937;
    }

    .footer-nav a {
      color: #cbd5e6;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.25s ease;
      padding: 4px 0;
      position: relative;
    }

    .footer-nav a:hover {
      color: #22d3ee;
      transform: translateY(-2px);
    }

    /* Legal Disclaimer - EXACT TEXT as requested */
    .legal-disclaimer {
      background: rgba(30, 41, 59, 0.4);
      border-left: 4px solid #f59e0b;
      border-radius: 16px;
      padding: 22px 28px;
      margin-bottom: 32px;
      backdrop-filter: blur(4px);
    }

    .disclaimer-text {
      color: #cbd5e6;
      font-size: 0.85rem;
      line-height: 1.7;
      text-align: center;
      letter-spacing: 0.2px;
      font-weight: 400;
    }

    .disclaimer-text strong {
      color: #fbbf24;
      font-weight: 600;
    }

    /* Copyright */
    .copyright {
      text-align: center;
      color: #64748b;
      font-size: 0.75rem;
      padding-top: 20px;
      border-top: 1px solid #1e2937;
      margin-top: 8px;
    }

    .copyright a {
      color: #64748b;
      text-decoration: none;
    }

    .copyright a:hover {
      color: #22d3ee;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .footer-nav {
        gap: 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav a {
        font-size: 0.95rem;
      }
      .legal-disclaimer {
        padding: 18px 20px;
      }
      .disclaimer-text {
        font-size: 0.8rem;
        text-align: left;
      }
      .footer-logo {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .footer-container {
        padding: 0 20px;
      }
      .legal-disclaimer {
        padding: 16px 16px;
      }
    }

    .img-center {
    text-align: center;
    margin: 20px 0;
}

.img-center img {
    width: 300px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: inline-block;
}

.img-center img:hover {
    transform: scale(1.03);
    transition: 0.3s ease;
}

/* author */

 .author-container {
      max-width: 1200px;
      margin: 30px auto;
      text-align: center;
        box-shadow: 0 20px 50px rgba(12, 161, 255, 0.35);
      border: 8px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      padding: 40px;
    }

    /* Author Image */
    .author-image {
      width: 100%;
      max-width: 420px;
      margin: 0 auto 40px;
      border-radius: 30%;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(12, 161, 255, 0.35);
      border: 8px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
    }

    .author-image:hover {
      transform: scale(1.05);
      box-shadow: 0 30px 60px rgba(12, 161, 255, 0.45);
    }

    .author-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Content */
    .author-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .badge {
      display: inline-block;
      background: rgba(12, 161, 255, 0.15);
      color: #0ca1ff;
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 20px;
      border: 1px solid rgba(12, 161, 255, 0.3);
    }

    .author-name {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(90deg, #0ca1ff, #67e8f9, #c084fc);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }

    .author-title {
      font-size: 1.35rem;
      color: #94a3b8;
      margin-bottom: 40px;
      font-weight: 500;
    }

    .highlight-line {
      width: 100px;
      height: 5px;
      background: linear-gradient(to right, #0ca1ff, #22d3ee);
      border-radius: 10px;
      margin: 0 auto 40px;
    }

    .author-bio {
      font-size: 1.08rem;
      color: #cbd5e1;
      line-height: 1.85;
      text-align: left;
    }

    .author-bio p {
      margin-bottom: 26px;
    }

    .author-bio p:last-child {
      margin-bottom: 0;
    }

   

    /* Responsive */
    @media (max-width: 640px) {
      .author-name {
        font-size: 2.5rem;
      }
      .author-image {
        max-width: 260px;
      }
    }