*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

html {
  scroll-behavior: smooth;
}

.container{
    width:95%;
    margin:auto;
}

/*================ HEADER =================*/

header{
    background:#fff;
}

.header-main{
    display:flex;
    justify-content:space-between;
}

.logo{
    padding:13px 0 0;
}

.logo a {
    text-decoration: none;
}

.logo h1{
    font-size:58px;
    color:#e30613;
    line-height:1;
    font-weight:800;
}

.logo p{
    font-size:40px;
    color:#06194d;
    font-weight:700;
    margin-top:5px;
}

.logo p span {
    color:#e30613;
}

.right-menu{
    display:flex;
    align-items:center;
    background: #06194d;
    border-radius: 0 0 0 20px;
}

nav{
    background:#06194d;
    padding:22px 30px;
    border-radius:0 0 0 15px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.call-box{
    background:#d71920;
    color:#fff;
    padding:34px 20px 20px;
    font-size:17px;
    font-weight:700;
    line-height:1.6;
    border-radius: 0 0 15px 15px;
    text-align: center;
    margin-bottom: 10px;
}

.call-box a {
    color: #fff;
    text-decoration: none;
}

/*================ HERO =================*/

.hero{
    /*padding:50px 0;*/
    position:relative;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.1);
}

.hero-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
    position:relative;
    margin-left: 0;
}

.hero-left{
    background:#fff;
    border-radius:0 30px 0 0;
    padding:45px;
}

.hero-left h1{
    font-size:63px;
    line-height:1.05;
    color:#06194d;
    font-weight:800;
}

.hero-left h1 span{
    color:#e30613;
}

.hero-left h3{
    margin-top:20px;
    font-size:27px;
    font-weight:700;
}

.subjects{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:28px;
}

.subject p {
    font-size: 11px;
}

.subject{
    border:2px solid #ddd;
    border-radius:12px;
    text-align:center;
    padding:8px;
    font-weight:700;
    color:#06194d;
    background:#fff;
    font-size: 26px;
}

.admission{
    margin-top:20px;
    background:#e30613;
    color:#fff;
    text-align:left;
    padding:5px 20px;
    border-radius:10px;
    font-size:38px;
    font-weight:800;
}

.bank{
    margin-top:10px;
    background:#06194d;
    color:#ffcc00;
    text-align:left;
    padding:5px 20px;
    border-radius:8px;
    font-size:26px;
    font-weight:700;
    width: 80%;
}

.phone{
    margin-top:10px;
    background:#06194d;
    color:#fff;
    text-align:left;
    padding:5px 20px;
    border-radius:8px;
    font-size:26px;
    font-weight:700;
}

.phone a {
    color:#fff;
    text-decoration: none;
}

.phone i {
    color:#ffcc00;
}

.hero-right img{
    width:100%;
    border:5px solid #fff;
}

/*================ TITLE =================*/

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    color:#06194d;
    font-weight:800;
}

/*================ ABOUT =================*/

.about{
    background:#fff;
    padding:50px 0;
}

.about-wrap{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
}

.about-left{
    display:flex;
    gap:25px;
}

.about-left img{
    width:260px;
    height:260px;
    border-radius:50%;
    object-fit:cover;
    margin-top: 5%;
}

.about-content h2{
    color:#06194d;
    font-size:42px;
    margin-bottom:0;
}

.about-content h2 span{
    color:#e30613;
}

.about-content p{
    line-height:1.9;
    font-size:17px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature{
    background:#fff;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.feature i{
    color:#06194d;
    font-size:50px;
}

.feature h3{
    color:#06194d;
    font-size:22px;
}

/*================ COURSES =================*/

.courses{
    padding:50px 0;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.course-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.course-head{
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:20px;
    font-weight:700;
}

.course-head p{
    font-weight:500;
    font-size:19px
}

.blue{background:#0047ab;}
.red{background:#e30613;}
.green{background:#11a84f;}
.purple{background:#7d3cb5;}
.orange{background:#ff7b00;}
.brown{background:#734620;}

.course-body{
    padding:12px;
}

.course-body ul{
    padding-left:18px;
}

.course-body ul li{
    margin-bottom:14px;
    font-size: 13.5px;
}

/*================ WHY =================*/

.why{
    background:#fff;
    padding:50px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}

.why-box{
    text-align:center;
    border-right: 1px solid #ddd;
}

.why-box:last-child {
    border-right: none;
}

.why-box i {
    font-size: 50px;
    color:#06194d;
}

.why-box h4{
    margin-top:15px;
    color:#06194d;
}

/*================ RESULTS =================*/

.results{
        /*padding: 0;*/
    background: #fff;
}

.result-wrap{
    background:#06194d;
    border-radius:18px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    color:#fff;
    text-align:left;
}

.result-box h2{
    font-size:40px;
    color:#ffcc00;
}

.result-box {
    border-right: 1px solid #ddd;
    width: 80%;
}

.result-box:last-child {
    border-right: none;
}

.result-box i{
    font-size:50px;
    color:#ffcc00;
}

.result-box p{
    margin-top:10px;
    font-size:22px;
}

/*================ GALLERY =================*/

.gallery{
    background:#fff;
    padding:50px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.gallery-grid img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
}

/*================ CONTACT =================*/

.contact{
    padding: 50px 0;
    background: #fff;
    padding-top: 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:30px;
}

.form-box{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.form-title{
    background:#e30613;
    color:#fff;
    text-align:center;
    padding:10px;
    font-size:30px;
    font-weight:700;
}

.form-body{
    padding:30px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-body input,
.form-body select,
.form-body textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:5px;
}

.form-body textarea{
    grid-column:span 2;
}

.form-body button{
    width:100%;
    margin-top:20px;
    border:none;
    background:#ff0000;
    color:#fff;
    padding:10px;
    border-radius:8px;
    font-size:18px;
    font-weight:700;
}

.contact-box{
    background: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.contact-box h2{
    color:#e30613;
    font-size:42px;
    margin-bottom:0;
}

.contact-box p{
    margin-bottom:18px;
    font-size:18px;
    color: #06194d;
    text-decoration: none;
}

.contact-box p a{
    color: #06194d;
    text-decoration: none;
}

/*================ FOOTER =================*/

footer{
    background:#06194d;
    color:#fff;
    padding:50px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo h2{
    font-size:48px;
}

.footer-logo a {
    color: #fff;
    text-decoration: none;
}

.footer-logo h1 {
    font-size: 50px;
    font-weight: 800;
}

.footer-logo h6 {
    font-size: 35px;
    font-weight: 500;
}

.footer-logo p {
    font-size: 17px;
}

.footer-links h3{
    margin-bottom:18px;
    color: #ffcc00;
    font-size: 25px;
    font-weight: 500;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:10px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#fff;
}

.copy{
    text-align: center;
    /*border-top: 1px solid rgba(255, 255, 255, 0.2);*/
    padding: 10px 0;
    background: #e30613;
    color: #fff;
}

/*================ RESPONSIVE =================*/

@media(max-width:1200px){

.course-grid{
    grid-template-columns:repeat(3,1fr);
}

.gallery-grid{
    grid-template-columns:repeat(3,1fr);
}

.why-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.hero-wrap,
.about-wrap,
.contact-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.header-main{
    flex-direction:column;
}

.subjects{
    grid-template-columns:repeat(2,1fr);
}

.result-wrap{
    grid-template-columns:1fr;
    gap:30px;
}

}

@media(max-width:768px){

.hero-left h1{
    font-size:42px;
}

.hero-left h3{
    font-size:22px;
}

.course-grid,
.gallery-grid,
.why-grid,
.form-grid{
    grid-template-columns:1fr;
}

.about-left{
    flex-direction:column;
}

.about-left img{
    width:100%;
    height:auto;
    border-radius:15px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.logo h1{
    font-size:42px;
}

}
.line {
    width: 50px !important;
    height: auto !important;
    border-radius: 0 !important;
    object-fit: contain !important;
    margin-bottom: 10px;
    margin-top: 0 !important;
}

.icon {
    text-align: center;
}

.icon i {
    font-size: 40px;
    border-radius: 50%;
    color: #fff;
    padding: 10px;
    width: 30%;
    margin-bottom: 10%;
}

.map {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #ddd;
    width: 100%;
}

.social {
    display: flex;
}

.social img {
    margin-right: 10px;
}
