/*!
Theme Name: Digit7s
Theme URI: https://innwasport.com
Author: Digit7s
Author URI: https://digit7s.com/
Description: Description
Version: 1.0.0

 /* Custom styles for the page */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 70px;
            /* Offset for fixed navbar */
        }

        body {
            font-family: "Poppins", sans-serif;
            background-color: #1a233a;
            color: #ffffff;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow-x: hidden;
            /* Prevent horizontal scrollbar from background elements */
            padding-top: 70px;
            /* Prevent content from being hidden by fixed navbar */
        }

        /* Interactive Particle Background Styles */
        #particle-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(243, 112, 33, 0.2);
            /* Faded orange from theme */
            bottom: -50px;
            /* Start off-screen */
            animation: float linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0vw);
                opacity: 0.8;
            }

            50% {
                transform: translateX(5vw);
            }

            100% {
                transform: translateY(-110vh) translateX(0vw);
                opacity: 0;
            }
        }


        /* Navbar Styles */
        .navbar {
            background-color: rgba(26, 35, 58, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0px 20px;
            transition: background-color 0.3s ease;
        }

        .navbar-brand img {
            height: 60px;
        }

        .navbar .nav-link {
            color: #ffffff;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: #f37021;
        }

        .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 60vh;
            padding: 4rem 1rem;
        }

        .hero-section .logo {
            max-width: 220px;
            /* Control logo size */
            height: auto;
            margin-bottom: 1.5rem;
        }

        .hero-section h1 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .action-section {
            padding: 3rem 1rem;
            text-align: center;
            position: relative;
            /* Needed for z-index to work properly with bg */
            z-index: 1;
        }

        /* Alternating background color for sections */
        body>.action-section:nth-of-type(odd) {
            background-color: rgba(0, 0, 0, 0.2);
        }

        .action-section h2 {
            font-weight: 600;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #f37021;
            /* Orange from logo */
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 500px;
            margin: 1rem auto;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #f37021;
            background-color: #f37021;
            color: #fff;
        }

        .action-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
            background-color: #ff8c44;
            border-color: #ff8c44;
            color: #fff;
            text-decoration: none;
        }

        .action-btn i {
            font-size: 1.5rem;
            margin-right: 15px;
        }

        /* Styles for the contact section */
        .contact-card {
            background-color: #2c3a5c;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid #f37021;
        }

        .contact-card h3 {
            font-size: 1.2rem;
            font-weight: 400;
            color: #ccc;
        }

        .contact-card .phone-number {
            font-size: 1.7rem;
            font-weight: 700;
            color: #fff;
            margin: 0.5rem 0 1.5rem 0;
        }

        .contact-card .btn-contact {
            display: block;
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            background-color: #f37021;
            /* Theme color */
            border: 2px solid #f37021;
            /* Theme color border */
            color: #fff;
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
            /* Orange shadow */
            text-decoration: none;
            color: #fff;
            background-color: #ff8c44;
            /* Lighter orange on hover */
            border-color: #ff8c44;
        }

        /* Styles for Top Up Section */
        .topup-tabs {
            border-bottom: none;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .topup-tabs .nav-link {
            border: 2px solid #f37021;
            background-color: transparent;
            color: #f37021;
            margin: 0 10px;
            border-radius: 50px;
            font-weight: 600;
            padding: 10px 30px;
        }

        .topup-tabs .nav-link.active {
            background-color: #f37021;
            color: #fff;
            border-color: #f37021;
        }

        .tab-content {
            max-width: 960px;
            margin: auto;
        }

        .gallery-item {
            display: block;
            overflow: hidden;
            border-radius: 10px;
            border: 2px solid #f37021;
        }

        .gallery-item img {
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Lightbox Modal Styles */
        #lightboxModal .modal-content {
            background-color: transparent;
            border: none;
            align-items: center;
        }

        #lightboxModal .modal-body {
            position: relative;
        }

        #lightboxModal .close {
            position: absolute;
            top: -10px;
            right: 0px;
            font-size: 2.5rem;
            color: #fff;
            opacity: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* AI Insights Section Styles */
        #insights-result {
            background-color: #2c3a5c;
            border-radius: 15px;
            padding: 2rem;
            min-height: 150px;
            border: 1px solid #f37021;
            text-align: left;
            font-size: 1.1rem;
            line-height: 1.6;
            display: none;
            /* Hidden by default */
        }

        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid #f37021;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }


        .footer {
            padding: 1.5rem 0;
            background-color: #0d121c;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }