* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }

      .main-header {
    position: fixed;
    top: 52px;
    width: 100%;
    height: auto;      /* ✅ */
    z-index: 1000;
}
/* Top Announcement Bar */
.top-announcement-bar {
    z-index: 2000 !important;
} 

.animate-marquee {
    display: inline-flex;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Pause when hovering */
.top-announcement-bar:hover .animate-marquee {
    animation-play-state: paused;
}








        .top-bar {
            background: #1f272b;
            color: rgb(9, 5, 5);
            padding: 5px 5%;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }

      
        
      .navbar {
    background-color: rgba(255, 255, 255, 0.3); /* semi-transparent white */
    backdrop-filter: blur(10px);  /* background thoda blur kare */
    -webkit-backdrop-filter: blur(10px); /* safari support ke liye */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative; /* z-index aur stacking ke liye */
    z-index: 1000;
}


/* Navbar hover ya link styles */
.navbar a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff7a00;
}


        form,
input,
textarea {
    position: relative;
    z-index: 2000;
}

        .logo-container img { height: 60px; width: auto; }

      .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Small & Clean Button Style */
.nav-actions button,
.nav-actions a {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(201, 124, 28, 0.25);
}

.nav-actions button:hover,
.nav-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(201, 124, 28, 0.35);
}

.nav-actions button:active,
.nav-actions a:active {
    transform: scale(0.96);
}

/* Pay Fees Button - Solid Orange */
#payFeesBtn {
    background: linear-gradient(90deg, #c97c1c, #e89c3c);
}

/* Admission Button - Outline Style */
.nav-actions a {
    background: white;
    color: #c97c1c;
    border: 2px solid #c97c1c;
}

.nav-actions a:hover {
    background: #c97c1c;
    color: white;
}



        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
            flex: 2;
            justify-content: center;
        }
        .nav-menu li {
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }

        .nav-menu li:hover { color: #fa642e; }

       
        .nav-actions { flex: 1; display: flex; justify-content: flex-end; gap: 10px; }

        .btn { padding: 10px 15px; border: none; border-radius: 4px; color: white; font-weight: bold; cursor: pointer; text-decoration: none; display: inline-block; }
        .green { background-color: #28a745; }
        .orange { background-color: #f39c12; }

      
        .menu-toggle { display: none; font-size: 30px; cursor: pointer; }

      
        .hero {
            margin-top: 120px;
            background-size: cover;
            background-position: center;
            color: white;
            text-align: left;
            padding: 150px 10%;
        }

        .hero h1 { font-size: 48px; margin: 20px 0; }
        .tag { background: #f39c12; padding: 5px 10px; font-weight: bold; }

      
        /* @media (max-width: 1024px) {
            .menu-toggle { display: block; }
            .nav-actions { display: none; } 
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                text-align: center;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active { display: flex; }
            .top-bar { flex-direction: column; text-align: center; gap: 5px; }
        } */
        
      /* ====================== MOBILE HEADER FIX ====================== */
@media (max-width: 1024px) {

    .main-header {
        height: auto;
    }

    .navbar {
        background: white !important;           /* Solid white on mobile */
        backdrop-filter: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0 5%;
        height: 70px;
    }

    .logo-container img {
        height: 50px;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #c97c1c;
        padding: 10px;
    }

    .nav-actions {
        display: none;
    }

    /* Mobile Menu */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        z-index: 9999;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.open {        /* This matches your JavaScript */
        display: flex !important;
    }

    .nav-menu a {
        width: 100%;
        text-decoration: none;
    }

    .nav-menu li {
        padding: 16px 25px;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li:hover {
        background-color: #fff8f0;
        color: #c97c1c;
    }

    /* Dropdowns in mobile */
    .nav-menu .group ul {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        padding: 5px 0;
        margin-top: 5px;
    }

    .nav-menu .group ul li {
        padding: 12px 40px;
        font-size: 15px;
        border-bottom: 1px solid #eee;
    }
}

/* Desktop - Keep as it is */
@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-actions {
        display: flex;
    }
}




        .hero {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 55%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}
.feature-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: -50px; 
  padding-bottom: 80px;
  position: relative;
  z-index: 5;
}

.card {
  background: #d1c9c9;
  color: white;
  width: 200px;
  height: 150px;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card .icon {
  font-size: 34px;
  margin-bottom: 15px;
}
.profile-slider {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.slide {
  display: none;
  text-align: center;
}

.slide.active {
  display: block;
}

.slide img {
  width: 220px;
  height: auto;
  margin-bottom: 15px;
}

.slide h4 {
  margin: 10px 0 5px;
  color: #ff7a00;
}

.slide .role {
  font-weight: bold;
  margin-bottom: 15px;
}

.slide p {
  color: #444;
  line-height: 1.6;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff7a00;
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 6px 14px;
  cursor: pointer;
}

.slide-btn.left {
  left: -20px;
}

.slide-btn.right {
  right: -20px;
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}


.modal-box{
  width:900px;
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  animation: slideInRight .2s ease forwards;

}


.modal-header{
  background:#ff7a00;
  color:#fff;
  padding:12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.modal-header h2{font-size:18px;}
.close-btn{
  font-size:24px;
  cursor:pointer;
}


.modal-body{
  
  gap:20px;
  padding:20px;
}

.modal-left img{
  width:260px;
  border-radius:4px;
}


.modal-right{
  flex:1;
}
.modal-right input,
.modal-right select,
.modal-right textarea{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #ccc;
  border-radius:4px;
  font-size:14px;
}


.btn-group{
  display:flex;
  gap:10px;
}

.submit{background:#ff5722;color:#fff;}
.reset{background:#2196f3;color:#fff;}

@keyframes slideInRight{
  from{
    transform: translateX(100px);
    opacity: 0;
  }
  to{
    transform: translateX(0);
    opacity: 1;
  }
}

.tab{
    padding:8px 14px;
    border:1px solid #ccc;
    background:#f8f8f8;
    font-size:14px;
    cursor:pointer;
  }
  .tab.active{
    background:#ff7a00;
    color:white;
    border-color:#ff7a00;
  }
 

.container {
  
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.header {
    background-color: #e3f2fd;
    color: #1565c0;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border-bottom: 2px solid #1565c0;
    font-size: 1.2rem;
}

section {
    padding: 15px 25px;
}

.section-title {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: bold;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 20px;
}

.col-12 { width: 100%; }
.col-6 { flex: 1; min-width: 45%; }
.col-4 { flex: 1; min-width: 30%; }

label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"], 
input[type="email"], 
input[type="date"], 
select, 
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.required { color: red; }


.personal-grid {
    display: flex;
    gap: 20px;
}

.form-fields { flex: 3; }

.photo-upload {
    flex: 1;
    text-align: center;
    border-left: 1px solid #eee;
    padding-left: 15px;
}

.img-box {
    width: 120px;
    height: 150px;
    border: 1px solid #ccc;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    color: #888;
    font-size: 12px;
}

.upload-btn {
    background: #2196f3;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 3px;
    margin-bottom: 10px;
}

.signature-box {
    border: 1px solid #ccc;
    height: 40px;
    margin-top: 10px;
    background: url('https://via.placeholder.com/100x40?text=Signature') no-repeat center;
    background-size: contain;
}


.academic-table {
    width: 100%;
    border-collapse: collapse;
}

.academic-table th, .academic-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.academic-table th {
    background-color: #f9f9f9;
    font-size: 13px;
}

.academic-table input {
    width: 100%;
    border: 1px solid #eee;
    padding: 4px;
}


.bank-details table {
    width: 100%;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.bank-details td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.note {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.proceed-btn {
    background-color: #ff8f00;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px 25px;
    border-radius: 4px;
}

.mt-10 { margin-top: 10px; }select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff; 
    cursor: pointer;
    position: relative; 
    z-index: 10;        
    display: block;
}



            select { 
            width: 100%; 
            padding: 10px; 
            border: 1px solid #ccc; 
            border-radius: 4px; 
            background-color: white !important;
            cursor: pointer;
            display: block;
             -webkit-appearance: menulist; 
        }

       
        label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 5px; }
        input[type="text"], input[type="date"], input[type="email"], textarea { 
            width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box;
        }

        .required { color: red; }
        .proceed-btn { background: #ff8f00; color: white; border: none; padding: 12px 40px; cursor: pointer; font-weight: bold; margin: 20px; border-radius: 5px; }
        
  
        table { width: 100%; border-collapse: collapse; margin-top: 10px; }
        table, th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
        th { background: #f8f8f8; }
  

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
}

.course-card {
    background: #fff;
    display: flex;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card-image {
    flex: 1;
    min-width: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    flex: 1.5;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.seats {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.seats span {
    color: #8bc34a; 
    font-weight: bold;
}

.details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}


.details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    top: -2px;
}


@media (max-width: 900px) {
    .course-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .course-card {
        flex-direction: column;
    }
    .card-image {
        height: 200px;
    }
}
    :root {
      --swiper-theme-color: #f37021; 
    }
    .swiper-button-next, .swiper-button-prev {
      background: white;
      width: 40px !important;
      height: 40px !important;
      border-radius: 50%;
      box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    }
    .swiper-button-next:after, .swiper-button-prev:after {
      font-size: 18px !important;
      font-weight: bold;
    }.hero-bg {
  position: relative;
}

.scroll-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 1.1s ease-out;
}

.scroll-right {
  opacity: 0;
  transform: translateX(120px);
  transition: all 1.1s ease-out;
}

.scroll-up {
  opacity: 0;
  transform: translateY(120px);
  transition: all 1.1s ease-out;
}

.scroll-down {
  opacity: 0;
  transform: translateY(-120px);
  transition: all 1.1s ease-out;
}

.scroll-left.show,
.scroll-right.show,
.scroll-up.show,
.scroll-down.show {
  opacity: 1;
  transform: translate(0);
}

.scroll-left.hide { transform: translateX(-120px); }
.scroll-right.hide { transform: translateX(120px); }
.scroll-up.hide { transform: translateY(120px); }
.scroll-down.hide { transform: translateY(-120px); }

.zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

.zoom-in.hide {
  opacity: 0;
  transform: scale(0.85);
}
.zoom-gallery {
  opacity: 0;
  transform: scale(0.88);
  transition: all 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}

.zoom-gallery.show {
  opacity: 1;
  transform: scale(1);
}

.zoom-gallery.hide {
  opacity: 0;
  transform: scale(0.88);
}
.zoom-map {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.zoom-map.show {
  opacity: 1;
  transform: scale(1);
}

.zoom-map.hide {
  opacity: 0;
  transform: scale(0.85);
}

/* Contact cards up animation */
.scroll-up-soft {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.1s ease-out;
}

.scroll-up-soft.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-up-soft.hide {
  opacity: 0;
  transform: translateY(80px);
}
