:root {
    --primary-color: #002060;
    --secondary-color: #FFA500;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F5F5;
}

.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 32, 96, 0.8), rgba(0, 32, 96, 0.8)), url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 0;
}

.hero-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-card {
    background: white;
    border-radius: 1rem;
    transition: var(--transition);
    overflow: hidden;
    border: none;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.nav-card:hover .icon-wrapper {
    background: var(--secondary-color);
}

.quote-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    font-weight: 600;
}

.quote-btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.05);
    color: white;
}

.why-choose-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 2rem;
    padding: 4rem 2rem;
    margin: 4rem 4rem;
    text-align: center;
}

/*Get Page Quote Section*/

.request-quote-section {
    padding: 100px 0;
}
.section-title {
    color: orange;
}

/* Admission Portal Hero Section */
.welcome-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 32, 96, 0.8), rgba(0, 32, 96, 0.9)),
                url('assets/images/welcome2.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.welcome-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.welcome-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.welcome-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: var(--primary-color);
    color: white;
}

/* Welcome Message */
.welcome-message {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.list-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.list-icon {
    color: #28a745;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Student Handbook */
.student-handbook {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    margin: 3rem 0;
    padding: 3rem !important;
}

.download-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.content {
    margin: 0 auto;
    overflow-y: hidden;
}

.hero-section .content {
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-top: 100px;
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.welcome-section {
    background: url('../images/bg1.jpg') no-repeat center center / cover;
    height: 600px;
    position: relative;
}
.welcome-section .overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    position: absolute;
}
.welcome-section .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.welcome-text {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 20px;
}
.card-section {
    padding: 50px 0;
}
.card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05); 
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .welcome-section {
        height: 90vh;
        padding-top: 100px;
    }
    
    .card {
        margin-bottom: 2rem;
    }
}

/* Home Page - Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        padding: 3rem 0;
    }
    .why-choose-section{
        margin: 2rem 1rem;
    }
    .feature-card {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-text {
        height: auto;
        font-size: 3em;
    }
    .welcome-text {
        font-size: 3em;
    }
    .card-section {
        padding: 20px 0;
    }
    .card {
        margin-bottom: 20px;
    }
    .student-handbook {
        margin-top: 20px;
    }
}

/* Get Quoet page Responsive styling */
@media (max-width: 768px) {
    .request-quote-section {
        padding: 50px 0;
    }
    .card-body {
        padding: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}