@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Montserrat',sans-serif;
}

body{
background:#f4f6f9;
overflow-x:hidden;
}


/* HEADER AREA */

.container{
max-width:1400px;
margin:auto;
padding:0 20px;
}

.headnav{

background:#fff;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 35px;

position:relative;

/* border-bottom:1px solid #0205FE; */

box-shadow:
0 5px 25px rgba(0,0,0,.06);
}


/* LEFT LOGO */

.logoimg{

width:140px;

display:flex;

justify-content:center;

align-items:center;
}

.logoimg img{

width:100%;
height:auto;
}


/* COLLEGE NAME */

.name{

flex:1;

padding:0 40px;

text-align:center;
}

.name h1{

font-size:28px;

font-weight:800;

color:#001d75;

text-transform:uppercase;

letter-spacing:1px;

margin-bottom:10px;

line-height:1.2;
}

.name p{

font-size:17px;

font-weight:500;

color:#000;

margin-bottom:10px;
}


/* APPROVAL TAG */

.name::after{

content:
"Approved by AICTE | Affiliated to BPUT | Govt. Recognised";

display:block;

font-size:14px;

font-weight:600;

color:#d35f10;

margin-top:8px;
}


/* RIGHT LOGOS */

.approv{

display:flex;

gap:12px;

align-items:center;

justify-content:center;

flex-wrap:wrap;

width:320px;
}

.approv img{

width:68px;

padding:8px;

background:white;

border:1px solid #e5e5e5;

transition:.3s;
}

.approv img:hover{

transform:scale(1.05);

/* border-color:#0205FE; */
}


/* GOLD LINE */

.headnav::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:6px;

background:
linear-gradient(
90deg,
#D15F0D,

);
}



/* TABLET */

@media(max-width:992px){

.headnav{

flex-direction:column;

padding:30px 20px;

text-align:center;
}

.logoimg{

width:120px;

margin-bottom:20px;
}

.name{

padding:0;
}

.name h1{

font-size:30px;
}

.approv{

margin-top:25px;

width:100%;
}

}


/* MOBILE */

@media(max-width:576px){

.name h1{

font-size:22px;
}

.name p{

font-size:14px;
}

.name::after{

font-size:12px;
}

.approv img{

width:55px;
}

.logoimg{

width:90px;
}

}
/* HERO */

.hero{

position:relative;

width:100%;

height:100vh;

overflow:hidden;
}


/* VIDEO */

.video-container{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

overflow:hidden;

z-index:-2;
}

.video-container iframe{

position:absolute;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

width:100vw;

height:56.25vw;

min-width:177.77vh;

min-height:100vh;

pointer-events:none;
}


/* OVERLAY */

.overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:
linear-gradient(
135deg,
rgba(3,15,35,.88),
rgba(0,0,0,.55));

z-index:-1;
}



/* CONTENT */

.hero-content{

position:absolute;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

width:90%;

max-width:1000px;

text-align:center;

color:white;
}


/* TAG */

.hero-tag{

display:inline-block;

padding:12px 28px;

background:
rgba(255,255,255,.1);

backdrop-filter:
blur(15px);

border-radius:50px;

margin-bottom:30px;

font-size:14px;

letter-spacing:2px;

animation:
float 3s infinite;
}


/* TITLE */

.hero-content h1{

font-size:75px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

color:white;

text-transform:capitalize;

text-shadow:
0 10px 30px
rgba(0,0,0,.35);

animation:
fadeTitle 1.5s ease;
}


@keyframes fadeTitle{

from{

opacity:0;

transform:
translateY(50px);

}

to{

opacity:1;

transform:
translateY(0);

}

}


/* TYPEWRITER */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;
}

.apply-btn{

padding:18px 38px;

background:
linear-gradient(
45deg,
#f4b400,
#ffcc33);

color:#081c35;

font-weight:700;

text-decoration:none;

border-radius:10px;
}

.explore-btn{

padding:18px 38px;

border:2px solid white;

color:white;

text-decoration:none;

border-radius:10px;
}


/* PARAGRAPH */

.hero-content p{

font-size:20px;

line-height:1.8;

max-width:750px;

margin:auto;

margin-bottom:40px;

opacity:0;

animation:
fadeUp 1.5s ease forwards;

animation-delay:1s;
}


/* BUTTON */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;
}

.apply-btn{

padding:18px 38px;

background:
linear-gradient(
45deg,
#f4b400,
#ffcc33);

color:#081c35;

font-weight:700;

text-decoration:none;

border-radius:10px;

transition:.4s;
}

.apply-btn:hover{

transform:
translateY(-8px);
}


.explore-btn{

padding:18px 38px;

border:2px solid white;

color:white;

text-decoration:none;

border-radius:10px;

transition:.4s;
}

.explore-btn:hover{

background:white;

color:#081c35;
}


/* FLOAT */

@keyframes float{

0%{
transform:
translateY(0);
}

50%{
transform:
translateY(-10px);
}

100%{
transform:
translateY(0);
}

}


/* FADE */

@keyframes fadeUp{

from{

opacity:0;

transform:
translateY(50px);

}

to{

opacity:1;

transform:
translateY(0);
}

}



/* SCROLL */

.scroll-down{

position:absolute;

bottom:30px;

left:50%;

transform:
translateX(-50%);
}

.scroll-down span{

display:block;

width:32px;

height:50px;

border:2px solid white;

border-radius:25px;

position:relative;
}

.scroll-down span::before{

content:"";

position:absolute;

width:6px;

height:6px;

background:white;

border-radius:50%;

left:50%;

transform:
translateX(-50%);

animation:
scroll 1.5s infinite;
}

@keyframes scroll{

0%{
top:8px;
opacity:1;
}

100%{
top:28px;
opacity:0;
}

}



/* TABLET */

@media(max-width:992px){

.hero-content h1{

font-size:52px;
}

.hero-content p{

font-size:18px;
}

}



/* MOBILE */

@media(max-width:768px){

.hero{

height:90vh;
}

.hero-content{

width:95%;
}

.hero-content h1{

font-size:34px;

white-space:normal;

border:none;

width:100%;

animation:none;
}

.hero-content p{

font-size:15px;

line-height:1.7;
}

.hero-buttons{

flex-direction:column;

align-items:center;
}

.apply-btn,
.explore-btn{

width:100%;

max-width:280px;

text-align:center;
}

.hero-tag{

font-size:12px;
}

}
.video-container{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

overflow:hidden;
}

.video-container iframe{

position:absolute;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

width:100vw;

height:56.25vw;

min-width:177.77vh;

min-height:100vh;

pointer-events:none;
}
/* NAVIGATION */

.college-nav{

background:#001d75;

position:sticky;

top:0;

left:0;

width:100%;

z-index:9999;

box-shadow:
0 5px 20px
rgba(0,0,0,.12);

transition:.4s;
}

.main-menu{

display:flex;

justify-content:center;

align-items:center;

list-style:none;

margin:0;

padding:0;
}

.main-menu li{

position:relative;
}

.main-menu li a{

display:block;

padding:22px 28px;

text-decoration:none;

color:white;

font-size:15px;

font-weight:600;

text-transform:uppercase;

transition:.4s;
}

.main-menu li:hover>a{

background:#C89B3C;

color:#fff;
}


/* DROPDOWN */

.submenu{

position:absolute;

top:120%;

left:0;

background:white;

min-width:240px;

padding:10px 0;

list-style:none;

opacity:0;

visibility:hidden;

transform:
translateY(40px);

transition:.45s ease;

box-shadow:
0 10px 30px rgba(0,0,0,.12);

border-top:
4px solid #C89B3C;
}

.submenu li{

width:100%;
}

.submenu li a{

color:#222;

padding:14px 20px;

font-size:14px;

text-transform:none;

background:white;

transform:
translateY(30px);

opacity:0;

transition:.5s;
}

.dropdown-menu-item:hover .submenu{

opacity:1;

visibility:visible;

transform:
translateY(0);
}


/* ANIMATION FROM DOWN */

.dropdown-menu-item:hover .submenu li a{

transform:
translateY(0);

opacity:1;
}

.submenu li a:hover{

background:#0B2C5F;

color:white;

padding-left:28px;
}


/* MOBILE */

@media(max-width:992px){

.main-menu{

flex-direction:column;

align-items:flex-start;
}

.main-menu li{

width:100%;
}

.main-menu li a{

padding:16px 20px;
}

.submenu{

position:static;

opacity:1;

visibility:visible;

display:none;

transform:none;

box-shadow:none;
}

.dropdown-menu-item:hover .submenu{

display:block;
}

}
.sticky-active{

background:
rgba(
11,
44,
95,
.95);

backdrop-filter:
blur(12px);

padding:0;

box-shadow:
0 10px 30px
rgba(0,0,0,.18);
}
/* WELCOME */

.welcome-section{

padding:100px 0;

background:#f8f9fc;
}


/* IMAGE */

.welcome-img{

position:relative;

overflow:hidden;

border-radius:20px;
}

.welcome-img img{

width:100%;

border-radius:20px;

transition:.5s;
}

.welcome-img:hover img{

transform:scale(1.05);
}


/* EXPERIENCE */

.experience-box{

position:absolute;

bottom:30px;

left:30px;

background:#0B2C5F;

padding:25px;

border-radius:15px;

color:white;

text-align:center;

box-shadow:
0 10px 30px
rgba(0,0,0,.15);
}

.experience-box h2{

font-size:42px;

font-weight:800;

margin:0;
}

.experience-box p{

margin:0;

font-size:14px;
}


/* TITLE */

.section-title span{

color:#C89B3C;

font-weight:700;

letter-spacing:2px;
}

.section-title h2{

font-size:42px;

font-weight:800;

color:#0B2C5F;

margin:15px 0 25px;
}

.welcome-section p{

font-size:16px;

line-height:1.9;

color:#666;
}


/* FEATURES */

.welcome-features{

display:flex;

gap:25px;

margin:35px 0;

flex-wrap:wrap;
}

.feature-box{

display:flex;

align-items:center;

gap:18px;

background:white;

padding:20px;

border-radius:12px;

box-shadow:
0 8px 25px
rgba(0,0,0,.06);

flex:1;
}

.feature-box i{

width:65px;

height:65px;

background:#0B2C5F;

color:white;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:24px;
}

.feature-box h4{

font-size:26px;

font-weight:700;

margin:0;

color:#0B2C5F;
}

.feature-box p{

margin:0;
}


/* BUTTON */

.welcome-btn{

display:inline-block;

padding:16px 35px;

background:
linear-gradient(
90deg,
#C89B3C,
#e6bf65);

color:white;

text-decoration:none;

font-weight:600;

border-radius:8px;

transition:.4s;
}

.welcome-btn:hover{

transform:
translateY(-5px);
}



/* MOBILE */

@media(max-width:768px){

.welcome-section{

padding:70px 0;
}

.section-title h2{

font-size:30px;
}

.experience-box{

left:15px;

bottom:15px;

padding:18px;
}

.feature-box{

flex-direction:column;

text-align:center;
}

}
.course-section{

padding:100px 0;

background:#f8f9fb;
}


/* TITLE */

.section-title{

text-align:center;

margin-bottom:50px;
}

.section-title h2{

font-size:52px;

font-weight:800;

color:#08264b;
}

.line{

width:70px;

height:4px;

background:#b7c858;

margin:auto;

margin-top:10px;
}


/* TABS */

.course-tabs{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

margin-bottom:60px;
}

.tab-btn{

padding:14px 40px;

border-radius:40px;

border:1px solid #08264b;

background:white;

font-size:18px;

font-weight:600;

transition:.4s;
}

.tab-btn.active{

background:#08264b;

color:white;

box-shadow:
0 8px 20px
rgba(0,0,0,.12);
}

.tab-btn:hover{

background:#08264b;

color:white;
}


/* CONTENT */

.course-content{

display:none;

animation:
fadeUp .7s;
}

.course-content.active{

display:block;
}


/* CARD */

.course-card{

background:white;

padding:40px;

text-align:center;

border-radius:18px;

box-shadow:
0 10px 30px
rgba(0,0,0,.05);

transition:.4s;
}

.course-card:hover{

transform:
translateY(-10px);

background:#08264b;

color:white;
}

.course-card h4{

font-size:28px;

font-weight:700;

margin-bottom:15px;
}


/* ANIMATION */

@keyframes fadeUp{

from{

opacity:0;

transform:
translateY(30px);

}

to{

opacity:1;

transform:
translateY(0);

}

}


/* MOBILE */

@media(max-width:768px){

.section-title h2{

font-size:34px;
}

.tab-btn{

padding:12px 25px;

font-size:15px;
}

.course-card{

padding:25px;
}

}
/* =========================
GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
overflow-x:hidden;
scroll-behavior:smooth;
}


/* CONTAINER */

.container{
max-width:1320px;
margin:auto;
}


/* HEADER */

.headnav{

display:flex;

align-items:center;

justify-content:space-between;

padding:18px 30px;

background:#fff;

box-shadow:
0 5px 15px rgba(0,0,0,.05);

gap:20px;

flex-wrap:wrap;
}

.logoimg img{
width:110px;
}

.name{
flex:1;
text-align:center;
}

.approv{
display:flex;

gap:10px;
}

.approv img{
width:60px;
}


/* NAVIGATION */

.college-nav{

position:sticky;

top:0;

z-index:9999;

background:#0B2C5F;

margin:0;

padding:0;
}


/* HERO */

.hero{

height:100vh;

padding:0;

margin:0;
}


/* REMOVE LARGE GAP */

.welcome-section{

padding-top:70px;

padding-bottom:70px;

background:#f8f9fb;

margin:0;
}


.course-section{

padding-top:70px;

padding-bottom:70px;

background:#fff;

margin:0;
}


/* TITLES */

.section-title{

margin-bottom:20px;
}

.section-title h2{

margin-bottom:10px;
}


/* COURSE */

.course-tabs{

margin-top:25px;

margin-bottom:35px;
}


/* CARD */

.course-card{

height:100%;
}


/* FEATURES */

.welcome-features{

margin-top:25px;

margin-bottom:25px;
}


/* FOOTER */

footer{

padding-top:20px;

margin:0;
}



/* MOBILE */

@media(max-width:992px){

.hero{

height:90vh;
}

.headnav{

padding:20px;

flex-direction:column;
}

.name{

text-align:center;
}

}


@media(max-width:768px){

.hero{

height:85vh;
}

.welcome-section{

padding-top:50px;

padding-bottom:50px;
}

.course-section{

padding-top:50px;

padding-bottom:50px;
}

.section-title h2{

font-size:32px;
}

.course-tabs{

margin-bottom:25px;
}

}