
/*=============================
Splash Screen
==============================*/

/*==========================
Splash Screen
==========================*/

#splash-screen{
    position:fixed;
    inset:0;
    width:100%;
    height:100vh;
    background:linear-gradient(135deg,#07192f,#0b4f8a,#0d74d1);
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

/* Background */

.splash-bg{
    position:absolute;
    inset:0;
}

.splash-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    animation:splashFloat 14s linear infinite;
}

.splash-circle:nth-child(1){
    width:180px;
    height:180px;
    left:5%;
    bottom:-100px;
}

.splash-circle:nth-child(2){
    width:120px;
    height:120px;
    right:15%;
    bottom:-80px;
    animation-duration:18s;
}

.splash-circle:nth-child(3){
    width:80px;
    height:80px;
    left:45%;
    bottom:-60px;
}

.splash-circle:nth-child(4){
    width:250px;
    height:250px;
    right:40%;
    bottom:-150px;
}

.splash-circle:nth-child(5){
    width:100px;
    height:100px;
    right:5%;
    bottom:-80px;
}

@keyframes splashFloat{

0%{
transform:translateY(0) rotate(0deg);
opacity:0;
}

30%{
opacity:1;
}

100%{
transform:translateY(-120vh) rotate(360deg);
opacity:0;
}

}

/* Content */

.splash-container{

position:relative;
z-index:2;
text-align:center;
padding:20px;
width:100%;
max-width:900px;

}

.splash-logo{

width:100px;
max-width:45%;
animation:splashLogo 1.4s ease;

}

@keyframes splashLogo{

0%{
opacity:0;
transform:scale(.4);
}

100%{
opacity:1;
transform:scale(1);
}

}

.splash-welcome{

color:#fff;
font-size:18px;
margin-top:25px;
font-weight:400;
letter-spacing:3px;
animation:splashFade 2s;

}

.splash-title{

margin-top:10px;
color:#fff;
font-size:22px;
font-weight:800;
line-height:1.3;
animation:splashFade 2.5s;

}

.splash-subtitle{

margin-top:15px;
font-size:16px;
color:#FFD54F;
letter-spacing:2px;
animation:splashFade 3s;

}

@keyframes splashFade{

0%{
opacity:0;
transform:translateY(30px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.splash-loader{

width:340px;
max-width:90%;
height:10px;
background:rgba(255,255,255,.25);
margin:40px auto 0;
border-radius:20px;
overflow:hidden;

}

.splash-loader-bar{

height:100%;
width:0;
background:#FFD54F;
border-radius:20px;
animation:splashLoad 4s linear forwards;

}

@keyframes splashLoad{

100%{
width:100%;
}

}

/*==================
Tablet
==================*/

@media(max-width:992px){

.splash-title{
font-size:38px;
}

.splash-subtitle{
font-size:20px;
}

.splash-welcome{
font-size:22px;
}

}

/*==================
Mobile
==================*/

@media(max-width:768px){

.splash-logo{
width:120px;
}

.splash-title{
font-size:12px;
}

.splash-subtitle{
font-size:10px;
letter-spacing:1px;
}

.splash-welcome{
font-size:12px;
letter-spacing:2px;
}

.splash-loader{
height:8px;
}

}

/*==================
Small Mobile
==================*/

@media(max-width:480px){

.splash-logo{
width:95px;
}

.splash-title{
font-size:12px;
}

.splash-subtitle{
font-size:10px;
}

.splash-welcome{
font-size:12px;
}

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 3px 20px rgba(0,0,0,0.1);
}

/* Top Header */
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
    background:#fff;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:15px;
    position: relative;
    left: 266px;
}

.logo-box img{
    width:95px;
}

.college-name h2{
    color:#003366;
    font-size:24px;
    line-height:1.3;
    text-align: center;
}

.college-name p{
    color:#666;
    font-size:13px;
    margin-top:5px;
    text-align: center;
}

.menu-btn{
    display:none;
    font-size:30px;
    color:#003366;
    cursor:pointer;
}

/* Navbar */
.navbar{
    background:#003366;
}

.nav-links{
    display:flex;
    justify-content:center;
    align-items:center;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    display:block;
    padding:18px 20px;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.4s;
}

.nav-links li a:hover{
    background:#ff9800;
}

/* Dropdown */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    background:#fff;
    list-style:none;
    display:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.dropdown-menu li a{
    color:#333;
    padding:14px 18px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

/* Mobile */
@media(max-width:768px){

    .top-header{
        padding:10px;
    }

    .logo-box{
        width:91%;
        gap:2px;
        position: relative;
        left: 9px;
    }

    .logo-box img{
        width:70px;
    }

    .college-name h2{
        font-size:13px;
        line-height:1.4;
    }

    .college-name p{
        font-size:8px;
    }

    .menu-btn{
        display:block;
        background-color: #7288f7;
    }

    

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        background:#003366;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        border-top:1px solid rgba(255,255,255,0.1);
    }

    .nav-links li a{
        padding:15px;
        font-size:15px;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        display:none;
        background:#0b4b8c;
        box-shadow:none;
    }

    .dropdown-menu li a{
        color:#fff;
        padding-left:35px;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }
}

/* Extra Small Mobile */
@media(max-width:480px){

    .logo-box img{
        width:64px;
    }

    .college-name h2{
        font-size:12px;
        font-weight: bolder;
    }

    .college-name p{
        font-size:7px;
        font-weight: bolder;
    }

    .menu-btn{
        font-size:25px;
    }
}



.announcement-bar{
    width:100%;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#ffffff;
    color:#fff;
    min-height:21px;
}

.announcement-title{
    background:#f8c80d;
    color:#000;
    font-weight:700;
    padding:9px 20px;
    white-space:nowrap;
    flex-shrink:0;
}

.announcement-wrapper{
    flex:1;
    overflow:hidden;
    position:relative;
}

.announcement-marquee{
    display:flex;
    width:max-content;
    animation:marquee 25s linear infinite;
}

.announcement-marquee a{
    color:#000000;
    text-decoration:none;
    padding:0 50px;
    white-space:nowrap;
    font-size:18px;
    font-weight:650;
}

.announcement-marquee a:hover{
    color:#fbbf24;
}

.announcement-wrapper:hover .announcement-marquee{
    animation-play-state:paused;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px) {
.Mobile-header {
    display: block;
    .top-bar {
        display: none;
    }
}

}
.mobile-logo {
display:block;
position: relative;
background: linear-gradient(135deg,#002147,#0056b3);
color: #eee;
height: 90px;
}
.mobile-logo img {
position: relative;
width: 78px;
height: 65px;
left: -119px;
top: 6px;

}

.mobile-logo h1{
font-size: 48px;
position: relative;
top: -70px;
left: 16px;
}

.mobile-logo p{
position: relative;
top: -106px;
left: 33px;
font-size: smaller;
font-weight: bolder

}

.mobile-logo h2{

font-size: 7px;
top: -103px;
left: 31px;

position: relative;


}


@media(max-width:768px){

    .announcement-title{
        padding:2px 1px;
        font-size:13px;
        display: none;
    }

    .announcement-marquee a{
        font-size:13px;
        padding:0 30px;
    }
}

.profile-section{
    width:100%;
    padding:40px 5%;
    background:#f5f7fc;
}

.profile-container{
    max-width:1200px;
    margin:auto;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    display:grid;
    grid-template-columns:0.9fr 2.5fr;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:0.5s;
    height: 640px;
}

.profile-container:hover{
    transform:translateY(-10px);
}

.profile-image{
    position:relative;
    overflow:hidden;
    top: 72px;
}

.profile-image img{
    width:100%;
    height:101%;
    object-fit:cover;
    transition:0.6s;
    border: solid 12px;
  color: chocolate;
  width: 308px;
  height: 420px;
}

.profile-container:hover .profile-image img{
    transform:scale(1.08);
}

.profile-content{
    padding:26px;
    margin: 17px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.tag{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
    width:fit-content;
}

.profile-content h2{
    color:#0d3b66;
    font-size:28px;
    margin-bottom:15px;
}

.profile-content h4{
    color:#ff9800;
    margin-bottom:20px;
    font-size:20px;
}

.profile-content p{
    color:#555;
    font-size:12px;
    line-height:1.8;
    margin-bottom:20px;
}

.read-btn{
    width:fit-content;
    text-decoration:none;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:0.4s;
    font-weight:600;
}

.read-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* Tablet */
@media(max-width:992px){
    .profile-container{
        grid-template-columns:1fr;
        height: 1440px;
    }
.tag{
    position: relative;
    top: -378px;
}
    .profile-image{
        height:400px;
    }

    .profile-content{
        padding:35px;
    }
}
.profile-image img{
    position: relative;
    height: 297px;
  left: 40px;
}

/* Mobile */
@media(max-width:768px){

    .profile-section{
        padding:0px 20px;
    }

    .profile-image{
        height:314px;
        position: relative;
        top: 48px;
align-content: center;
left: -29px;
margin: 20px;
    }

    .profile-image img{
height: 355px;




    }
    .profile-content h2{
        font-size:19px;
        position: relative;
    top: -62px;
    }

    .profile-content h4{
        font-size:12px;
        position: relative;
    top: -63px;
    }

    .profile-content p{
        font-size:15px;
    }

    .read-btn{
        width:100%;
        text-align:center;
    }
}

/* about college */

.about-section{
    padding:40px 8%;
    background:#f8fbff;
}

.about-container{
    max-width:1200px;
    margin:aut-34px;
    display:grid;
    grid-template-columns:1.5fr 2fr;
    gap:28px;
    align-items:center;
}

/* Image */

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    top: 33px;
  height: 339px;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:0.8s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.experience-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#ff9800;
    color:#fff;
    padding:20px 30px;
    border-radius:20px;
    animation:float 3s infinite;
}

.experience-box h2{
    font-size:35px;
}

.experience-box p{
    font-size:16px;
}

/* Content */

.tag{
    background:#ff9800;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:20px;
}

.about-content h2{
    font-size:22px;
    color:#0d3b66;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:7px;
    font-size:12px;
    text-align: justify;
}

/* Counter Boxes */

.about-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:35px 0;
}

.box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.4s;
}

.box:hover{
    transform:translateY(-10px);
}

.box h3{
    font-size:35px;
    color:#ff9800;
}

.box span{
    color:#666;
}

/* Button */

.about-btn{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* Animation */

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/* Responsive */

@media(max-width:992px){

    .about-container{
        grid-template-columns:1fr;
        bottom: -37px;
        position: relative;
    }

    .about-content{
        text-align:center;
        height: 646px;
    }
/* 
    .experience-box{
        left:20px;
        bottom:20px;
    } */
}

@media(max-width:768px){

    .about-section{
        padding:0px 20px;
        position: relative;
        top: -38px;
    }

    .about-content h2{
        font-size:15px;
        position: relative;
        top: -160px;
    display: none;
    }
    
     .about-content p{
        font-size:12px;
        position: relative;
        top: -119px;
    }

    .about-boxes{
        grid-template-columns:1fr;
    }

    .box h3{
        font-size:28px;
    }

    .experience-box{
        padding:15px 20px;
    }

    .experience-box h2{
        font-size:28px;
    }
}


/* vision mission goal */

.vmg-section{
    padding:40px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0d3b66;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.vmg-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.vmg-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.5s;
    position:relative;
    overflow:hidden;
    opacity:2;
    transform:translateY(80px);
}

.vmg-card.show{
    opacity:1;
    transform:translateY(0);
}

.vmg-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff9800,#ff5722);
    transition:0.5s;
}

.vmg-card:hover::before{
    left:0;
}

.vmg-card:hover{
    transform:translateY(-12px);
}

.icon{
    width:90px;
    height:90px;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    font-size:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    transition:0.5s;
}

.vmg-card:hover .icon{
    transform:rotateY(360deg);
}

.vmg-card h3{
    font-size:28px;
    color:#0d3b66;
    margin-bottom:20px;
}

.vmg-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* Mobile */
@media(max-width:768px){

    .vmg-section{
        padding:60px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:16px;
    }

    .vmg-card{
        padding:30px 25px;
    }

    .icon{
        width:75px;
        height:75px;
        font-size:32px;
    }

    .vmg-card h3{
        font-size:24px;
    }
}

/* WHY CHOOS US */


.why-section{
    padding:80px 8%;
    background:linear-gradient(135deg,#f8f9ff,#eef5ff);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#0d2f5f;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff6a00,#ffcc00);
}

.why-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.icon{
    width:90px;
    height:90px;
    margin:auto;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    color:#fff;
    margin-bottom:20px;
    transition:0.5s;
}

.why-card:hover .icon{
    transform:rotateY(360deg);
}

.why-card h3{
    color:#0d2f5f;
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){
    .section-title h2{
        font-size:30px;
    }
}


/* PLACEMENT REQUIRTWE */

/* Main Container */
.info-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    background:rgba(8, 9, 79);
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* Left Side Images */
.image-box{
    width:21%;
    height:311px;
    position:relative;
    overflow:hidden;
    background:#2f21b4;
    margin: 50px;
}

.image-box img{
    position:absolute;
    width:104%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.1);
    animation:slider 15s infinite;
}

.image-box img:nth-child(1){
    animation-delay:0s;
}

.image-box img:nth-child(2){
    animation-delay:5s;
}

.image-box img:nth-child(3){
    animation-delay:10s;
}

@keyframes slider{
    0%{
        opacity:0;
        transform:translateX(100%) scale(1.1);
    }
    10%,30%{
        opacity:1;
        transform:translateX(0) scale(1);
    }
    40%,100%{
        opacity:0;
        transform:translateX(-100%) scale(1.1);
    }
}

/* Right Side Content */
.content-box{
    width:65%;
    padding:26px;
}

.content-box h2{
    font-size:42px;
    color:#e3e6e9;
    line-height:1.3;
    margin-bottom:20px;
}

.content-box p{
    font-size:18px;
    color:#f6f3f3;
    line-height:1.8;
    margin-bottom:30px;
}

/* Animated Marquee */
.marquee{
    background:linear-gradient(90deg,#ff6b00,#ff9800);
    color:#fff;
    border-radius:50px;
    padding:14px 0;
    overflow:hidden;
    white-space:nowrap;
}

.marquee span{
    display:inline-block;
    padding-left:100%;
    animation:marquee 18s linear infinite;
    font-weight:600;
    font-size:17px;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

/* Button */
.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:#002147;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;
}

.btn:hover{
    background:#ff9800;
    transform:translateY(-5px);
}

/* Mobile */
@media(max-width:768px){

    .info-container{
        flex-direction:row;
        margin: 8px;
    }

    .image-box,
    .content-box{
        width:100%;
    }

    .image-box{
        height: 159px;
    position: relative;
    left: -22px;
    padding: 0px;
    margin: 24px;
    }

    /* .ttag{
        position: relative;
       
    } */

    .content-box{
        text-align:center;
        text-align: center;
    margin: -43px;
    width: 473px;
    left: -28px;
    position: relative;
    top: 17px;
    }

    .content-box h2{
        font-size:12px;
    }

    .content-box p{
        font-size:11px;
    }
}

/* Main Container */
.placement-box{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:rgba(255,255,255,0.95);
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    min-height:350px;
}

/* photo Slider */



.photo-slider{
    width:100%;
    height:80vh;
    position:relative;
    overflow:hidden;
    border: radius 0%;
}

.photo{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease-in-out;
}

.photo.active{
    opacity:1;
}

.photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.photo::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.photo-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    z-index:2;
}

.photo-content h1{
    font-size:55px;
    margin-bottom:20px;
}

.photo-content p{
    font-size:22px;
    margin-bottom:30px;
}

.photo-btn{
    display:inline-block;
    padding:14px 35px;
    background:#ff9800;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
}

.photo-btn:hover{
    background:#fff;
    color:#ff9800;
}

/* Buttons */
.photo-prev,
.photo-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    color:#fff;
    font-size:25px;
    cursor:pointer;
    z-index:5;
}

.photo-prev{
    left:20px;
}

.photo-next{
    right:20px;
}

.photo-prev:hover,
.photo-next:hover{
    background:#ff9800;
}

/* Dots */
.photo-dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:5;
}

.photo-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
}

.photo-dot.active{
    background:#ff9800;
}

/* Tablet */
@media(max-width:768px){
    .photo-slider{
        height:41vh;
        border-radius:0px;
        position: relative;
    }

    .photo-content h1{
        font-size:30px;
    }

    .photo-content p{
        font-size:16px;
    }
}

/* Mobile */
@media(max-width:480px){
    .photo-slider{
        height:45vh;
        border-radius:0px;
    }

    .photo-content h1{
        font-size:22px;
        line-height:1.4;
    }

    .photo-content p{
        font-size:14px;
    }

    .photo-btn{
        padding:10px 10px;
        font-size:9px;
    }

    .photo-prev,
    .photo-next{
        width:29px;
        height:30px;
        font-size:8px;
    }
}


/* <!-- Our Recruiters & Partners  */
.recruiters{
    padding:0px 0%;
    background:#fff;
    overflow:hidden;
    color: #000;
    position: relative;
    top: 34px;
}

.section-title{
    text-align:center;
    position: relative;
    top: -25;
}

.section-title h2{
    font-size:40px;
    color:#002147;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
    top: 12px;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:40px;
    width:calc(250px * 16);
    animation:scroll 25s linear infinite;
}

.logo-track img{
    width:180px;
    height:90px;
    object-fit:contain;
    background:#fff;
    padding:15px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.4s;
}

.logo-track img:hover{
    transform:scale(1.1);
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-220px * 8));
    }
}

/* Tablet */
@media(max-width:992px){

.logo-track img{
    width:150px;
    height:80px;
}
}

/* Mobile */
@media(max-width:768px){

.section-title h2{
    font-size:8px;
}

.logo-track{
    gap:2px;
}

.logo-track img{
    width:120px;
    height:70px;
    padding:10px;
}
}

.footer{
    background:linear-gradient(135deg,#001f3f,#003366);
    color:#fff;
    padding:20px 2% 0px;
    position: relative;
    bottom: -60px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h3{
    margin:20px 0;
    color:#ffcc00;
    text-align: left;
}

.footer-logo{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    padding:5px;
    box-shadow:0 10px 20px rgba(0,0,0,.3);
    position: relative;
    left: 105px;
}

.footer-box p,
.footer-box li{
    color:#ddd;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.4s;
}

.footer-box ul li a:hover{
    color:#ffcc00;
    padding-left:10px;
}

/* Gallery */
.footer-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.footer-gallery img{
    width:100%;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    transition:.5s;
}

.footer-gallery img:hover{
    transform:scale(1.1);
}

/* Building Image */
.footer-building{
    width:100%;
    margin-top:20px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.3);
}

/* Social Icons */
.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:45px;
    height:45px;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    transition:.5s;
}

.social-icons a:hover{
    background:#ff9800;
    transform:translateY(-5px) rotate(360deg);
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:40px;
    padding-top:20px;
}

/* Mobile */
@media(max-width:768px){
    .footer{
        /* text-align:center; */
        padding:50px 20px;
    }

    .footer-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-logo{
        margin:auto;
    }
}


/* chairman education director */

.chairman-section{
    padding:80px 5%;
    background:linear-gradient(135deg,#f5f9ff,#ffffff);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#002147;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#f7941d;
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
}

.chairman-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}

.chairman-image{
    flex:1;
    text-align:center;
    
}

.chairman-image img{
    width:100%;
    max-width:350px;
    border-radius:20px;
    border:6px solid #f7941d;
    transition:.4s;
    
}

.chairman-image img:hover{
    transform:scale(1.03);
}

.chairman-content{
    flex:2;
}

.chairman-content h3{
    color:#002147;
    font-size:32px;
    margin-bottom:10px;
}

.designation{
    color:#f7941d;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.chairman-content p{
    color:#555;
    line-height:1.9;
    font-size:12px;
    text-align:justify;
}

.read-more{
    display:inline-block;
    margin-top:25px;
    padding:12px 30px;
    background:#002147;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.read-more:hover{
    background:#f7941d;
}

/* Mobile Responsive */

@media(max-width:991px){

.chairman-container{
    flex-direction:column;
    text-align:center;
}

.chairman-image img{
    position: relative;
    height: 261px;
}
.designation{
    font-size: 12px;
}

.chairman-content p{
    text-align:justify;
}

.section-title h2{
    font-size:32px;
}

.chairman-content h3{
    font-size:18px;
}

}

@media(max-width:576px){

.chairman-section{
    padding:60px 20px;
}

.chairman-container{
    padding:25px;
}

.section-title h2{
    font-size:28px;
}

.chairman-content h3{
    font-size:18px;
}

.chairman-content p{
    font-size:10px;
}

}


/* faculty */


.faculty-section{
    padding:80px 20px;
    background:#f5f7fb;
    font-family:'Poppins',sans-serif;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#0d3b66;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

.faculty-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.faculty-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    overflow:hidden;
}

.faculty-card:hover{
    transform:translateY(-10px);
}

.faculty-card img{
    width:250px;
    height:300px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #007bff;
    margin-bottom:20px;
}

.faculty-card h3{
    color:#0d3b66;
    margin-bottom:10px;
    font-size:22px;
}

.specialization{
    display:inline-block;
    background:linear-gradient(135deg,#007bff,#00c6ff);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.details{
    text-align:left;
}

.details p{
    color:#555;
    line-height:1.7;
    margin-bottom:12px;
}

.details strong{
    color:#0d3b66;
}

/* Mobile Responsive */

@media(max-width:768px){

    .section-title h2{
        font-size:30px;
    }

    .faculty-card{
        padding:20px;
    }

    .faculty-card img{
        width:156px;
        height:200px;
    }

    .faculty-card h3{
        font-size:20px;
    }
}


/* director message */

.message-section{
    padding:80px 20px;
    background:linear-gradient(135deg,#f4f7fb,#e8f0ff);
}

.container{
    max-width:1100px;
    margin:auto;
}

.message-card{
    display:flex;
    align-items:center;
    gap:40px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s;
}

.message-card:hover{
    transform:translateY(-5px);
}

.message-img{
    flex:1;
    text-align:center;
}

.message-img img{
    width:100%;
    max-width:300px;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    border:5px solid #003366;
}

.message-content{
    flex:2;
}

.message-content h2{
    font-size:32px;
    color:#003366;
    margin-bottom:15px;
}

.message-content p{
    font-size:12px;
    line-height:1.8;
    color:#050000;
    margin-bottom:15px;
    text-align:justify;
}

.message-content h4{
    margin-top:20px;
    color:#ff9900;
    font-size:20px;
}

/* Responsive */
@media(max-width:768px){
.message-section{
    position: relative;
}
    .message-section
    .container{
        position: relative;
        display: contents;
    }
    .message-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .message-content h2{
        font-size:24px;
    }

    .message-content p{
        font-size:15px;
    }

    .message-img img{
        height:260px;
    }
}

/* srss trust */



/*==========================
   Trust Profile
===========================*/

.ttrust-profile{
    padding:80px 0;
    background:#f8fafc;
}

.coontainer{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.sectionn-title{
    text-align:center;
    margin-bottom:50px;
}

.sectionn-title h2{
    font-size:34px;
    color:#8b0000;
    font-weight:700;
    margin-bottom:15px;
}

.underline{
    width:80px;
    height:4px;
    background:#f4b400;
    margin:auto;
    border-radius:20px;
}

/* Layout */

.profile-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

/* Image */

.profile-image{
    flex:1;
}

.profile-image img{
    width:83%;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
    transition:.4s;
}

.profile-image img:hover{
    transform:scale(1.03);
}

/* Content */

.profile-content{
    flex:1.2;
}

.profile-content h3{
    color:#8b0000;
    font-size:18px;
    margin-bottom:20px;
}

.profile-content p{
    font-size:12px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.profile-content strong{
    color:#b22222;
}

/* Button */

.profile-btn{
    display:inline-block;
    margin-top:15px;
    padding:13px 30px;
    background:#8b0000;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.profile-btn:hover{
    background:#f4b400;
    color:#222;
}

/* Responsive */

@media(max-width:992px){

    .profile-wrapper{
        flex-direction:column;
    }

    .profile-image,
    .profile-content{
        width:100%;
    }

    .profile-content h3{
        font-size:26px;
    }
}

@media(max-width:768px){

    .trust-profile{
        padding:60px 0;
    }

    .sectionn-title h2{
        font-size:28px;
    }

    .profile-content h3{
        font-size:24px;
    }

    .profile-content p{
        font-size:12px;
        position: relative;
        top: -75px;
    }
}
/* commeettee */

/* Main Container */

.containerr{
    max-width:1200px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Header */

.headerr{
    background:linear-gradient(135deg,#002147,#004aad);
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.headerr h1{
    font-size:40px;
    font-weight:700;
}

.headerr p{
    margin-top:10px;
    font-size:18px;
}

/* Content */

.contentt{
    padding:40px;
}

.contentt p{
    margin-bottom:20px;
    text-align:justify;
}

/* Section Title */

.section-titlee{
    margin-top:40px;
    margin-bottom:20px;
    font-size:28px;
    color:#002147;
    position:relative;
    padding-bottom:10px;
}

.section-titlee::after{
    content:'';
    width:80px;
    height:4px;
    background:#004aad;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

/* Table */

.table-responsive{
    width:100%;
    overflow-x:auto;
    margin-bottom:40px;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:750px;
}

table th{
    background:#002147;
    color:#fff;
    padding:15px;
    text-align:left;
    font-size:15px;
}

table td{
    padding:14px;
    border-bottom:1px solid #ddd;
    font-size:15px;
}

table tr:nth-child(even){
    background:#f5f8ff;
}

table tr:hover{
    background:#eaf2ff;
    transition:0.3s;
}

/* Info Box */

.info-box{
    background:#f5f8ff;
    border-left:5px solid #004aad;
    padding:20px;
    border-radius:10px;
    margin-bottom:30px;
}

/* Responsive */

@media(max-width:768px){

    .table-responsive{

        position: relative;
    }
.containerr{
    position: relative;
}

    .headerr h1{
        font-size:28px;
    }

    .headerr p{
        font-size:15px;
    }

    .contentt{
        padding:20px;
    }

    .section-titlee{
        font-size:22px;
    }

    table th,
    table td{
        padding:10px;
        font-size:13px;
    }

}

/* mms programe */
/*==========================
      ABOUT MMS SECTION
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.about-mms{
    width:100%;
    padding:70px 8%;
    background:linear-gradient(135deg,#eef7ff,#ffffff,#f3f8ff);
}

/*==========================
        HEADER
==========================*/

.mms-header{
    text-align:center;
    margin-bottom:60px;
}

.mms-header h1{
    font-size:42px;
    color:#003366;
    font-weight:700;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.mms-header h1::after{
    content:"";
    width:120px;
    height:5px;
    background:linear-gradient(to right,#ff9800,#ff5722);
    display:block;
    margin:15px auto;
    border-radius:20px;
}

.mms-header p{
    max-width:900px;
    margin:auto;
    font-size:20px;
    color:#555;
    line-height:1.8;
}

/*==========================
        CARDS
==========================*/

.mms-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    margin-bottom:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    border-left:8px solid #0d6efd;
    position:relative;
    overflow:hidden;
}

.mms-card::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(13,110,253,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.mms-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.mms-card h2{
    font-size:30px;
    color:#003366;
    margin-bottom:20px;
    position:relative;
}

.mms-card h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#ff9800;
    display:block;
    margin-top:8px;
    border-radius:20px;
}

.mms-card h3{
    margin-top:25px;
    margin-bottom:15px;
    color:#0d6efd;
    font-size:24px;
}

.mms-card p{
    font-size:17px;
    color:#555;
    text-align:justify;
    line-height:1.9;
    margin-bottom:18px;
}

.mms-card strong{
    color:#003366;
}

/*==========================
        LIST
==========================*/

.mms-card ul{
    list-style:none;
    padding-left:0;
    margin:20px 0;
}

.mms-card ul li{
    position:relative;
    padding:12px 15px 12px 45px;
    margin-bottom:12px;
    background:#f7fbff;
    border-radius:10px;
    transition:.3s;
    color:#444;
    font-size:17px;
}

.mms-card ul li::before{
    content:"✔";
    position:absolute;
    left:15px;
    top:10px;
    width:22px;
    height:22px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
}

.mms-card ul li:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateX(8px);
}

.mms-card ul li:hover::before{
    background:#fff;
    color:#0d6efd;
}

/*==========================
      TWO COLUMN LIST
==========================*/

.mms-card ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/*==========================
        ANIMATION
==========================*/

.mms-card{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/*==========================
        SCROLLBAR
==========================*/

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-thumb{
background:#0d6efd;
border-radius:20px;
}

/*==========================
        RESPONSIVE
==========================*/

@media(max-width:992px){

.about-mms{
padding:60px 5%;
}

.mms-header h1{
font-size:34px;
}

.mms-card{
padding:30px;
}

.mms-card h2{
font-size:26px;
}

.mms-card ul{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.about-mms{
padding:50px 20px;
}

.mms-header h1{
font-size:28px;
}

.mms-header p{
font-size:17px;
}

.mms-card{
padding:25px;
border-left:5px solid #0d6efd;
}

.mms-card h2{
font-size:24px;
}

.mms-card h3{
font-size:20px;
}

.mms-card p{
font-size:16px;
}

.mms-card ul li{
font-size:15px;
padding:10px 10px 10px 40px;
}

}

@media(max-width:480px){

.mms-header h1{
font-size:24px;
line-height:1.4;
}

.mms-header p{
font-size:15px;
}

.mms-card{
padding:20px;
border-radius:15px;
}

.mms-card h2{
font-size:22px;
}

.mms-card h3{
font-size:18px;
}

.mms-card p{
font-size:15px;
}

.mms-card ul li{
font-size:14px;
padding:10px 10px 10px 38px;
}

}
/* sllybus */
.pdf-containerw{
    width:100%;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    text-align:center;
}

.pdf-containerw h2{
    margin-bottom:20px;
    color:#0f2027;
}

.buttons{
    margin-bottom:20px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.buttons button{
    padding:12px 25px;
    border:none;
    border-radius:50px;
    background:#007bff;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.4s;
}

.buttons button:hover{
    background:#0056b3;
    transform:translateY(-5px);
}

.viewer{
    width:100%;
    height:70vh;
    overflow:hidden;
    border-radius:15px;
    border:3px solid #007bff;
}

.viewer iframe{
    width:100%;
    height:100%;
}

@media(max-width:768px){
    .viewer{
        height:60vh;
    }

    .buttons button{
        width:100%;
    }
}


/* 
syllubus semeset wise */


.marketing-section{
    width:100%;
    padding:60px 8%;
    background:linear-gradient(135deg,#f8fbff,#e8f4ff);
}

.marketing-section h2{
    text-align:center;
    font-size:38px;
    color:#0b3d91;
    margin-bottom:50px;
    position:relative;
}

.marketing-section h2::after{
    content:'';
    width:100px;
    height:4px;
    background:#ff9800;
    display:block;
    margin:15px auto;
    border-radius:10px;
}

.semester-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.semester-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:0.4s;
    border-top:6px solid #0b3d91;
}

.semester-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.semester-card h3{
    text-align:center;
    color:#fff;
    background:#0b3d91;
    padding:15px;
    border-radius:12px;
    margin-bottom:25px;
    font-size:25px;
}

.semester-card ul{
    list-style:none;
}

.semester-card ul li{
    background:#f7f9fc;
    margin-bottom:15px;
    padding:14px 18px;
    border-radius:12px;
    border-left:5px solid #ff9800;
    transition:0.3s;
    font-size:17px;
    color:#333;
}

.semester-card ul li:hover{
    background:#0b3d91;
    color:#fff;
    transform:translateX(10px);
}

/* Mobile Responsive */
@media(max-width:768px){


    .semester-container{
        display: block;

        grid-row: auto;
    }
    .marketing-section{
        padding:40px 5%;
    }

    .marketing-section h2{
        font-size:30px;
    }

    .semester-card{
        padding:20px;
    }

    .semester-card h3{
        font-size:22px;
    }

    .semester-card ul li{
        font-size:15px;
    }
}


/* outcome based education */


.outcomes-section{
    background:linear-gradient(135deg,#f4f7ff,#eef5ff);
    padding:90px 20px;
    font-family:'Poppins',sans-serif;
    overflow:hidden;
}

.ccontainer{
    max-width:1200px;
    margin: 22px;
}

.ssection-title{
    text-align:center;
    margin-bottom:60px;
    animation:fadeDown 1s ease;
}

.ssection-title h2{
    font-size:42px;
    color:#0d3b66;
    margin-bottom:15px;
    position:relative;
}

.ssection-title h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#007bff;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

.ssection-title p{
    color:#666;
    font-size:17px;
}

.mt{
    margin-top:80px;
}

/* Grid */
.card-grid,
.po-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* PEO Cards */
.info-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .5s ease;
    position:relative;
    overflow:hidden;
    animation:fadeUp 1s ease;
}

.info-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );
    transition:1s;
}

.info-card:hover::before{
    left:100%;
}

.info-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.card-number{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#0056d2,#00b4ff);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    animation:pulse 2s infinite;
}

.info-card h3{
    color:#0d3b66;
    margin-bottom:15px;
    line-height:1.5;
    font-size:24px;
}

.info-card p{
    color:#555;
    line-height:1.9;
}

/* PO Cards */
.po-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid #007bff;
    transition:all .4s ease;
    animation:fadeUp 1.2s ease;
}

.po-card:hover{
    transform:translateY(-12px);
    background:linear-gradient(135deg,#003366,#0056d2);
}

.po-card:hover p{
    color:#fff;
}

.po-card span{
    display:inline-block;
    background:#007bff;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
    font-size:15px;
}

.po-card p{
    color:#555;
    line-height:1.8;
    transition:.4s;
}

/* Animations */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

/* Mobile */
@media(max-width:768px){

    .outcomes-section{
        padding:60px 15px;
    }

    .ssection-title h2{
        font-size:30px;
    }

    .ssection-title p{
        font-size:15px;
    }

    .card-grid,
    .po-grid{
        grid-template-columns:1fr;
    }

    .info-card,
    .po-card{
        padding:25px;
    }

    .info-card h3{
        font-size:20px;
    }

    .card-number{
        width:60px;
        height:60px;
        font-size:20px;
    }
}

/* 
placement */


/* Container */
.poster-container{
    max-width:1300px;
    margin:auto;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:0.5s;
    animation:fadeUp 1s ease;
}

.poster-container:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.18);
}

/* Image */
.poster-container img{
    width:100%;
    display:block;
    height:auto;
    object-fit:cover;
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */
@media(max-width:768px){

    .placement-poster{
        padding:30px 10px;
    }

    .poster-container{
        border-radius:15px;
    }
}


.placement-section{
    max-width:1400px;
    margin:auto;
    padding:80px 20px;
}

.placement-banner{
    position:relative;
    height:650px;
    border-radius:30px;
    overflow:hidden;
}

.placement-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,25,70,.85),
        rgba(0,25,70,.35)
    );
}

.content{
    position:absolute;
    top:50%;
    left:70px;
    transform:translateY(-50%);
    color:white;
    max-width:650px;
}

.badge{
    background:#ffb400;
    color:#000;
    padding:10px 22px;
    border-radius:30px;
    font-weight:700;
}

.content h2{
    font-size:64px;
    line-height:1.1;
    margin:25px 0;
}

.content p{
    font-size:20px;
    line-height:1.8;
    opacity:.9;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:#ffb400;
    color:#000;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
}

.stats{
    margin-top:-80px;
    position:relative;
    z-index:10;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(20px);
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    font-size:42px;
    color:#0b3d91;
}

.card span{
    color:#666;
    font-weight:600;
}

@media(max-width:991px){

.stats{
    grid-template-columns:repeat(2,1fr);
}

.content h2{
    font-size:42px;
}

}

@media(max-width:768px){

.stats{
    grid-template-columns:1fr;
}

.content{
    left:30px;
    right:30px;
    display: none;
}

.content h2{
    font-size:34px;
}

}

.recruiters-section{
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    color:#fff;
    margin-bottom:15px;
    font-size:48px;
    font-weight:800;
}

.section-subtitle{
    text-align:center;
    color:#d9d9d9;
    margin-bottom:50px;
    font-size:18px;
}

.recruiter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.recruiter-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    text-align:center;
    min-height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    color:#0A1F44;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.recruiter-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#FFD700,#FFB300);
}

.recruiter-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(255,215,0,0.35);
}

.recruiter-card span{
    font-size:17px;
    line-height:1.4;
}

.category{
    margin-top:60px;
    margin-bottom:25px;
    color:#FFD700;
    font-size:30px;
    font-weight:700;
    border-left:5px solid #FFD700;
    padding-left:15px;
}





.pplacement-section{
    width:100%;
    padding:80px 20px;
    background:linear-gradient(135deg,#001f3f,#003566);
    color:#fff;
    text-align:center;
}

.pplacement-section h2{
    font-size:40px;
    margin-bottom:20px;
    color:#fff;
}

.subtitle{
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:30px;
    color:#ddd;
    margin-bottom:60px;
}

.sstats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:40px 20px;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.2);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.stat-box:hover{
    transform:translateY(-15px);
    background:linear-gradient(135deg,#ff9800,#ff5722);
}

.number{
    font-size:55px;
    font-weight:bold;
    color:#ffd700;
    margin-bottom:15px;
}

.stat-box span{
    font-size:18px;
    font-weight:500;
    line-height:28px;
}

/* Mobile */
@media(max-width:768px){

    .pplacement-section{
        padding:60px 15px;
    }

    .pplacement-section h2{
        font-size:30px;
    }

    .subtitle{
        font-size:16px;
        line-height:28px;
    }

    .number{
        font-size:45px;
    }

    .stat-box span{
        font-size:16px;
    }
}

/* placemnt slider */

/*=========================
 Placement Section
=========================*/

.placement-section{
    padding:80px 0;
    background:#f7f9fc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.placement-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

/* Slider */

.placement-slider{
    /* flex:1; */
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.slides{
    display:none;
}

.slides img{
    width:99%;
    height:259px;
    object-fit:cover;
    display:block;
}

.fade{
    animation:fade 1s;
}

@keyframes fade{
    from{opacity:.4;}
    to{opacity:1;}
}

/* Content */

.placement-content{
    flex:1;
}

.tag{
    display:inline-block;
    background:#ffd54f;
    color:#222;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.placement-content h2{
    font-size:40px;
    color:#8b0000;
    margin-bottom:20px;
}

.placement-content p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

.feature-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature{
    display:flex;
    gap:15px;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature span{
    font-size:35px;
}

.feature h4{
    margin:0;
    color:#8b0000;
}

.feature p{
    margin:8px 0 0;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

.placement-wrapper{
    flex-direction:column;
}

.slides img{
    height:380px;
}

.feature-box{
    grid-template-columns:1fr 1fr;
}

.placement-content h2{
    font-size:32px;
}

}

@media(max-width:768px){

.feature-box{
    grid-template-columns:1fr;
}

.slides img{
    height:260px;
}

.placement-content h2{
    font-size:28px;
}

.placement-content p{
    font-size:16px;
}

}

/* contact */


/* Header */
.CONTAC{
    background:linear-gradient(135deg,#003366,#00509d);
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.CONTAC h1{
    font-size:45px;
    letter-spacing:2px;
}

/* Container */
.container{
    max-width:1300px;
    margin:50px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

/* Cards */
.box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:0.5s;
    overflow:hidden;
}

.box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.2);
}

.box h2{
    color:#003366;
    margin-bottom:20px;
}

.box p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* WhatsApp Button */
.whatsapp{
    display:inline-block;
    margin-top:25px;
    padding:14px 30px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.whatsapp:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(37,211,102,.4);
}

/* Map */
.map iframe{
    width:100%;
    height:400px;
    border-radius:15px;
}

/* Form */
form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

form input:focus,
form textarea:focus{
    border-color:#ff9800;
    box-shadow:0 0 10px rgba(255,152,0,0.3);
}

form textarea{
    min-height:130px;
    resize:none;
}

form button{
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    border:none;
    padding:15px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    transition:0.4s;
}

form button:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,87,34,0.4);
}

/* Tablet */
@media(max-width:768px){

    .CONTAC{
        padding:45px 15px;
    }

    .CONTAC h1{
        font-size:35px;
    }

    .container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .box{
        padding:25px;
    }

    .map iframe{
        height:300px;
    }
}

/* Mobile */
@media(max-width:480px){

    .CONTAC h1{
        font-size:28px;
    }

    .container{
        padding:0 10px;
        margin:30px auto;
    }

    .box{
        padding:20px;
        border-radius:15px;
    }

    .box p{
        font-size:14px;
    }

    .map iframe{
        height:250px;
    }

    form input,
    form textarea,
    form button{
        padding:13px;
        font-size:14px;
    }

    .whatsapp{
        width:100%;
        text-align:center;
        padding:13px;
    }
}

/* events */
.event-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    padding:50px 20px;
}

.event-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:0.5s;
    position:relative;
}

.event-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.event-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.6s;
}

.event-card:hover img{
    transform:scale(1.1);
}

.event-content{
    padding:25px;
    background:#fff;
}

.event-date{
    display:inline-block;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.event-content h3{
    font-size:24px;
    color:#003366;
    margin-bottom:12px;
}

.event-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/* Attractive Border Animation */
.event-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff9800,#ff5722);
    transition:0.6s;
}

.event-card:hover::before{
    left:0;
}

/* Tablet */
@media(max-width:768px){

    .event-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        padding:30px 15px;
    }

    .event-card img{
        height:220px;
    }

    .event-content{
        padding:20px;
    }

    .event-content h3{
        font-size:20px;
    }

    .event-content p{
        font-size:14px;
    }
}

/* Mobile */
@media(max-width:576px){

    .event-grid{
        grid-template-columns:1fr;
        gap:25px;
        padding:20px 10px;
    }

    .event-card{
        border-radius:15px;
    }

    .event-card img{
        height:220px;
    }

    .event-content{
        padding:18px;
    }

    .event-content h3{
        font-size:20px;
    }

    .event-date{
        font-size:13px;
        padding:7px 14px;
    }

    .event-content p{
        font-size:14px;
        line-height:1.6;
    }
}
/* placement */



/* Placement Poster */
.pplacement-poster{
    width:100%;
    padding:50px 20px;
    background:#f5f7fa;
}

.pposter-container{
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.pposter-container img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:0.6s;
}

.pposter-container:hover img{
    transform:scale(1.05);
}

/* Placement Section */
.pplacement-section{
    padding:80px 20px;
    background:linear-gradient(135deg,#002147,#003d73);
    color:#fff;
    text-align:center;
}

.ccontainer{
    max-width:1200px;
    margin:auto;
}

.pplacement-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.subtitle{
    max-width:800px;
    margin:auto;
    color:#ddd;
    font-size:18px;
    line-height:30px;
    margin-bottom:60px;
}

/* Statistics */
.sstats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:40px 20px;
    transition:0.5s;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.stat-box:hover{
    transform:translateY(-15px);
    background:linear-gradient(135deg,#ff9800,#ff5722);
}

.number{
    font-size:55px;
    font-weight:700;
    color:#ffd700;
    margin-bottom:15px;
}

.stat-box span{
    display:block;
    font-size:18px;
    line-height:28px;
}

/* Tablet */
@media(max-width:768px){

    .pplacement-section{
        padding:60px 15px;
    }

    .pplacement-section h2{
        font-size:30px;
    }

    .subtitle{
        font-size:16px;
        line-height:28px;
    }

    .number{
        font-size:42px;
    }

    .stat-box{
        padding:30px 15px;
    }
}

/* Mobile */
@media(max-width:480px){

    .pplacement-poster{
        padding:30px 10px;
    }

    .pplacement-section h2{
        font-size:24px;
        line-height:1.4;
    }

    .subtitle{
        font-size:14px;
        line-height:25px;
        margin-bottom:40px;
    }

    .number{
        font-size:35px;
    }

    .stat-box span{
        font-size:15px;
    }
}
