        :root {
            --primary-color: #6afaa6;
            --primary-hover: #5de495;
            --dark-bg: #0f172a;
            --section-bg: #1a2234;
            --card-bg: rgba(30, 41, 59, 0.8);
            --border-radius: 8px;
            --text-color: #fff;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark-bg);
            color: var(--text-color);
        }

        .header-modern {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 32px;
            width: auto;
        }

        .navbar-nav {
            gap: 0.5rem;
        }

        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
        }

        .nav-link i {
            font-size: 1.25rem;
            margin-right: 0.5rem;
        }

        /* Remove dropdown arrow background */
        .dropdown-toggle::after {
            display: none !important;
        }

        .nav-link .dropdown-indicator {
            font-size: 1rem;
            transition: transform 0.2s ease;
            margin-left: 0.25rem;
        }

        .show .dropdown-indicator {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            padding: 0.5rem;
            min-width: 220px;
            margin-top: 0.5rem;
        }

        .dropdown-item {
            color: var(--text-color);
            padding: 0.75rem 1rem;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .dropdown-item:hover {
            border-color: rgba(255, 255, 255, 0.2);
            
        }

        .dropdown-item i {
            font-size: 1.25rem;
            margin-right: 0.5rem;
            min-width: 1.25rem;
            text-align: center;
        }

        .btn2 {
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.2s ease;
            white-space: nowrap;
            display: flex;

        }

        .btn2-outline-light {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
        }

        .btn2-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn2-primary {
            background: var(--primary-color);
            border: none;
            color: var(--dark-bg);
        }

        .btn2-primary:hover {
            background: #5de495;
        }

        .nav-buttons {
            display: flex;
            gap: 0.75rem;
            margin-left: 1rem;
            align-items: center;
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            color: var(--text-color);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        @media (max-width: 991px) {
            .nav-buttons {
                margin: 1rem 0 0 0;
                width: 100%;
            }

            .btn2 {
                flex: 1;
                justify-content: center;
            }
        }

        /* overlay2 Styles */
        .overlay2 {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .overlay2-content {
            background: var(--dark-bg);
            border-radius: 20px;
            padding: 2rem;
            width: 90%;
            max-width: 600px;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .progress-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: var(--primary-color);
            width: 0;
            transition: width 0.3s ease;
        }

        .close-btn2 {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .close-btn2:hover {
            opacity: 1;
        }

        .overlay2-page {
            margin-top: 2rem;
        }

        .overlay2-page h3 {
            margin-bottom: 1rem;
        }

        .overlay2-page p {
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .radio-img-btn2 {
            margin-bottom: 1rem;
        }

        .radio-img-btn2 input[type="radio"] {
            display: none;
        }

        .radio-img-btn2 label {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .radio-img-btn2 label:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .radio-img-btn2 input[type="radio"]:checked + label {
            background: var(--primary-color);
        }

        .radio-img-btn2 img {
            width: 32px;
            height: 32px;
        }

        .radio-img-btn2 h5 {
            margin: 0;
            font-size: 1rem;
        }

        .ping-info {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .slider-container {
            margin-bottom: 2rem;
        }

        .slider-container input[type="range"] {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            outline: none;
            -webkit-appearance: none;
        }

        .slider-container input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .slider-container input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        .slider-container strong {
            display: block;
            margin-top: 1rem;
            text-align: center;
        }

        .button-row {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 2rem;
        }

        .button-11 {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 10px;
            background: var(--primary-color);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .button-11:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        .back-button-11 {
            padding: 0.75rem 2rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: transparent;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .back-button-11:hover {
            border-color: white;
            transform: translateY(-2px);
        }

        .unclickable-button-11 {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            cursor: not-allowed;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }

        .package-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .ram-label {
            font-weight: 600;
            color: var(--primary-color);
        }

        .package-details {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .overlay2-content {
                width: 100%;
                height: 80vh;
                border-radius: 20px 20px 0 0;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
            }

            .button-row {
                position: sticky;
                bottom: 0;
                background: var(--dark-bg);
                padding: 1rem;
                margin: 0 -2rem -2rem -2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            /* 1) Force the toggler to the top-right on all screen sizes */
            .header-modern .navbar-toggler {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1100;
            }

            /* 1a) rotation helper for dropdowns */
            .rotated {
            transform: rotate(180deg);
            }

        }
        @media (max-width: 991px) {
  /* 1) Make the header fill the top and float above everything */
  .header-modern {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 0 !important;  /* boost height so it never collapses */
    z-index: 1000 !important;
  }

  /* 2) Push your content below the header */
  /*    Tweak 4rem up/down to match actual header height if needed */
  body, #wrapper {
    padding-top: 4rem !important;
  }

  /* 3) Pin the hamburger to the viewport's top-right corner */
  .navbar-toggler {
    position: fixed !important;
    top: 0.75rem !important;
    right: 1rem !important;
    z-index: 1001 !important;
  }
}

@media (max-width: 991px) {
  /* Pin the logo to the top-left of the viewport */
  .navbar-brand {
    position: fixed !important;
    z-index: 1001 !important;
    margin-top: 3px !important;
    margin-left: -30px !important;    /* override any negative offset */
  }
  /* If you need to tweak the image itself, you can also reset its margin */
  .navbar-brand img {
    margin-left: 0 !important;
  }
  /* make the overlay2 fill the screen and sit on top */
    .overlay2 {
    display: none;               /* start hidden */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;               /* above your header (1000+) */
    justify-content: center;
    align-items: center;
    }

}

@media (max-width: 991px) {
  /* 1) Let menus overflow the rounded container */
  .overlay2-content {
    overflow: visible !important; 
    /* optional: if you want a full-screen panel instead of a "card" */
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    max-height: none !important;
    padding: 2rem 1rem !important;
  }

  /* 2) Stack dropdown toggles */
  .overlay2-content .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  .navbar-nav {
    margin-top: 40px !important;
  }

  .overlay2-content .dropdown-toggle {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05) !important;
    border-radius: var(--border-radius) !important;
    cursor: pointer;
  }

  /* 3) Force each dropdown-menu static and full-width */
  .overlay2-content .dropdown-menu {
    position: static !important;
    display: none;
    width: 100%;
    background: rgba(30,41,59,0.95) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: none !important;
    margin-top: 20px !important;
  }
  
  /* 4) Widen each item inside it */
  .overlay2-content .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem !important;
  }
}
.navbar-brand img {
    height: 60px;
    width: auto;
    margin-left: -40px;
    align-items: center;
}



