/* styles.css */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #000000;
}

body{
    /* font-family: 'Poppins', sans-serif; */
    font-family:Arial, Helvetica, sans-serif;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 10px 10px 30px #00000030;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
}

.navbar img{
    width: 100px;
}

button{
    width: 100px;
    background-color: #001C55;
    padding: 10px 15px;
    border-radius: 5px;
    color: #ffffff;
    border: none;
    outline: none;
}

.navbar img{
    width: 150px;
}

.new-hero-img img{
    width: 100%;
    padding-top: 20px;
}

.hero-content{
    padding: 20px;
    width: 100%;
}

.hero-heading{
    color: #001C55;
    margin-bottom: 20px;
}

.hero-text{
    color: #001C55;
    font-size: 23px;
    line-height: 35px;
        margin-bottom: 20px;

}

.hero-content-img{
    padding: 10px;
}

.hero-content-img img{
    width: 100%;
}

.hero-background-wrapper , .hero-form-bg{
    padding-top: 50px;
    background-image: url(../cuet-2026/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-form{
    padding-bottom: 50px;
}

.highlight{
    color: #EA8323;
}

.highlight-2{
    color: #EA8323;
    font-weight: 700;
    position: relative;
            background: linear-gradient(90deg, #fcf1e6 0%, #e09d5e 25%, #f87a03 50%, #e09d5e 75%, #fcf1e6 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
}

.testi-wrapper{
    width: 100%;
}

.testi-img{
    margin: auto;
    width: 90%;
}

.testi-img img{
    width: 100%;
    border-radius: 10px;
}

.heading-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 30px;
}

.heading-bar{
    background-color: #FDCA40;
    height: 60px;
    border-radius: 50px;
    width: 8px;
    margin-right: 10px;
    margin-left: 20px;
}

.heading-text{
    margin-top: 5px;
}

.google-testi-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 30px 5px #00000030;
    margin: 10px 20px;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
}

.google-testi-wrapper img{
    margin-right: 10px;
}

.demo-lecture-wrapper{
    padding: 20px;
}

.demo-lecture-img img{
    width: 100%;
    border-radius: 10px;
}

.demo-lecture-heading{
    color: #001C55;
    margin: 10px 0;
}

.demo-lecture-tag{
    background-color: #FDCA40;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 600;
}

.demo-card-cta{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.demo-button{
    width: 200px;
}
.demo-button-sec{
    width: 100%;
    color: #001C55;
    background-color:transparent;
    padding: 0;
    text-align: left;
    margin-left: 20px;
    font-weight: 600;
    text-decoration: underline;
}
.mock-test-wrapper{
    padding: 20px;
}
.mock-test-card{
    background-color: #EFF5FF;
    padding: 10px;
    border-radius: 10px;
}

.test-button {
    width: auto;
    padding: 10px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #001C55 0%, #003285 100%);
    color: white;
    border: none;
    cursor: pointer;
}

.test-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer-2 2s infinite;
}

@keyframes shimmer-2 {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.stats-wrapper{
    padding: 20px;
}

.stats img{
    width: 100%;
}

.desktop{
    display: none;
}
.form-heading-new{
    margin-bottom: 10px;
    font-size: 25px;
}
.form-heading-new span{
    color: #001C55 !important;
    font-size: 35px;
}

.form-btn{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #001C55 !important;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.course-img{
    width: 100px;
}

.course-img img{
    width: 100%;
}

.course-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #EFF5FF;
    border-radius: 10px;
    margin: 10px;
    padding: 20px 0;
}

.course-name{
    font-weight: 600;
    color: #001C55;
}

@media only screen and (min-width:1000px){
    .course-card{
        width: 30%;
        max-width: 500px;
    }

    .hero-content{
        width: 80%;
    }

    .course-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .mobile{
        display: none;
    }

    .desktop{
        display: block;
    }

    .hero-background-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .body-wrapper{
        max-width: 1300px;
        margin: auto;
    }

    .sub-heading{
        font-size: 35px;
    }

    .heading-text{
        font-size: 25px;
    }

    .heading-bar{
        height: 80px;
    }

    .testi-wrapper , .demo-lecture-wrapper , .mock-test-wrapper , .stats-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .testi-img{
        margin: 10px;
        max-width: 600px;
    }

    .demo-lecture-card{
        margin: 10px 30px;
    }

    .mock-test-wrapper .mock-test-card{
        min-width: 400px;
        margin: 20px;
    }

    .stats{
        max-width: 500px;
        margin: 20px;
    }
}


.exam-cards-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 20px;
    margin: 40px 0;
}

.exam-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.exam-cards-header {
    text-align: center;
    margin-bottom: 50px;
}

.exam-card-actions .call{
    background-color: transparent;
}

.exam-cards-header h2 {
    font-size: 36px;
    color: #001C55;
    font-weight: 800;
    margin-bottom: 15px;
}

.exam-cards-header p {
    font-size: 18px;
    color: #4a5568;
    font-weight: 500;
}

.exam-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.exam-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 28, 85, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #EA8323, #001C55);
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 28, 85, 0.2);
    border-color: #EA8323;
}

.exam-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.exam-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EA8323, #ff9a4d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(234, 131, 35, 0.3);
}

.exam-card-title {
    flex: 1;
}

.exam-card-title h3 {
    font-size: 24px;
    color: #001C55;
    font-weight: 700;
    margin-bottom: 5px;
}

.exam-card-title .exam-full-name {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
}

.exam-card-content {
    margin: 20px 0;
}

.exam-features {
    list-style: none;
    margin-bottom: 20px;
}

.exam-features li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.exam-features li::before {
    content: '✓';
    color: #EA8323;
    font-weight: 700;
    font-size: 18px;
    margin-right: 10px;
    background: #fef5ec;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exam-highlight {
    background: #fef5ec;
    border-left: 4px solid #EA8323;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.exam-highlight p {
    color: #001C55;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.exam-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.exam-enroll-btn, .exam-call-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.exam-enroll-btn {
    background: linear-gradient(135deg, #001C55, #003285);
    color: #ffffff;
}

.exam-enroll-btn:hover {
    background: linear-gradient(135deg, #003285, #004bb5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 28, 85, 0.3);
}

.exam-call-btn {
    background: #ffffff;
    color: #001C55;
    border: 2px solid #001C55;
}

.exam-call-btn:hover {
    background: #001C55;
    color: #ffffff;
}

@media only screen and (min-width:800px){
    .hero{
        background-image: url(../ca-cma-foundation/bg1.png);
    }
}

.pg-body{
    max-width: 1200px;
}

@media (max-width: 600px) {
    .exam-cards-grid {
        grid-template-columns: 1fr;
    }
}