/* ===================================
   e-GMIT LMS UI SYSTEM
=================================== */

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

body{
font-family:'Roboto', Arial, sans-serif;
background:#f5f7fb;
color:#111827;
line-height:1.5;
}

/* ===================================
   MAIN WIDTH
=================================== */

#region-main-box,
#region-main{
max-width:1400px;
margin:auto;
}

/* ===================================
   GLOBAL SECTION SYSTEM
=================================== */

.section,
.courses-section{
padding:80px 48px;
}

.section-head{
text-align:center;
margin-bottom:52px;
}

.section-label{
display:inline-block;

font-size:12px;
font-weight:700;

letter-spacing:2.5px;

text-transform:uppercase;

color:#7b8494;

margin-bottom:16px;
}

.section-title{
font-size:38px;
font-weight:700;

line-height:1.15;

letter-spacing:-1px;

color:#111827;

margin-bottom:14px;
}

.section-subtitle{
font-size:15px;

line-height:1.8;

color:#6b7280;

max-width:760px;

margin:0 auto;
}

/* ===================================
   NAVBAR
=================================== */

.nav{
height:64px;
background:#fff;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 32px;

border-bottom:2px solid #FFC200;
}

.nav-logo img{
height:34px;
}

.nav-links{
display:flex;
align-items:center;
gap:28px;
}

.nav-links a{
text-decoration:none;

font-size:14px;
font-weight:500;

color:#374151;

padding-bottom:4px;

transition:.2s;
}

.nav-links a:hover{
color:#0057A8;
}

.nav-links a.active{
color:#0057A8;
border-bottom:2px solid #FFC200;
}

.nav-right{
display:flex;
align-items:center;
gap:14px;
}

.login-btn{
background:#0057A8;
color:#fff;

padding:8px 18px;

border-radius:8px;

font-size:13px;
font-weight:600;

text-decoration:none;

transition:.2s;
}

.login-btn:hover{
background:#00478a;
}

/* ===================================
   HERO
=================================== */

.hero{
position:relative;
overflow:hidden;

display:flex;
justify-content:space-between;
align-items:center;
gap:28px;

background:#005BAA;

padding:58px 54px;

min-height:420px;

border-bottom:3px solid #FFC200;
}

.hero-text{
position:relative;
z-index:3;

max-width:620px;
}

.hero-tag{
display:inline-flex;
align-items:center;

background:rgba(255,194,0,.14);

color:#FFC200;

padding:8px 18px;

border-radius:999px;

font-size:12px;
font-weight:700;

letter-spacing:1px;

margin-bottom:22px;
}

.hero h1{
font-size:72px;
line-height:1.04;

font-weight:700;

letter-spacing:-2px;

color:#fff;
}

.hero h1 span{
display:block;
margin-top:6px;

color:#FFC200;
}

.hero p{
margin-top:24px;

font-size:20px;
line-height:1.55;

max-width:600px;

color:rgba(255,255,255,.88);
}

.hero-btns{
display:flex;
gap:16px;

margin-top:34px;
}

.hero-image-wrap{
flex:1;

display:flex;
justify-content:flex-end;
}

.hero-image{
width:100%;
max-width:640px;

aspect-ratio:16/10;

object-fit:cover;

border-radius:42px;

display:block;

transform:rotate(-1deg);

transition:transform .3s ease;
}

.hero-image:hover{
transform:rotate(0deg) scale(1.01);
}

/* ===================================
   BUTTONS
=================================== */

.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;

height:48px;

padding:0 24px;

border-radius:999px;

background:#FFC200;
color:#111827;

font-size:14px;
font-weight:700;

text-decoration:none;

transition:.2s;
}

.btn-primary:hover{
transform:translateY(-1px);
}

.btn-outline{
display:inline-flex;
align-items:center;
justify-content:center;

height:48px;

padding:0 24px;

border-radius:999px;

border:1px solid rgba(255,255,255,.22);

color:rgba(255,255,255,.82);

font-size:14px;
font-weight:600;

text-decoration:none;

transition:.2s;
}

.btn-outline:hover{
background:rgba(255,255,255,.08);
color:#fff;
}

/* ===================================
   WHY SECTION
=================================== */

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);

gap:22px;

margin-top:26px;
}

.why-card{
background:#fff;

border:1px solid #e5e7eb;

border-radius:18px;

padding:26px;

transition:.3s ease;
}

.why-card:hover{
transform:translateY(-8px);

box-shadow:
0 18px 40px rgba(0,0,0,.08);
}

.why-icon{
width:58px;
height:58px;

border-radius:14px;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;

margin-bottom:16px;
}

.blue{
background:#e8f1ff;
color:#0057A8;
}

.yellow{
background:#fff4d6;
color:#b88600;
}

.green{
background:#e8f8ec;
color:#237a3b;
}

.purple{
background:#f1ebff;
color:#6941c6;
}

.why-card h3{
font-size:18px;
font-weight:700;

margin-bottom:10px;
}

.why-card p{
font-size:14px;
line-height:1.7;

color:#6b7280;
}

/* ===================================
   AUDIENCE
=================================== */

.aud-grid{
display:grid;
grid-template-columns:repeat(3,1fr);

gap:20px;

padding:0 48px 50px;
}

.aud-card{
position:relative;
overflow:hidden;

padding:28px;

border-radius:18px;

min-height:170px;

transition:.3s ease;
}

.aud-card:hover{
transform:translateY(-6px);

box-shadow:
0 18px 40px rgba(0,0,0,.06);
}

.student{
background:#edf4ff;
border:1px solid #bfd4f5;
}

.faculty{
background:#fff6df;
border:1px solid #f2d06b;
}

.industry{
background:#eef8ef;
border:1px solid #9fd0a3;
}

.aud-label{
font-size:12px;
font-weight:700;

letter-spacing:2px;

margin-bottom:14px;
}

.student .aud-label{
color:#0057A8;
}

.faculty .aud-label{
color:#b88600;
}

.industry .aud-label{
color:#2e7d32;
}

.aud-card h3{
font-size:18px;
font-weight:700;

margin-bottom:12px;

line-height:1.4;
}

.aud-card p{
font-size:14px;
line-height:1.8;

color:#555;
}

.aud-dot{
position:absolute;

right:-18px;
bottom:-18px;

width:90px;
height:90px;

border-radius:50%;

opacity:.15;
}

.student .aud-dot{
background:#0057A8;
}

.faculty .aud-dot{
background:#FFC200;
}

.industry .aud-dot{
background:#2e7d32;
}

/* ===================================
   COURSES
=================================== */

.courses-header{
display:flex;
align-items:flex-end;
justify-content:space-between;

margin-bottom:42px;
}

.courses-header-left{
display:flex;
flex-direction:column;
}

.courses-header .section-label{
margin-bottom:14px;
}

.courses-header .section-title{
margin-bottom:0;
}

.view-all{
border:1px solid #0057A8;

color:#0057A8;

padding:10px 18px;

border-radius:999px;

font-size:13px;
font-weight:600;

text-decoration:none;

transition:.25s ease;
}

.view-all:hover{
background:#0057A8;
color:#fff;

transform:translateY(-2px);
}

.course-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));

gap:24px;
}

.course-card{
background:#fff;

border-radius:16px !important;

overflow:hidden;

border:1px solid #e5e7eb !important;

box-shadow:
0 4px 14px rgba(0,0,0,.05);

transition:.25s;

display:flex;
flex-direction:column;

min-height:360px;
}

.course-card:hover{
transform:translateY(-4px);

box-shadow:
0 12px 26px rgba(0,0,0,.08);
}

/* ===================================
   SUPPORTERS
=================================== */

.supporters{
position:relative;
overflow:hidden;

padding:80px 20px;

text-align:center;

background:#fff;

border-top:1px solid #eef1f4;
}

.supporters::before{
content:'';

position:absolute;

top:-120px;
right:-120px;

width:320px;
height:320px;

border-radius:50%;

background:
rgba(0,87,168,.03);
}

.support-topline{
width:120px;
height:1px;

background:#d7dce5;

margin:0 auto 26px;
}

.support-title{
font-size:12px;
font-weight:700;

letter-spacing:2.5px;

text-transform:lowercase;

color:#7b8494;

margin-bottom:42px;
}

.support-grid.logos{
display:flex;

align-items:center;
justify-content:center;

gap:70px;

flex-wrap:wrap;

position:relative;
z-index:2;
}

.support-logo-item{
position:relative;

overflow:hidden;

width:260px;
height:120px;

background:#fff;

border-radius:18px;

display:flex;
align-items:center;
justify-content:center;

padding:24px;

text-decoration:none;

border:1px solid #f1f3f6;

box-shadow:
0 4px 18px rgba(0,0,0,.04);

transition:
transform .3s ease,
box-shadow .3s ease,
border-color .3s ease;
}

.support-logo-item::after{
content:'';

position:absolute;

inset:0;

background:
linear-gradient(
135deg,
rgba(0,87,168,.04),
transparent 60%
);

opacity:0;

transition:opacity .3s ease;
}

.support-logo-item img{
max-width:100%;
max-height:70px;

object-fit:contain;

display:block;

transition:
transform .3s ease,
opacity .3s ease;
}

.support-logo-item:hover{
transform:
translateY(-8px)
scale(1.02);

box-shadow:
0 18px 40px rgba(0,0,0,.10);

border-color:
rgba(0,87,168,.12);
}

.support-logo-item:hover::after{
opacity:1;
}

.support-logo-item:hover img{
transform:scale(1.03);
}


/* ===================================
   TABLET
=================================== */

@media(max-width:1100px){

.why-grid,
.aud-grid{
grid-template-columns:1fr;
}

.course-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}

.footer-container{
flex-direction:column;
gap:40px;
padding:0 24px;
}

.footer-links-wrap{
flex-direction:column;
gap:32px;
}

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:1000px){

.nav{
padding:0 18px;
}

.nav-links{
display:none;
}

.hero{
padding:56px 24px;

flex-direction:column;

text-align:center;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:15px;
}

.hero-image-wrap{
width:100%;
justify-content:center;
}

.hero-image{
max-width:100%;
border-radius:24px;
}

.section,
.courses-section{
padding:60px 24px;
}

.support-grid.logos{
gap:28px;
}

.support-logo-item{
width:100%;
max-width:300px;

height:100px;
padding:18px;
}

.support-logo-item img{
max-height:54px;
}

}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:700px){

.course-grid{
grid-template-columns:1fr !important;
}

.hero h1{
font-size:32px;
}

.courses-header{
flex-direction:column;
align-items:flex-start;

gap:18px;
}

.supporters{
padding:50px 20px 60px;
}

.support-grid.logos{
flex-direction:column;
gap:20px;
}

.support-logo-item{
max-width:100%;
height:90px;
}

.support-logo-item img{
max-height:48px;
}

}
