*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}


header.hero {
  background-image: url('image/file_000000000f647206b184d9909ba752d9.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* text ko readable banane ke liye white kar sakte hain */
  padding: 60px 20px;
  /* optional overlay ke liye */
  position: relative;
}


.logo {
  height: 200px;      /* adjust size as needed */
  width: auto;
  display: block;
  margin: 0 auto 15px;  /* center the logo and add spacing below */
}


body{
background:#f4f6f9;
color:#333;
}


.hero{
background:linear-gradient(135deg,#1e3c72,#2a5298);
color:#fff;
text-align:center;
padding:60px 20px;
animation: slideDown 1.5s;
}


.tagline{
margin-top:10px;
font-size:18px;
}


nav{
background:#0b2a5c;
text-align:center;
position:sticky;
top:0;
}

nav a{
color:#fff;
padding:14px 16px;
display:inline-block;
text-decoration:none;
}

nav a:hover{
background:#fbc531;
color:#000;
}


.section{
padding:50px 10%;
animation: fadeIn 1.2s;
}


.card{
background:#fff;
border-radius:8px;
box-shadow:0 10px 25px rgba(214, 3, 3, 0.1);
}

h2{
color:#1e3c72;
margin-bottom:15px;
}

ul{
margin-left:20px;
}

.video-section{
  display:flex;
  align-items:center;
  gap:40px;
  padding:50px 30px;
  max-width:1200px;
  margin:auto;
}

.video-left{
  flex:1;
}

.video-left video{
  width:100%;
  height:auto;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  background:#000;
}

.video-right{
  flex:1;
}

.video-right h2{
  font-size:26px;
  margin-bottom:15px;
}

.video-right p{
  font-size:16px;
  line-height:1.8;
  color:#444;
}

/*...................about ...........*/

.about-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1e3c72;
}

.about-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap; /* Responsive wrapping */
}

.about-column {
  flex: 1 1 300px; /* Flex grow, shrink, basis */
  max-width: 500px;
  background: #f8f9ff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

.about-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-column p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.mission-statement {
  font-style: italic;             /* Italic to emphasize */
  font-weight: 600;               /* Slightly bolder */
  font-size: 18px;                /* Slightly larger */
  color: #1e3c72;                /* Match your heading color */
  background-color: #e6f0ff;     /* Light subtle background */
  padding: 15px 20px;            /* Padding around text */
  border-left: 5px solid #1e3c72; /* Colored left border for highlight */
  border-radius: 5px;
  max-width: 700px;
  margin: 30px auto 0 auto;      /* Center with margin top */
  text-align: center;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(30, 60, 114, 0.1);
}


/* Responsive for smaller screens */
@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
    align-items: center;
  }

  .about-column {
    max-width: 90%;
    margin-bottom: 30px;
  }
}



/*...................video ...........*/
.video-section{
  display:flex;
  align-items:center;
  gap:40px;
  padding:50px 30px;
  max-width:1200px;
  margin:auto;
}

.video-left{
  flex:1;
}

.video-left video{
  width:100%;
  height:auto;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  background:#000;
}

.video-right{
  flex:1;
}

.video-right h2{
  font-size:26px;
  margin-bottom:15px;
}

.video-right p{
  font-size:16px;
  line-height:1.8;
  color:#444;
}


/*...................faculty-grid............*/

.faculty-section{
  background: linear-gradient(to right, #f8f9ff, #eef1ff);
}

.faculty-intro{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
  font-size:17px;
  color:#444;
}

.faculty-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap:30px;
}

.faculty-card{
  background:#fff;
  border-radius:15px;
  padding:25px 20px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  position:relative;
  overflow:hidden;
}

.faculty-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background: linear-gradient(to right, #3f51b5, #2196f3);
}

.faculty p{
  font-size:17px;
  color:#555;
  text-align:center;
  max-width:750px;
  margin:15px auto 35px;
  line-height:1.8;
}

.faculty-card:hover{
  transform: translateY(-12px);
  box-shadow:0 15px 30px rgba(0,0,0,0.18);
}

.faculty-card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #3f51b5;
  margin-bottom:15px;
}

.faculty-card h3{
  margin:10px 0 5px;
  font-size:18px;
  color:#222;
}

.faculty-card span{
  font-size:14px;
  color:#3f51b5;
  font-weight:600;
}
.faculty-card{
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(20px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/*................. message..............*/ 

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

/* Section */
.management-message{
  padding:60px 10%;
  background:#f4f6f9;
}

/* Message Box */
.msg-box{
  display:flex;
  align-items:center;
  background:#fff;
  margin-bottom:40px;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* Reverse layout */
.msg-box.reverse{
  flex-direction:row-reverse;
}

/* Image Area */
.msg-img{
  width:30%;
  text-align:center;
  padding:20px;
}

.msg-img img{
  width:200px;
  height:200px;
  object-fit:cover;
  border:2px solid #042e6d;
}

/* Content Area */
.msg-content{
  width:70%;
  padding:30px;
  text-align:justify;
}

.msg-content h2{
  color:#042e6d;
  margin-bottom:15px;
}

.msg-content p{
  font-size:16px;
  line-height:1.7;
  color:#555;
  margin-bottom:20px;
}

.msg-content h4{
  font-size:18px;
  color:#222;
}

.msg-content span{
  font-size:16px;
  color:#777;
}

/* Responsive */
@media(max-width:768px){
  .msg-box,
  .msg-box.reverse{
    flex-direction:column;
    text-align:center;
  }

  .msg-img,
  .msg-content{
    width:100%;
  }

  .msg-img img{
    width:150px;
    height:150px;
  }
}



/*...................gallery...............*/
.gallery-section{
  padding:60px 10%;
  background:#f4f6f9;
  text-align:center;
}

.gallery-section h2{
  margin-bottom:30px;
  color:#042e6d;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.gallery-item{
  position:relative;
  height:260px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 15px rgba(0,0,0,0.15);
  background:#000;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

/* Caption */
.img-text{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:10px;
  background:rgba(0,0,0,0.6);
  color:#fff;
  font-size:14px;
  text-align:center;
  transition:0.3s;
}

.gallery-item:hover .img-text{
  background:rgba(4,46,109,0.85);
}

/* Mobile */
@media(max-width:768px){
  .gallery{
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  }
  .gallery-item{
    height:200px;
  }
}


/*.................. infrastructure..................*/

.infrastructure-section{
  padding:80px 5%;
  background:#f4f6f9;
  text-align:center;
}

.infrastructure-section h2{
  color:#042e6d;
  margin-bottom:10px;
}

.infra-subtitle{
  color:#555;
  margin-bottom:40px;
  font-size:16px;
}

.infra-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.infra-card{
  background:#fff;
  padding:85px 20px;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(150, 85, 85, 0.12);
  transition:0.3s;
}

.infra-card:hover{
  transform:translateY(-8px);
}

.infra-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}


.infra-card h3{
  color:#1a33b1;
  margin-bottom:10px;
}

.infra-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* Mobile */
@media(max-width:768px){
  .infrastructure-section{
    padding:40px 5%;
  }
}


/* ..................notice ................ */
.notice{
background:#fff3cd;
padding:10px;
margin:8px 0;
border-left:5px solid #fbc531;
}


.contact-container {
    width: 420px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #1a237e;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

textarea {
    height: 80px;
}

button {
    background: #1a237e;
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #3949ab;
}

.contact-info {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

/*................ pop up...............*/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 25px;
  width: 320px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation: zoom 0.4s ease;
}

.popup-box h3 {
  color: #1e3c72;
  margin-bottom: 10px;
}

.popup-btn {
  display: inline-block;
  margin-top: 10px;
  background: #28a745;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
}

.popup-btn:hover {
  background: #218838;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}


/* ================= CONTACT PAGE ================= */

.contact-container{
    width:90%;
    max-width:1100px;
    margin:50px auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.contact-container h2{
    text-align:center;
    font-size:36px;
    color:#003366;
    margin-bottom:10px;
}

.contact-container>b,
.contact-container p{
    text-align:center;
    color:#555;
    font-size:18px;
}

/* Form */

.contact-container form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:35px;
}

.contact-container input,
.contact-container select,
.contact-container textarea{
    width:100%;
    padding:15px;
    border:2px solid #e5e5e5;
    border-radius:10px;
    font-size:16px;
    transition:.3s;
    outline:none;
    box-sizing:border-box;
}

.contact-container textarea{
    grid-column:1/3;
    height:160px;
    resize:none;
}

.contact-container input:focus,
.contact-container select:focus,
.contact-container textarea:focus{
    border-color:#0077ff;
    box-shadow:0 0 10px rgba(0,119,255,.2);
}

/* Button */

.contact-container button{
    grid-column:1/3;
    padding:15px;
    background:linear-gradient(135deg,#0077ff,#00b4db);
    color:#fff;
    font-size:18px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    font-weight:bold;
}

.contact-container button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,119,255,.3);
}

/* Contact Info */

.contact-info{
    margin-top:40px;
    background:#f8fbff;
    padding:25px;
    border-radius:15px;
    border-left:6px solid #0077ff;
}

.contact-info p{
    font-size:18px;
    margin:12px 0;
    color:#333;
}

/* Google Map */

.map{
    width:90%;
    max-width:1100px;
    margin:40px auto 60px;
}

.map iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Mobile */

@media(max-width:768px){

.contact-container{
    padding:25px;
}

.contact-container form{
    grid-template-columns:1fr;
}

.contact-container textarea,
.contact-container button{
    grid-column:1;
}

.contact-container h2{
    font-size:28px;
}

.map iframe{
    height:300px;
}

}

/*................footer............*/
footer{
background:#0b2a5c;
color:white;
text-align:center;
padding:20px;
}
.enroll-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #28a745, #218838);
  color: white;
  font-weight: bold;
  padding: 15px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 8px 15px rgba(40, 167, 69, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, #218838, #19692c);
  box-shadow: 0 10px 20px rgba(33, 136, 56, 0.6);
  text-decoration: none;
  color: white;
}


@keyframes fadeIn{
from{opacity:0;transform:translateY(20px);}
to{opacity:1;transform:translateY(0);}
}

@keyframes slideDown{
from{opacity:0;transform:translateY(-40px);}
to{opacity:1;transform:translateY(0);}
}
