/* Global Styles */
:root {
    --primary-color: #38B6FF;
    --dark-bg: #001524;
    --navbar-bg: #00111C;
    --text-color: #333;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.button {
    padding: 12px 16px;
    background-color: #38B6FF;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    width: max-content;
}

.ghost-button {
    padding: 12px 0;
    text-decoration: none;
    color: black;
    border-radius: 8px;
    width: max-content;
}

.ghost-button:hover {
    color: black;
}

.button:hover {
    color: white;
}

.gradient-button {
background: linear-gradient(269deg, #3D92BC 12.64%, #38B6FF 118.84%);
}

.large-gradient-size {
    font-size: 22px;
}

.small-gradient-size {
    font-size: 18px;
}

.arrow-animate:hover > img {
    transform: rotate(-40deg);
    transition: transform 0.3s ease;
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: var(--navbar-bg);
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-nav {
    display: flex;
    gap: 16px;
}

.navbar.scrolled {
    background-color: var(--navbar-bg);
}

.navbar-brand img {
    height: 48px;
    margin-right: 32px;
}

.nav-link {
    font-size: 18px;
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #002847 100%);
    color: white;
    padding: 200px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.welcome-text {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section h1 {
    font-size: 84px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-label {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.feature-item {
    margin-bottom: 2.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.80);
}

/* Set the card content to be flexbox for better alignment */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Keep content at the bottom initially */
    transition: transform 0.3s ease; /* Smooth transition for movement */
}

/* Initially hide the paragraph */
.card-description {
    max-height: 0; /* Collapse the paragraph completely */
    overflow: hidden; /* Hide overflowing content */
    transition: max-height 0.3s ease, transform 0.3s ease;
}

.card-title {
    margin-bottom: 0; /* Remove margin to avoid extra space */
    transition: transform 0.3s ease; /* Smooth transition for movement */
}

/* When hovering, animate the description and title */
.service-card.hovered .card-description {
    max-height: 100px; /* Set a maximum height to expand the paragraph */
    overflow: visible; /* Show the content when expanded */
    transform: translateY(0); /* Reset any transform */
}



/* Pricing Section */
.pricing {
    /* background-color: #f8f9fa; */
}

.pricing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 3rem;
    max-width: 70%;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.pricing-toggle span {
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    /* padding: 0.5rem 1rem; */
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-toggle span.active {
    /* background-color: var(--primary-color); */
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-toggle {
    /* display: flex; */
    gap: 20px;
}

.toggle-option {
    position: relative;
    cursor: pointer;
}

.active-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 5px;
    margin-right: 8px;
    visibility: hidden; /* Hidden by default */
}

.toggle-option.active .active-circle {
    visibility: visible; /* Visible only for the active option */
}


.pricing-cards {
    display: flex;
    gap: 2rem;
    margin: 0 -1rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); */
    flex: 1;
    /* transition: transform 0.3s ease; */
}

/* .pricing-card:hover {
    transform: translateY(-10px);
} */

.pricing-header {
    text-align: left;
    /* margin-bottom: 2rem; */
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    /* padding: 1rem 0; */
    margin-bottom: 20px;
    /* border-bottom: 1px solid #eee; */
    color: #666;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    /* content: "✓"; */
    content: url('./../img/pricing-checkbox.png');
    color: var(--primary-color);
    margin-right: 1rem;
    font-weight: bold;
}

.pricing-cardss {
    display: flex;
    justify-content: space-between;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 24px;
    height: 100%;
}

.pricing-features {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}


/* Demo Section */
.demo {
    background-color: #f0f7ff;
    padding: 120px 0;
}

.demo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.demo-form .form-control {
    padding: 1rem 0;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(56, 182, 255, 0.40);
    font-size: 1rem;
}

.demo-form textarea.form-control {
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding-top: 120px;
    overflow: hidden;
}

.circle-blur {
    width: 400px;
    height: 400px;
    border-radius: 50px;
    position: absolute;
    z-index: 1;
}

.circle-blur-top {
    top: -200px;
    right: -100px;
    background-color: #01558C;
    filter: blur(120px);
}

.circle-blur-bottom {
    bottom: -200px;
    left: -100px;
    background-color: #003659;
    filter: blur(150px);
}

.footer h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info {
    margin: 3rem 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 1;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 32px;
    border-radius: 16px;
}

.form-border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
    padding: 24px 0;
}

textarea {
    resize: none;
}

.form-border-bottom input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.form-border-bottom textarea.form-control {
    padding: 0;
    padding-top: 16px;
}

.form-border-bottom .form-control {
    padding: 0;
}

.contact-form .form-control {
    /* background: rgba(255, 255, 255, 0.1); */
    background-color: transparent;
    border: none;
    color: white;
    /* padding: 1rem; */
    border-radius: 8px;
    /* margin-bottom: 1rem; */
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding: 2rem 0;
}

.footer-nav {
    display: inline-flex;
    gap: 2rem;
    margin-left: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1976D2;
    border-color: #1976D2;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.active_Struggling_inconsistent {
    width: 6px; 
    height: 100%; 
    position: absolute; 
    background-color: #38B6FF; 
    margin-left: -1rem;
}

.active_Struggling_inconsistent_overlay {
    width: 6px; 
    height: 100%; 
    position: absolute; 
    background-color: #38B6FF
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .navbar {
        background-color: var(--dark-bg);
    }
    
    .pricing-cards {
        flex-direction: column;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .footer-nav {
        margin-left: 0;
        margin-top: 1rem;
        display: flex;
    }

    .pricing-subtitle {
        max-width: 100%;
    }
}