/* Import root variables */
@import url('../assets/css/root-variables.css');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fefbfb;
    color: var(--dark-color);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Modern font enhancements for creative look */
body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sgpa-navbar,
.navbar-menu,
.nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.brand-text {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Creative Navbar Styles */
.sgpa-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(92, 117, 227, 0.363);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-2px);
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: var(--heading-letter-spacing);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.6rem 0.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    font-weight: 500;
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    color: #4361ee;
}

.dropbtn {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    display: flex;
    align-items: center;
}

.dropbtn span,
i {
    color: rgb(3, 3, 3);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover span {
    background: var(--secondary-color);
}

/* Animated Background Elements */
.navbar-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    top: -30px;
    right: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    top: 20%;
    right: 5%;
    animation-delay: 4s;
}

.main-content {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: left;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    border-radius: 0 0 30px 30px;
    margin-bottom: 4rem;
    overflow: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
    pointer-events: none;
}

.shape1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation: float 10s ease-in-out infinite 1s;
}

.shape3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation: float 7s ease-in-out infinite 0.5s;
}

.shape4 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 20%;
    animation: float 9s ease-in-out infinite 1.5s;
}

.shape5 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 30%;
    animation: float 12s ease-in-out infinite 2s;
}

.shape6 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 5%;
    animation: float 11s ease-in-out infinite 0.7s;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: var(--heading-font);
    opacity: 0.9;
}

.hero-text .highlight {
    color: #FFD43B;
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 1.5rem;
    color: #FFD43B;
}

.stat-item span {
    font-weight: 600;
    font-size: 1rem;
}

.hero-cta {
    margin-top: 1rem;
}

.btn-primary {
    background: #FFD43B;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 212, 59, 0.3);
}

.btn-primary:hover {
    background: #FFC107;
    box-shadow: 0 6px 20px rgba(255, 212, 59, 0.4);
}

.hero-image {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-illustration {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 3s ease-in-out infinite;
}

.quiz-icon-wrapper {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12), 0 0 16px 2px rgba(67, 97, 238, 0.08);
    filter: drop-shadow(0 0 8px #a3bffa33);
    animation: floatIconSmooth 4.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.quiz-icon-wrapper:nth-child(1) {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.quiz-icon-wrapper:nth-child(2) {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.quiz-icon-wrapper:nth-child(3) {
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.quiz-icon-wrapper:nth-child(4) {
    bottom: 10%;
    left: 50%;
    animation-delay: 5s;
}

.quiz-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -10px);
    }
}

@keyframes floatIconSmooth {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-18px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-family: var(--heading-font);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

/* Enhanced Quiz Subjects Grid */
.quiz-subjects {
    padding: 2rem 0 4rem;
    background: #f6f8ff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(67, 97, 238, 0.04);
    margin-bottom: 2rem;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.subject-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 240px;
    display: block;
    border: 1px solid rgba(230, 230, 250, 0.5);
}

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

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.icon-container {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
}


.card-content i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

/* Updated card color schemes */
.subject-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 249, 255, 1) 100%);
}

.subject-card:nth-child(1) .icon-container i {
    color: #3a86ff;
}

.subject-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
}

.subject-card:nth-child(2) .icon-container i {
    color: #4361ee;
}

.subject-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 246, 246, 1) 100%);
}

.subject-card:nth-child(3) .icon-container i {
    color: #f72585;
}

.subject-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 252, 240, 1) 100%);
}

.subject-card:nth-child(4) .icon-container i {
    color: #f3cf00;
}

.subject-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(244, 255, 244, 1) 100%);
}

.subject-card:nth-child(5) .icon-container i {
    color: #38b000;
}

.subject-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 242, 1) 100%);
}

.subject-card:nth-child(6) .icon-container i {
    color: #ff006e;
}

.subject-card:nth-child(7) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 244, 250, 1) 100%);
}

.subject-card:nth-child(7) .icon-container i {
    color: #8338ec;
}

.subject-card:nth-child(8) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
}

.subject-card:nth-child(8) .icon-container i {
    color: #7209b7;
}

.subject-card:nth-child(9) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(246, 244, 255, 1) 100%);
}

.subject-card:nth-child(9) .icon-container i {
    color: #06c1d6;
}

.subject-card:nth-child(10) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(243, 255, 251, 1) 100%);
}

.subject-card:nth-child(10) .icon-container i {
    color: #e04305;
}

.subject-card:nth-child(11) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 241, 1) 100%);
}

.subject-card:nth-child(11) .icon-container i {
    color: #00ff77;
}

.subject-card:nth-child(12) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 245, 1) 100%);
}

.subject-card:nth-child(12) .icon-container i {
    color: #9d0bff;
}

.subject-card:nth-child(13) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 245, 1) 100%);
}

.subject-card:nth-child(13) .icon-container i {
    color: #ffbe0b;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.subject-card:hover .card-content h3 {
    transform: translateX(5px);
}

.card-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.subject-card:hover .card-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.card-action i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.subject-card:hover .card-action {
    transform: translateX(5px);
}

.subject-card:hover .card-action i {
    transform: translateX(5px);
}

/* Site Footer Styles */
.site-footer {
    background: var(--gradient);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-section p {
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.links li {
    margin-bottom: 0.5rem;
}

.footer-section.links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section.links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom .fa-heart {
    color: #ff5a5f;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.2);
    }

    10% {
        transform: scale(1.1);
    }

    15% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .quiz-illustration {
        width: 240px;
        height: 240px;
    }

    .subjects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-menu {
        position: fixed;
        top: 59px;
        right: -100%;
        width: 55%;
        height: calc(100vh - 59px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 0.1rem 0.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dropdown-content {
        color: #333;
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
    }

    /* More specific selectors to ensure color is applied */
    .navbar-menu .dropdown .dropdown-content a,
    .dropdown-content a,
    .dropdown.active .dropdown-content a {
        color: #333 !important;
        /* Force dark color for mobile dropdown links */
        font-weight: 500;
        padding: 8px 15px;
    }

    /* Ensure hover state is also visible */
    .navbar-menu .dropdown .dropdown-content a:hover,
    .dropdown-content a:hover {
        color: #4361ee !important;
        background-color: rgba(67, 97, 238, 0.05);
    }

    .dropdown.active .dropdown-content {
        max-height: 300px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .subjects-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .subject-card {
        height: 220px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .icon-container {
        width: 56px;
        height: 56px;
    }

    .card-content i {
        font-size: 1.8rem;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .quiz-illustration {
        width: 200px;
        height: 200px;
    }

    .quiz-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .quiz-icon {
        font-size: 1.2rem;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .subjects-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .subject-card {
        height: 235px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .card-content i {
        font-size: 1.6rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .card-badge {
        top: 1.2rem;
        right: 1.2rem;
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
    }
}

.hero-cta .btn-primary {
    background: linear-gradient(90deg, #FFD43B 0%, #FF7F50 100%);
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 24px rgba(255, 212, 59, 0.18);
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    letter-spacing: 0.03em;
    cursor: pointer;
    outline: none;
    display: inline-block;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(90deg, #ffd53bb6 0%, #ff7f50cc 100%);
}

/* Coming Soon Alert Styles */
.coming-soon-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    width: 90%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.coming-soon-alert.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.alert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.alert-icon i {
    font-size: 2rem;
    color: white;
}

.alert-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.alert-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.5;
}

.alert-button {
    background: linear-gradient(90deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.alert-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .coming-soon-alert {
        padding: 1.2rem;
        width: 85%;
    }

    .alert-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .alert-icon i {
        font-size: 1.6rem;
    }

    .alert-title {
        font-size: 1.2rem;
    }

    .alert-message {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .alert-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}