/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0; /* Default text color */
    background-color: #1a1a2e; /* Dark background for overall site */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from AOS animations */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff; /* Headings white */
}

p {
    color: #c0c0c0; /* Lighter grey for paragraphs */
}

a {
    color: #00ffff; /* Cyan for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00bfff; /* Lighter blue on hover */
}

.text-primary {
    color: #00ffff !important; /* Main accent color */
}

.btn-primary {
    background-color: #00ffff;
    border-color: #00ffff;
    color: #1a1a2e;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #00bfff;
    border-color: #00bfff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.btn-outline-light {
    border-color: #00ffff;
    color: #00ffff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #00ffff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.bg-dark-blue {
    background-color: #1a1a2e !important;
}

.bg-light-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a0a4e 100%); /* Purple-ish gradient */
}

.highlight {
    color: #00ffff;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent dark blue */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

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

.navbar-nav .nav-link {
    color: #c0c0c0;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00ffff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-color: #1a1a2e; /* Fallback */
    position: relative;
    padding-top: 80px; /* To account for fixed navbar */
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-shapes .morph-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.hero-main-image {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center !important;
        padding-top: 100px;
    }
    .hero-section .col-lg-7 {
        text-align: center !important;
    }
    .hero-main-image {
        margin-top: 3rem;
        max-width: 60%;
    }
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 0 15px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #00ffff; /* Accent line */
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: 50%; /* Space for content on left */
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 50%; /* Space for content on right */
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00ffff;
    color: #1a1a2e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1;
    box-shadow: 0 0 0 5px #2a0a4e, 0 0 20px rgba(0, 255, 255, 0.7);
}

.timeline-content {
    background-color: #2a0a4e; /* Darker purple */
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    width: calc(50% - 40px); /* Adjust width to account for icon */
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
    text-align: left;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #2a0a4e;
    right: -15px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    border-width: 15px 15px 15px 0;
    border-color: transparent #2a0a4e transparent transparent;
    left: -15px;
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 20px;
        transform: translateX(0);
    }
    .timeline-item {
        flex-direction: column !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        align-items: flex-start;
    }
    .timeline-icon {
        left: 20px;
        transform: translateX(0);
        margin-left: -30px; /* Adjust to align with line */
    }
    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 70px; /* Space for icon */
        text-align: left !important;
    }
    .timeline-content::before {
        display: none; /* Hide the arrow for mobile */
    }
}

/* Comparison Table */
.compare-table {
    border-radius: 15px;
    overflow: hidden; /* For rounded corners */
    border-collapse: separate; /* Required for border-radius on table */
    border-spacing: 0; /* Required for border-radius on table */
}

.compare-table th,
.compare-table td {
    padding: 1.2rem;
    vertical-align: middle;
    border-color: rgba(255, 255, 255, 0.1);
}

.compare-table thead th {
    background-color: #00ffff;
    color: #1a1a2e;
    font-weight: 700;
}

.compare-table tbody tr:nth-child(odd) {
    background-color: #2a0a4e; /* Darker row */
}

.compare-table tbody tr:nth-child(even) {
    background-color: #1a1a2e; /* Lighter row */
}

/* Order Card / Form */
.order-card, .contact-card {
    background-color: #2a0a4e;
    border: none;
    padding: 2.5rem !important;
}

.form-label {
    color: #00ffff;
    font-weight: 600;
}

.form-control,
.form-select {
    background-color: #1a1a2e;
    border: 1px solid #4b0082;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-control::placeholder,
.form-select option {
    color: #c0c0c0;
}

.form-control:focus,
.form-select:focus {
    background-color: #1a1a2e;
    color: #ffffff;
    border-color: #00ffff;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
}

.form-check-label {
    color: #c0c0c0;
}

.form-check-input:checked {
    background-color: #00ffff;
    border-color: #00ffff;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
}

.price-calculator-display {
    padding: 1.5rem;
    background-color: #1a1a2e;
    border-radius: 0.5rem;
    border: 1px dashed #00ffff;
    margin-top: 2rem;
}

/* Key Statistics / Features */
.feature-box {
    background-color: #2a0a4e;
    border: 1px solid #4b0082;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2) !important;
    border-color: #00ffff;
}

.feature-box .feature-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
    font-size: 0.9rem;
    text-align: left;
}

.feature-box:hover .feature-tooltip {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Testimonials */
.testimonial-card {
    background-color: #2a0a4e;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #00ffff;
}

/* Team Section */
.founder-section {
    background-color: #2a0a4e;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.team-founder-img {
    border: 5px solid #00ffff;
    filter: grayscale(50%) brightness(80%);
    transition: all 0.3s ease;
}

.team-founder-img:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.02);
}

.team-member-card {
    background-color: #2a0a4e;
    border: none;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.team-member-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #00ffff;
    filter: grayscale(70%) brightness(80%);
    transition: all 0.3s ease;
}

.team-member-card:hover .card-img-top {
    filter: grayscale(0%) brightness(100%);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

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

.footer .list-unstyled li a {
    color: #c0c0c0;
    transition: color 0.3s ease;
}

.footer .list-unstyled li a:hover {
    color: #00ffff;
}

.footer .social-icons a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-icons a:hover {
    color: #00ffff !important;
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 1050; /* Above modals */
    border: 1px solid #00ffff;
    background-color: #1a1a2e !important;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.5s ease-out;
}

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

.cookie-banner.hide {
    transform: translateX(100%);
    display: none;
}

/* Cookie Modal */
.modal-content {
    background-color: #1a1a2e !important;
    border: 1px solid #00ffff;
    border-radius: 15px;
}

.modal-header, .modal-footer {
    border-color: rgba(0, 255, 255, 0.2) !important;
}

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

.form-check-input:checked {
    background-color: #00ffff;
    border-color: #00ffff;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
}

/* Responsive adjustments for overall padding */
section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 767.98px) {
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 2.5rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .cookie-banner {
        max-width: 90%;
        left: 5%;
        right: 5%;
        bottom: 10px;
        transform: translateX(0); /* Always show centered on small screens */
    }
    .cookie-banner.hide {
        transform: translateX(0); /* Keep it on screen but hidden via display none */
        display: none !important;
    }
}/* Specific styles for content within .secureTermsHub */
.secureTermsHub {
    /* Padding for the content container */
    padding: 3rem 1.5rem; /* Top/bottom padding and left/right padding */
    /* Optional: Max width and centering for better readability on large screens */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.secureTermsHub h1 {
    /* Heading 1 styles */
    font-size: 2.2rem; /* Moderate font size for main section titles */
    margin-top: 2.5rem; /* Space above heading */
    margin-bottom: 1.5rem; /* Space below heading */
    line-height: 1.2;
    color: #ffffff; /* Ensure heading color is white */
}

.secureTermsHub h2 {
    /* Heading 2 styles */
    font-size: 1.8rem; /* Slightly smaller than H1 */
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #ffffff;
}

.secureTermsHub h3 {
    /* Heading 3 styles */
    font-size: 1.5rem; /* Standard sub-heading size */
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
}

.secureTermsHub h4 {
    /* Heading 4 styles */
    font-size: 1.3rem; /* Smaller sub-heading */
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: #ffffff;
}

.secureTermsHub h5 {
    /* Heading 5 styles */
    font-size: 1.1rem; /* Smallest heading, close to paragraph size */
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #ffffff;
}

.secureTermsHub p {
    /* Paragraph styles */
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Space between paragraphs */
    line-height: 1.7; /* Improved readability */
    color: #c0c0c0; /* Lighter grey for paragraphs */
}

.secureTermsHub ul {
    /* Unordered list styles */
    list-style-type: disc; /* Standard disc bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 2rem; /* Indentation for bullet points */
    color: #c0c0c0; /* Inherit text color */
}

.secureTermsHub ol {
    /* Ordered list styles */
    list-style-type: decimal; /* Standard decimal numbering */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 2rem; /* Indentation for numbering */
    color: #c0c0c0; /* Inherit text color */
}

.secureTermsHub li {
    /* List item styles */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for list items */
    color: #c0c0c0; /* Inherit text color */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .secureTermsHub {
        padding: 2rem 1rem; /* Reduce padding on smaller screens */
    }
    .secureTermsHub h1 {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .secureTermsHub h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .secureTermsHub h3 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .secureTermsHub h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }
    .secureTermsHub h5 {
        font-size: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .secureTermsHub p,
    .secureTermsHub li {
        font-size: 0.95rem; /* Slightly smaller text for better fit */
    }
}
