

.top-welcome-bar{
  background:#0f334b;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 30px;
  font-family:Arial, Helvetica, sans-serif;
  flex-wrap:wrap;
}

/* LEFT TEXT */
.welcome-content{
  max-width:70%;
  line-height:1.4;
}

.welcome-content .line1{
  font-size:16px;
  font-weight:600;
  margin:0;
}

.welcome-content .line2,
.welcome-content .line3{
  font-size:14px;
  margin:4px 0 0;
}

/* RIGHT BUTTONS */
.welcome-buttons{
  display:flex;
  gap:15px;
}

.btn{
  text-decoration:none;
  text-align:center;
  font-weight:700;
  padding:12px 18px;
  font-size:14px;
  border-radius:2px;
  transition:0.3s;
}

.btn.yellow{
  background:#ffc107;
  color:#000;
  display: flex;
  align-items: center;
}

.btn.yellow:hover{
  background:#e0a800;
}

/* RESPONSIVE */
@media(max-width:992px){
  .top-welcome-bar{
    flex-direction:column;
    text-align:center;
  }
  .welcome-content{
    max-width:100%;
    margin-bottom:12px;
  }
  .welcome-buttons{
    flex-direction:column;
    width:100%;
  }
  .btn{
    width:100%;
  }
}




/* MAIN NAVBAR */

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

.main-nav{
  position: sticky;
  top: 0;
  z-index: 1050; 
}




.main-navbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: fixed;
}

.college-logo {
    height: 85px;
    margin-right: 30px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 22px;
}

.menu li a {
    text-decoration: none;
    color: #0f334b;
    font-size: 17px;
    padding: 10px;
    display: block;
}



/* DROPDOWN WRAPPER */
.dropdown {
    position: relative;
}

/* MENU DESIGN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 8px 0;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* LIST ITEMS */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: 0.2s ease;
}

/* HOVER EFFECT */
.dropdown-menu li a:hover {
    background: #f5f5f5;
    padding-left: 22px;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}








/* NAVBAR BACKGROUND (BLUE BAR IN IMAGE) */
.menu {
    background: #264863;
    padding: 12px 20px;
    border-radius: 4px;
}

.menu li a {
    color: #fff !important;
}

.menu li a:hover {
    color: #ddd;
}
/* Top Contact Bar */
.top-bar {
  background: #ffffff;
  padding: 6px 0;
  font-size: 14px;
}

/* Main Navbar */
.main-nav {
  background: #244663;
  padding: 0;
}

.navbar-nav .nav-link {
  color: #fff !important;
  padding: 14px 18px;
  font-size: 16px;
}

.navbar-nav .nav-link:hover {
  background: #1c3750;
}

/* Hover Dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background-color: #244663;
  border-radius: 0;
}

.dropdown-menu .dropdown-item {
  color: white;
  padding: 10px 15px;
}

.dropdown-menu .dropdown-item:hover {
  background: #1c3750;
  color: white;
}

/* Logo text */
.logo-text {
  font-size: 28px;
  color: #2c6e36;
  font-weight: bold;

}

.me-2{
  border-radius: 50%;
}

/* --- About Section --- */
.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* ensures responsiveness */
}

/* LEFT CONTENT */
.about-left {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-left h1 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.about-left h3 {
  font-size: 22px;
  color: #555;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.know-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0a1c48;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.know-btn:hover {
  background-color: #0056b3;
}

/* RIGHT CONTENT */
.about-right {
  position: relative;
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right .blue-bg {
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: #0a1c48;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.2;
}

.about-right .about-img {
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}





/* TOGGLER BORDER */
.navbar-toggler{
  border:1px solid #fff;
}

/* DEFAULT WHITE ICON */
.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* HOVER COLOR CHANGE */
.navbar-toggler:hover .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,123,255,1)' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");


} 


/* --- Responsive CSS --- */

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-left, .about-right {
    padding: 20px 10px;
  }

  .about-left h1 {
    font-size: 28px;
  }

  .about-left h3 {
    font-size: 20px;
  }
}



   /* TABLET (max-width: 991px) */

@media (max-width: 991px) {

  .logo-text {
    font-size: 22px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 12px 14px;
  }

  .dropdown-menu {
    text-align: left;
  }
}


.navbar-toggler-icon{
  color: white;
}


/* ===============================
   MOBILE (max-width: 768px)
=============================== */
@media (max-width: 768px) {

  .navbar-brand {
    flex-wrap: wrap;
  }

  .logo-text {
    font-size: 18px;
  }

  /* COLLAPSE MENU */
  .navbar-collapse {
    background: #244663;
    margin-top: 10px;
    padding: 10px 0;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px;
    font-size: 15px;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    background: #1c3750;
    position: static;
    float: none;
  }
}

/* ===============================
   SMALL MOBILE (max-width: 480px)
=============================== */
@media (max-width: 480px) {

  .navbar-brand img {
    max-height: 55px;
  }

  .logo-text {
    font-size: 16px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
  }
}





/* Buttons */
.btn {
    display: inline-block;
    background: #0a1c48;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}
/* 



/* MAIN SECTION */
.welcome-section{
  width:100%;
  padding:80px 5%;
  background:#f7f9fb;
}

.welcome-container{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
}

/* LEFT IMAGE GRID */
.image-grid{
  width:45%;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:25px;
}

.grid-box{
  height:230px;
  background-size:cover;
  background-position:center;
  border-radius:18px;
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

/* DARK OVERLAY */
.grid-box::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  border-radius:18px;
  transition:0.3s;
}

.grid-box:hover::after{
  background:rgba(0,0,0,0.55);
}

/* FIXED CENTER TEXT */
.grid-box span{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:100%;
  text-align:center;
  color:#fff;
  font-size:20px;
  font-weight:700;
  line-height:1.3;
  z-index:2;
  pointer-events:none;
}

/* RIGHT TEXT */

.welcome-section{
 background-image: url('./background.webp');
background-size: cover;          
}

.welcome-text{
  width:50%;
}

.welcome-text h4{
  color:#0a1c48;
  font-weight:600;
  margin-bottom:5px;
}

.welcome-text h1{
  font-size:48px;
  font-weight:800;
  color:#222;
  margin-bottom:20px;
}

.welcome-text p{
  color:#333;
  line-height:1.7;
  margin-bottom:25px;
}

.read-btn{
  background:#0a1c48;
  color:#fff;
  padding:12px 30px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.read-btn:hover{
  background:black;
}

/* RESPONSIVE */
@media(max-width:992px){
  .welcome-container{
    flex-direction:column;
  }
  .image-grid, .welcome-text{
    width:100%;
  }
}

@media(max-width:600px){
  .image-grid{
    grid-template-columns:1fr;
  }
  .welcome-text h1{
    font-size:36px;
  }
}







/* Contact CTA Section */
.contact-cta {
    padding: 60px 10%;
    background: #0a1c48;
    color: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .about-cards, .course-cards, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}







/* ----------- BACKGROUND + OVERLAY ----------- */
.achievements-section {
    position: relative;
    background-image: url('./bg.webp'); /* अपनी BG image लगाओ */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
}

/* ----------- TITLE ----------- */
.achieve-title {
    position: relative;
    text-align: center;
    margin-bottom: 35px;
    z-index: 3;
}

.achieve-title p {
    color: #0a1c48;
    font-size: 22px;
    margin-bottom: 5px;
}

.achieve-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.line {
    width: 120px;
    height: 4px;
    background: #0a1c48;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ----------- CARDS EXACT LIKE IMAGE ----------- */
.achieve-box-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    position: relative;
    z-index: 3;
}

.achieve-box {
    width: 300px;
    background: rgba(255,255,255,0.92);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15); /* deeper soft like image */
    transition: 0.3s ease;
}

.icon {
    font-size: 50px;
    color: #0a1c48;
    margin-bottom: 15px;
}

.achieve-box h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.achieve-box p {
    font-size: 18px;
    margin-top: 8px;
    color: #444;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1200px) {
    .achieve-box-container {
        flex-wrap: wrap;
    }
}
@media (max-width: 600px) {
    .achieve-box {
        width: 90%;
    }
}





.pro-footer {
  background:#414B4F;
  color: #e5e5e5;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pro-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #ffcc00;
}

.desc {
  margin-top: 10px;
  line-height: 1.7rem;
  color: #bfc9d4;
}

.pro-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffcc00;
  position: relative;
}

.pro-col ul {
  list-style: none;
  padding: 0;
}

.pro-col ul li {
  margin-bottom: 10px;
}

.pro-col ul li a {
  text-decoration: none;
  color: #d4d7dd;
  transition: .3s;
}

.pro-col ul li a:hover {
  color: #ffcc00;
  padding-left: 6px;
}

.pro-col p {
  margin-bottom: 10px;
  color: #d4d7dd;
}

.social a {
  font-size: 22px;
  margin-right: 12px;
  color: #fff;
  transition: .3s;
}

.social a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}

.pro-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #243447;
  color: #9aa5b1;
  font-size: 14px;
}



/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-left, .about-right {
    padding: 20px 10px;
  }

  .about-left h1 {
    font-size: 28px;
  }

  .about-left h3 {
    font-size: 20px;
  }
}

/* Small Devices (Mobile) */
@media (max-width: 600px) {
  .about-left h1 {
    font-size: 24px;
  }

  .about-left h3 {
    font-size: 18px;
  }

  .about-left p {
    font-size: 15px;
  }

  .about-right .blue-bg {
    width: 180px;
    height: 180px;
  }
}

/* ===== COURSES SECTION ===== */
.courses-section {
  background: linear-gradient(rgba(220, 220, 220, 0.85), rgba(116, 117, 118, 0.85)),
              url("./mainImage.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

/* ===== TITLE ===== */
.section-title h2 {
  font-weight: 700;
}

.section-title span {
  width: 120px;
  height: 4px;
  background: #0a1c48;
  display: block;
  margin: 10px auto 0;
}





/* ===== CARD ===== */
.course-card {
  background: #fff;
  color: #000;
  position: relative;
  overflow: hidden;

  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coures-card-img{
  position: absolute;
  top: 0;
  right: 0;

}


/* ICON */
.course-icon {
  width: 90px;
  height: 90px;
  border: 4px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #0a1c48;
  margin: 0 auto 20px;
}

/* TEXT */
.course-card h5 {
  color: #0a1c48;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.apply-btn {
  background: #0a1c48;
  color: #fff;
  text-decoration: none;
  padding: 10px 28px;
  display: inline-block;
  border-radius: 5px;
  margin-top: 15px;
}

.apply-btn:hover {
  background: #0a1c48;
}

.btnn{
  margin-top: -0.5rem;
}

/* ---------------- SLIDER ---------------- */
.slider{
  position: relative;
  width:100%;
  height: 80vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  animation:slideAnimation 25s infinite;
  background-size:cover;
  background-position:center;
}

.slide:nth-child(1){ animation-delay:0s; }
.slide:nth-child(2){ animation-delay:5s; }
.slide:nth-child(3){ animation-delay:10s; }
.slide:nth-child(4){ animation-delay:15s; }
.slide:nth-child(5){ animation-delay:20s; }

@keyframes slideAnimation{
  0%{ opacity:0; }
  4%{ opacity:1; }
  20%{ opacity:1; }
  24%{ opacity:0; }
  100%{ opacity:0; }
}

.slider-text{
  position:absolute;
  bottom:50px;
  left:50px;
  color:#fff;
  font-size:32px;
  font-weight:800;
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
}
/* ===== SIDEBAR WRAPPER ===== */

/* .sticky-barr {
  display: block;
  top: 50%;
  right: -133px;
  position: fixed;
  z-index: 1040;
  width: 184px;
  transform: translateY(-50%);
}
.sticky-barr ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sticky-barr ul li {
  background-color: #ff0007;
  border-radius: 4px 0 0 4px;
  margin: 4px;
  transition: all .4s ease-in;
  padding: 5px;
  height: 48px;
  border: 1px solid transparent;
}
.sticky-barr ul li:hover {
  background-color: #0a398b;
  margin-left: -122px;
  border: 1px solid #fff;
}
.sticky-barr ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}

.sticky-barr ul li a i {
  padding: 6px 7px 7px;
  font-size: 26px;
}
.sticky-barr ul li a img {
  float: left;
}
.sticky-barr ul li a .st-label {
  padding-top: 7px;
  display: inline-block;
  padding-left: 4px;
}
.sticky-barr ul li a .st-label-single {
  display: inline-block;
  padding-left: 7px;
  vertical-align: text-top;
  line-height: 0;
} */

.sticky-barr {
  position: fixed;
  top: 50%;
  right: -145px;
  transform: translateY(-50%);
  width: 200px;
  z-index: 1040;
}

/* RESET */
.sticky-barr ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ITEM */
.sticky-barr li {
  margin: 5px 0;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  transform: translateX(0);
  transition: transform 0.35s ease;
}

/* HOVER SLIDE */
.sticky-barr li:hover {
  transform: translateX(-145px);
}

/* LINK */
.sticky-barr li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  height: 52px;
}

/* ICON */
.sticky-barr li i {
  min-width: 60px;
  text-align: center;
  font-size: 26px;
}

/* TEXT */
.st-label {
  line-height: 1.25;
}

.st-label-single {
  line-height: 1.2;
}

/* COLORS */
.call     { background: #ff5722; }
.readd    { background: #3f51b5; }
.whatsapp { background: #25d366; }
.fee      { background: #e91e63; }
.brochure { background: #607d8b; }

/* MOBILE HIDE (Optional) */
@media (max-width: 768px) {
  .sticky-barr {
    display: none;
  }
}
