/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A1A; /* Dark background */
    color: #E0E0E0; /* Light text color */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
}

a {
    color: #66FF00; /* Accent color for links */
    text-decoration: none;
}

a:hover {
    color: #CCFF33;
}

.btn-primary {
    background-color: #66FF00;
    border-color: #66FF00;
    color: #0A0A1A;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #CCFF33;
    border-color: #CCFF33;
    color: #0A0A1A;
}

.btn-outline-primary {
    color: #66FF00;
    border-color: #66FF00;
}

.btn-outline-primary:hover {
    background-color: #66FF00;
    color: #0A0A1A;
}

.section-title-portfolio {
    padding-top: 5rem; /* Adjust for fixed header */
    margin-bottom: 3rem; /* Spacing below title */
    color: #FFFFFF;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: #1A0033; /* Dark purple */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand .brand-text {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #E0E0E0;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

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

.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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1A0033 0%, #330066 100%);
    padding-top: 120px; /* Space for fixed navbar */
    padding-bottom: 80px;
    min-height: 100vh;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/uploads/geometric-pattern-dark_3.jpg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card .icon-large {
    font-size: 2.5rem;
    color: #66FF00;
}

.hero-image {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(102, 255, 0, 0.5));
}

/* About Section (Timeline) */
.about-section {
    background-color: #0F0F25; /* Slightly lighter dark background */
    padding-top: 80px;
    padding-bottom: 80px;
}

.timeline {
    position: relative;
    padding: 0 0 0 30px;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px; /* Adjust based on icon size */
    width: 2px;
    background-color: #330066;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-icon {
    position: absolute;
    left: -20px; /* Align with the line */
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #66FF00;
    color: #0A0A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    border: 2px solid #0F0F25; /* Match section background */
}

.timeline-content {
    background-color: #1A0033;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-left: 30px; /* Space for icon */
}

.timeline-content h3 {
    color: #66FF00;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #E0E0E0;
    font-size: 0.95rem;
}

/* Services Section (Accordion) */
.services-section {
    background-color: #0A0A1A;
    padding-top: 80px;
    padding-bottom: 80px;
}

.accordion-item {
    background-color: #1A0033;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #1A0033 !important;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1.2rem 1.5rem;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    color: #66FF00 !important;
    background-color: #330066 !important;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: #0F0F25;
    color: #E0E0E0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.accordion-body ul li {
    margin-bottom: 8px;
}

.accordion-body ul li .fa-check-circle {
    color: #66FF00;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #0F0F25 0%, #003333 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.pricing-card {
    background-color: #1A0033;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card .card-title {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #66FF00;
    margin-bottom: 20px;
}

.pricing-card ul {
    margin-bottom: 30px;
    flex-grow: 1; /* Make list take available space */
}

.pricing-card ul li {
    color: #E0E0E0;
    margin-bottom: 10px;
}

.pricing-card ul li .fa-check-circle {
    color: #66FF00;
}

.pricing-card ul li .fa-times-circle {
    color: #FF6600; /* Orange for 'not included' */
}

.popular-plan {
    border-color: #66FF00;
    box-shadow: 0 0 20px rgba(102, 255, 0, 0.3);
    transform: scale(1.03); /* Slightly larger */
}

.popular-plan .badge {
    background-color: #66FF00 !important;
    color: #0A0A1A;
    font-size: 0.9rem;
    padding: 0.5em 0.8em;
}

/* Portfolio Section */
.portfolio-section {
    background-color: #0A0A1A;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.portfolio-container {
    display: flex;
    width: 100%;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
}

.portfolio-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.portfolio-item {
    flex: 0 0 100vw; /* Each item takes full viewport width */
    height: 70vh; /* Adjust height as needed */
    scroll-snap-align: start;
    position: relative;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    z-index: 1; /* Ensure overlay is above image */
}

.portfolio-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.portfolio-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.portfolio-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #66FF00;
}

.portfolio-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.portfolio-navigation {
    margin-top: 20px;
}

.portfolio-nav-btn {
    border-color: #66FF00;
    color: #66FF00;
}

.portfolio-nav-btn:hover {
    background-color: #66FF00;
    color: #0A0A1A;
}

/* Stats Section */
.stats-section {
    background-color: #0F0F25;
    padding-top: 80px;
    padding-bottom: 80px;
}

.stat-circle {
    background-color: #1A0033;
    border-radius: 50%;
    width: 220px; /* Fixed width for circle */
    height: 220px; /* Fixed height for circle */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.icon-stat {
    font-size: 2.5rem;
    color: #66FF00;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-label {
    font-size: 0.9rem;
    color: #E0E0E0;
    margin-top: 5px;
    padding: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: #0A0A1A;
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-bubbles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-bubble {
    background-color: #1A0033;
    color: #E0E0E0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    text-align: center;
}

.faq-bubble:hover {
    background-color: #330066;
    transform: translateY(-3px);
}

.faq-bubble .fas {
    color: #66FF00;
}

.modal-content {
    background-color: #1A0033;
    color: #E0E0E0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: #66FF00;
}

.modal-body {
    color: #E0E0E0;
}

.btn-close {
    filter: invert(1); /* Make close button white */
}

/* Contact/Registration Section (Form) */
.contact-section {
    background: linear-gradient(135deg, #003333 0%, #0F0F25 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.form-container {
    background-color: #1A0033;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-label {
    color: #E0E0E0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: #0F0F25;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0.75rem 1rem;
}

.form-control::placeholder {
    color: #999999;
    opacity: 0.8;
}

.form-control:focus {
    background-color: #0F0F25;
    border-color: #66FF00;
    box-shadow: 0 0 0 0.25rem rgba(102, 255, 0, 0.25);
    color: #FFFFFF;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    color: #dc3545;
}

/* Footer */
.footer-section {
    color: #E0E0E0;
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer-accordion .accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.footer-accordion .accordion-button {
    background-color: transparent !important;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion .accordion-button:not(.collapsed) {
    color: #66FF00 !important;
    border-bottom-color: #66FF00;
}

.footer-accordion .accordion-button::after {
    display: none;
}

.footer-accordion .accordion-body {
    background-color: transparent;
    padding: 10px 0 20px 0;
    border-top: none;
}

.footer-link {
    color: #E0E0E0;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #66FF00;
}

.social-icons .social-icon {
    color: #E0E0E0;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons .social-icon:hover {
    color: #66FF00;
}

.logo-img-footer {
    height: 35px;
    margin-right: 8px;
}

.footer-bottom {
    font-size: 0.9rem;
    color: #999999;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-1px);
    }

    .timeline-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 0;
        margin-right: 55%;
        text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 55%;
        margin-right: 0;
        text-align: left;
    }

    .timeline-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Footer: Make columns on desktop */
    .footer-accordion .accordion-item {
        width: 33.33%; /* Approx. one-third width */
        float: left;
        padding: 0 15px;
    }

    .footer-accordion .accordion-button {
        border-bottom: none;
        pointer-events: none; /* Disable click */
        cursor: default;
        font-size: 1.2rem;
    }

    .footer-accordion .accordion-button::after {
        display: none;
    }

    .footer-accordion .accordion-collapse {
        visibility: visible !important;
        height: auto !important;
        display: block !important;
    }

    .footer-accordion .accordion-body {
        padding: 0;
    }
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .hero-image {
        max-height: 350px;
    }
    .navbar-collapse {
        background-color: #1A0033;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
    }
    .navbar-nav .nav-link {
        text-align: center;
    }
    .hero-section {
        padding-top: 180px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    
    .hero-section .row.justify-content-lg-start {
        justify-content: center !important;
    }
    .portfolio-item {
        height: 80vh;
    }
    .portfolio-content h3 {
        font-size: 1.8rem;
    }
    .portfolio-content p {
        font-size: 0.9rem;
    }
    .stat-circle {
        width: 220px;
        height: 220px;
    }
    .icon-stat {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .faq-bubble {
        width: 100%;
    }
}/* Styles for content within the privacyNestZone container */
.privacyNestZone {
    padding-top: 60px; /* Top padding for the section */
    padding-left: 20px; /* Left padding for the section */
    padding-right: 20px; /* Right padding for the section */
    max-width: 900px; /* Max width to keep content readable */
    margin: 0 auto; /* Center the container */
    color: #E0E0E0; /* Default text color for this section */
    font-size: 1rem; /* Base font size for the section */
    line-height: 1.7; /* Base line height for readability */
}

.privacyNestZone h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    margin-top: 2.5rem; /* Top margin for H1 */
    margin-bottom: 1.5rem; /* Bottom margin for H1 */
    line-height: 1.2; /* Line height for H1 */
    color: #FFFFFF; /* White color for headings */
}

.privacyNestZone h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    margin-top: 2rem; /* Top margin for H2 */
    margin-bottom: 1.2rem; /* Bottom margin for H2 */
    line-height: 1.3; /* Line height for H2 */
    color: #FFFFFF; /* White color for headings */
}

.privacyNestZone h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-top: 1.8rem; /* Top margin for H3 */
    margin-bottom: 1rem; /* Bottom margin for H3 */
    line-height: 1.4; /* Line height for H3 */
    color: #FFFFFF; /* White color for headings */
}

.privacyNestZone h4 {
    font-size: 1.3rem; /* Moderate font size for H4 */
    margin-top: 1.5rem; /* Top margin for H4 */
    margin-bottom: 0.8rem; /* Bottom margin for H4 */
    line-height: 1.5; /* Line height for H4 */
    color: #FFFFFF; /* White color for headings */
}

.privacyNestZone h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    margin-top: 1.2rem; /* Top margin for H5 */
    margin-bottom: 0.6rem; /* Bottom margin for H5 */
    line-height: 1.6; /* Line height for H5 */
    color: #FFFFFF; /* White color for headings */
}

.privacyNestZone p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for paragraphs */
    color: #E0E0E0; /* Light text color for paragraphs */
}

.privacyNestZone ul {
    list-style: disc; /* Default disc style for unordered lists */
    margin-left: 20px; /* Indentation for list items */
    padding-left: 0; /* No extra padding */
    margin-bottom: 1rem; /* Bottom margin for the entire list */
    color: #E0E0E0; /* Light text color for lists */
}

.privacyNestZone ol {
    list-style: decimal; /* Default decimal style for ordered lists */
    margin-left: 20px; /* Indentation for list items */
    padding-left: 0; /* No extra padding */
    margin-bottom: 1rem; /* Bottom margin for the entire list */
    color: #E0E0E0; /* Light text color for lists */
}

.privacyNestZone li {
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for list items */
}


.hero-card p, .card-body p{
    color: #fff !important;
}

.portfolio-overlay {
  position: relative;
  overflow: hidden;
}

.portfolio-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 1;
}

.portfolio-content {
  position: absolute;
  z-index: 2;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
