/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier Prime', monospace;
    
}

body {
    background-color: #121212;
    color: #fff;
    font-size: 16px;
}

/* Navigation */
header {
    background-color: #1c1c1c;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #00ff00;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff0055;
}

/* Popup Modal Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.popup .close {
    position: relative;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.popup h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.popup p {
    font-size: 18px;
    margin-bottom: 20px;
}


/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('study.webp') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.neon-text {
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00;
    font-weight: 700;
}

.neon-subheading {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #ddd; /* Adjusted for better readability */
}

.cta-button {
    background-color: #00ff00;
    color: #121212;
    padding: 12px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #ff0055;
    transform: scale(1.1);
}

.cta-button:focus {
    outline: 2px solid #ff0055;
}




/* SAT Information Section */
#SAT-Information {
    padding: 20px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.05); /* Light background for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Call-to-Action Button */
#SAT-Information .cta-button {
    background-color: #00ff00; /* Green color */
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s; /* Smooth transitions */
}

#SAT-Information .cta-button:hover {
    background-color: #ff0055; 
    transform: scale(1.05); /* Subtle zoom effect */
}

#SAT-Information .cta-button:active {
    background-color: #3e8e41; /* Even darker green on click */
}

/* Hidden Content */
#SAT-Information .SAT-Information-content {
    display: none; /* Default hidden */
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1); /* Light background for content */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left */
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Table Styling */
#SAT-Information table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
    color: #333;
}

#SAT-Information th, 
#SAT-Information td {
    padding: 10px;
    border: 1px solid #ddd; /* Light border for separation */
}

#SAT-Information th {
    background-color: #4CAF50; /* Green header for distinction */
    color: white;
    font-weight: bold;
}

#SAT-Information td {
    background-color: rgba(255, 255, 255, 0.9); /* Subtle contrast for rows */
}

/* Responsive Design */
@media (max-width: 768px) {
    #SAT-Information {
        padding: 15px;
    }

    #SAT-Information .cta-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    #SAT-Information table {
        font-size: 12px; /* Adjust font size for smaller screens */
    }

    #SAT-Information th, 
    #SAT-Information td {
        padding: 8px;
    }
}

.course-details {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 800px;
}

.course-image img {
    width: 150px; /* Adjust size as needed */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price, .course-info {
    flex: 1;
}

h2 {
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 10px 5px 0 0;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn.buy-now {
    background: #e74c3c;
}



.course-details {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #3c3636;
    margin: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.course-details.price {
    text-align: center;
}

.price h2 {
    color: #e74c3c;
}

.original-price {
    text-decoration: line-through;
    color: gray;
}

.timer {
    color: #2c3e50;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn.buy-now {
    background: #e74c3c;
}



/* Features Section */
#features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
}

.feature {
    text-align: center;
    max-width: 250px;
    margin: 20px;
}

.feature h3 {
    margin: 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature p {
    color: #bbb;
}

.icon {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 10px;
}




/* Style for the Resources Section */
#resources {
    margin: 20px auto;
    padding: 20px;
    background-color: #c9c0ad;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(156, 153, 148, 0.1);
;
  }
  
  #resources ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
  }
  
  #resources li {
    margin: 10px 0; /* Space between list items */
  }
  
  #resources a {
    text-decoration: none; /* Remove underline from links */
    color: #007BFF; /* Link color */
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s; /* Smooth hover effect */
  }
  
  #resources a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline link on hover */
  }
  
  /* Add section title style if needed */
  #resources::before {
    content: "Resources";
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #4CAF50; /* Green color for the title */
    text-align: center;
  }
  



/* Tips Section */
#tips {
    padding: 50px 20px;
    background-color: #333;
    text-align: center;
}

#tips ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

#tips li {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #bbb;
}

#tips li::before {
    content: "✔ ";
    color: #00ff00;
}



/* Practice Tests Section */
#practice-tests {
    background-color: #444;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#practice-tests h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#practice-tests p {
    font-size: 1.5rem;
    color: #ccc;
}

#practice-tests .cta-button {
    font-size: 1.2rem;
    padding: 12px 30px;
}



/* Research Section */
#research {
    padding: 50px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

#research .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#research h1 {
    font-size: 2.5rem;
    color: #00ff00; /* Bright green for the title */
    margin-bottom: 20px;
}

#research p {
    font-size: 1.2rem;
    color: #bbb; /* Light gray for the text */
    margin-bottom: 30px;
    line-height: 1.6;
}

#research a.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: #333;
    background-color: #00ff00;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#research a.btn-primary:hover {
    background-color: #fff; /* White on hover */
    color: #00ff00; /* Green text on hover */
}


/* Contact Section */
#contact {
    
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}
#contact input, #contact textarea {
    text-align: center;
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #fff;
}

#contact button {
    width: 80%;
    padding: 12px;
    background-color: #00ff00;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact button:hover {
    background-color: #ff0055;
    transform: scale(1.05);
}

#contact button:focus {
    outline: 2px solid #ff0055;
}

/* Footer */
footer {
    background-color: #121212;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    text-decoration: none;
    color: #00ff00;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ff0055;
}

footer p {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
        margin: 20px 0;
    }

    header {
        padding: 10px 0;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    #practice-tests .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    footer ul {
        flex-direction: column;
    }

    footer ul li {
        margin: 10px 0;
    }
}

html {
    scroll-behavior: smooth;
}
