/* General Styles */
:root {
    --primary-color: #FF69B4; /* Pink */
    --secondary-color: #00BFFF; /* Deep Sky Blue */
    --dark-bg: #1A1A1A;
    --darker-bg: #0D0D0D;
    --text-light: #E0E0E0;
    --text-white: #FFFFFF;
    --gradient-1: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-white);
    line-height: 1.2;
}

/* Responsive Typography */
h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--text-white);
}

.section-title {
    padding-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.btn {
    border-radius: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.btn-secondary {
    background-color: var(--dark-bg);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

/* Header & Navigation */
#main-header {
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(255, 105, 180, 0.1);
    border-radius: 0.3rem;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background-color: var(--darker-bg);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        overflow-x: auto;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-nav .nav-item {
        width: 100%;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('images/pics/futuristic-gaming-landscape.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 0;
}

.hero-section h1 {
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6), 0 0 30px rgba(0, 191, 255, 0.6);
    font-size: clamp(24px,5vw,35px) !important;
}

/* About Section */
.about-section .about-block {
    background-color: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .about-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services-section {
    background-color: var(--darker-bg);
    overflow: hidden;
}

.service-card {
    background-color: var(--dark-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 191, 255, 0.4);
}

.service-icon {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
}



.services-section::before {
    top: 10%;
    left: -5%;
    transform: rotate(30deg);
}

.services-section::after {
    bottom: 5%;
    right: -5%;
    transform: rotate(120deg);
    background: var(--secondary-color);
    animation-delay: 2s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Core Features */
.features-section .nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-section .nav-link {
    color: var(--text-light);
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.features-section .nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.features-section .nav-link.active {
    color: var(--primary-color);
    background-color: var(--dark-bg);
    border-color: var(--primary-color);
    border-radius: 0.5rem 0.5rem 0 0;
}

.features-section .tab-content {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.features-section .tab-pane ul {
    list-style: none;
    padding-left: 0;
}

.features-section .tab-pane ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.features-section .tab-pane ul li::before {
    content: '\F26E';
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Meet Our Team */
.team-card {
    background-color: var(--dark-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 191, 255, 0.4);
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 4px var(--secondary-color);
}

.team-card blockquote {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
    position: relative;
    padding: 1rem 0;
}

.quote-mark-start, .quote-mark-end {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    line-height: 0;
    position: absolute;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    animation: pulseGradient 5s infinite ease-in-out alternate;
}

.quote-mark-start {
    top: 0;
    left: 0;
    transform: translate(-20px, -20px);
}

.quote-mark-end {
    bottom: 0;
    right: 0;
    transform: translate(20px, 20px);
    animation-delay: 2s;
}

@keyframes pulseGradient {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(1); }
}

/* Our Impact */
.stats-section .stat-block {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.stats-section .stat-label {
    min-width: 120px;
    font-weight: 500;
}

.stats-section .progress {
    height: 25px;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.stats-section .progress-bar {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    transition: width 2s ease-out;
}

/* How It Works */
.how-it-works-section .accordion-item {
    background-color: var(--dark-bg);
    border: 1px solid rgba(0, 191, 255, 0.2);
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.how-it-works-section .accordion-button {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.how-it-works-section .accordion-button:not(.collapsed) {
    background-color: var(--darker-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.how-it-works-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.how-it-works-section .accordion-body {
    padding: 1.5rem;
    background-color: var(--darker-bg);
    color: var(--text-light);
}

.how-it-works-section .accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.how-it-works-section .accordion-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.how-it-works-section .accordion-body ul li::before {
    content: '\F26E';
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* FAQ Wizard */
.faq-wizard-wrapper {
    background-color: var(--dark-bg);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.faq-choice-btn {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.faq-choice-btn:hover, .faq-choice-btn.active {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.faq-section .accordion-item {
    background-color: var(--darker-bg);
    border: 1px solid rgba(0, 191, 255, 0.1);
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: var(--darker-bg);
    color: var(--text-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--dark-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 1rem 1.25rem;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

/* Contact Form */
.contact-form-section .form-label {
    color: var(--text-white);
    font-weight: 500;
}

.contact-form-section .form-control,
.newsletter-form .form-control {
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.75rem 1rem;
}


.contact-form-section .form-control::placeholder,
.newsletter-form .form-control::placeholder {
    color: #fff;
}



.contact-form-section .form-control:focus,
.newsletter-form .form-control:focus {
    background-color: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
    color: var(--text-white);
}

.contact-form-section textarea.form-control {
    resize: vertical;
}

.contact-form-section .invalid-feedback,
.newsletter-form .invalid-feedback {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 80px;
}

.site-footer .site-name {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.site-footer h4 {
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
}

.site-footer .footer-link {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.site-footer .footer-link:hover {
    color: var(--primary-color);
}

.newsletter-form .input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--gradient-1);
    border: none;
    color: var(--text-white);
}

.newsletter-form .input-group .btn:hover {
    background: var(--gradient-2);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1040;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    display: flex; /* Ensure it's a flex container for alignment */
    align-items: center;
    justify-content: center;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-consent-banner .cookie-link-policy {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-consent-banner .btn {
    min-width: 100px;
}

@media (max-width: 767.98px) {
    .cookie-consent-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-banner p {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    .cookie-consent-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-consent-banner .btn {
        flex-grow: 1;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* Wrapper for content, providing internal padding */
.regShieldWrap {
    padding: 70px 20px 20px 20px; /* Provides padding on all sides for content */
}

/* Paragraph styles */
.regShieldWrap p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Good readability for body text */
    margin-top: 0; /* Resets default browser top margin */
    margin-bottom: 1em; /* Space below paragraphs */
}

/* Heading 1 styles */
.regShieldWrap h1 {
    font-size: 1.2rem; /* Moderate size for main headings */
    line-height: 1.2;
    margin-top: 1em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    font-weight: bold; /* Standard bold weight */
}

/* Heading 2 styles */
.regShieldWrap h2 {
    font-size: 1.2rem; /* Smaller than h1, but still prominent */
    line-height: 1.3;
    margin-top: 0.9em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

/* Heading 3 styles */
.regShieldWrap h3 {
    font-size: 1.2rem; /* Suitable for sub-sections */
    line-height: 1.4;
    margin-top: 0.8em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

/* Heading 4 styles */
.regShieldWrap h4 {
    font-size: 1.2rem; /* For minor headings or emphasized text */
    line-height: 1.5;
    margin-top: 0.7em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* Heading 5 styles */
.regShieldWrap h5 {
    font-size: 1.1rem; /* Slightly larger than paragraph text */
    line-height: 1.5;
    margin-top: 0.6em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

/* Unordered list styles */
.regShieldWrap ul {
    list-style: disc; /* Default bullet style */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item styles */
.regShieldWrap li {
    font-size: 1rem; /* Ensures list items match paragraph font size */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5em; /* Space between list items */
}


#features-section, #faq-section, #stats-section,#team-section, .site-footer{
    overflow: hidden !important;
}

.service-card h3{
    font-size: 20px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M1.5 5.5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}
