@charset "utf-8";
/* CSS Document */

:root{
--primary:#0b3d91;
--secondary:#f9b000;
--light:#f5f8fc;
--dark:#002147;
}



nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:var(--primary);
}

/* HERO */

.hero{
height:550px;
background:
    linear-gradient(rgba(0,45,98,.75),
    rgba(0,45,98,.75)), url("building.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
}

.hero-content h1{
font-size:4rem;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
max-width:700px;
margin:auto;
line-height:1.8;
}

.hero-btn{
display:inline-block;
margin-top:30px;
padding:15px 40px;
background:var(--secondary);
color:white;
text-decoration:none;
border-radius:50px;
font-weight:bold;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-3px);
}

/* TITLE */

.section-title{
text-align:center;
padding:40px 20px 20px;
}

.section-title h2{
font-size:2.8rem;
color:var(--dark);
}

.section-title p{
color:#666;
margin-top:10px;
}

/* PROCESS */

.process{
max-width:1300px;
margin:auto;
padding:20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:20px;
padding:35px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
position:relative;
overflow:hidden;
}

.card::before{
content:"";
position:absolute;
top:0;
left:0;
height:6px;
width:100%;
background:linear-gradient(90deg,
var(--primary),
var(--secondary));
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:60px;
color:var(--primary);
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
color:var(--dark);
}

.card p{
color:#666;
line-height:1.7;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:var(--primary);
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:600;
}

/* TIMELINE */

.steps{
padding:20px 0 40px; 8%;
}

.steps-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.step{
background:white;
padding:25px;
border-radius:15px;
width:220px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.step-number{
width:60px;
height:60px;
background:var(--secondary);
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:bold;
margin:auto auto 15px;
}

/* FOOTER */

footer{
margin-top:80px;
background:var(--dark);
color:white;
text-align:center;
padding:25px;
}

/* MOBILE */

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.hero{
height:450px;
}

.hero-content h1{
font-size:2.3rem;
}

.hero-content p{
font-size:1rem;
}

.section-title h2{
font-size:2rem;
}

}




.header{
    background:linear-gradient(135deg,#0d47a1,#1976d2);
    color:#fff;
    text-align:center;
    padding:15px 20px;
	
}

.header h1{
    font-size:2rem;

}

.header p{
    font-size:1rem;
}

.container2{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:30px 0;
}

.card2{
    background:#fff;
    padding:25px;
    margin-bottom:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card2 h2{
    color:#1565c0;
    margin-bottom:15px;
}

.note{
    background:#fff8e1;
    border-left:5px solid #ff9800;
}

.note p{
    font-weight:600;
}

.steps2{
    list-style:none;
}

.steps2 li{
    margin-bottom:15px;
    padding:10px;
    background:#f8f9fa;
    border-radius:10px;
}

.steps2 i{
    color:#1565c0;
    margin-right:10px;
}

.upload-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    margin-top:15px;
}

.upload-box{
    background:#e3f2fd;
    padding:20px;
    border-radius:12px;
    text-align:center;
}

.upload-box i{
    font-size:35px;
    color:#1565c0;
    margin-bottom:10px;
}

.points ul{
    list-style:none;
}

.points li{
    padding:12px;
    margin-bottom:10px;
    background:#fafafa;
    border-left:4px solid #1976d2;
    border-radius:8px;
}

.points i{
    color:green;
    margin-right:8px;
}

.footer{
    text-align:center;
    padding:20px;
    background:#0d47a1;
    color:white;
    margin-top:30px;
}

@media(max-width:768px){
    .header h1{
        font-size:1.5rem;
    }

    .card2{
        padding:18px;
    }
}
	
	/* ANIMATION */
@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

@keyframes slideUp{
    from{
        transform:translateY(40px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    header h1{
        font-size:26px;
    }
}
	/* CONTAINER */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	max-width: 1100px;
    margin: 15px auto;
	
}

/* LOGO */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 55px;
    margin-right: 10px;
    border-radius: 8px;
    /*background: white;*/
    padding: 4px;
    transition: 0.3s;
}

header.shrink img {
    height: 45px;
}

/* TEXT */
.school-text h1 {
    margin: 0;
    font-size: 17px;
}

.school-text p {
    margin: 0;
    font-size: 11px;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

/* LINK ANIMATION */
nav ul li a {
    text-decoration: none;
    color: #265503;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

/* UNDERLINE EFFECT */
nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: purple;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(to left, #74ebd5, #ACB6E5);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}








*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f4f8fc;
}

/* Hero Section */

.hero3{
    position:relative;
    min-height:400px;
    background:
    linear-gradient(rgba(0,45,98,.75),
    rgba(0,45,98,.75)), url("building.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
	z-index: -1;
}

.hero3-content h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero3-content p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* Section */

.section{
    padding:70px 20px;
}

.heading{
    text-align:center;
    margin-bottom:50px;
}

.heading h2{
    color:#003366;
    font-size:2.5rem;
}

.heading p{
    color:#666;
    margin-top:10px;
}

/* Cards 3 */

.container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.card3{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:.4s;
}

.card3:hover{
    transform:translateY(-10px);
}

.card3-top{
    background:linear-gradient(135deg,#0052cc,#0077ff);
    padding:35px;
    text-align:center;
    color:white;
}

.card3-top i{
    font-size:55px;
    margin-bottom:15px;
}

.card3-top h3{
    font-size:1.6rem;
}

.card3-body{
    padding:30px;
    text-align:center;
}

.card3-body p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#ffb300;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#e69500;
}

/* Features */

.features{
    background:white;
    padding:70px 20px;
}

.feature-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature{
    text-align:center;
    padding:25px;
}

.feature i{
    font-size:45px;
    color:#0052cc;
    margin-bottom:15px;
}

.feature h4{
    margin-bottom:10px;
    color:#003366;
}

/* Footer */

.footer{
    background:#003366;
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){

.hero3-content h1{
    font-size:2.2rem;
}

.hero3-content p{
    font-size:1rem;
}

.heading h2{
    font-size:2rem;
}

}
	/* ANIMATION */
@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

@keyframes slideUp{
    from{
        transform:translateY(40px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    header h1{
        font-size:26px;
    }
}
	/* CONTAINER */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	max-width: 1100px;
    margin: 15px auto;
	
}

/* LOGO */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 55px;
    margin-right: 10px;
    border-radius: 8px;
    /*background: white;*/
    padding: 4px;
    transition: 0.3s;
}

header.shrink img {
    height: 45px;
}

/* TEXT */
.school-text h1 {
    margin: 0;
    font-size: 17px;
}

.school-text p {
    margin: 0;
    font-size: 11px;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

/* LINK ANIMATION */
nav ul li a {
    text-decoration: none;
    color: #265503;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

/* UNDERLINE EFFECT */
nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: purple;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(to left, #74ebd5, #ACB6E5);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;		
    }
}
