@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FFA500;
  --secondary-color: #1a1a1a;
  --light-bg: #f8f8f8;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --border-color: #e0e0e0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* ========== HEADER & NAVIGATION ========== */
.top-header {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  font-weight: bold;
}

.logo img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.college-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.college-info p {
  margin: 0;
  font-size: 12px;
  color: var(--text-light);
}

.header-contacts {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-item {
  text-align: right;
}

.contact-item label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.navbar {
  background: var(--secondary-color);
  padding: 12px 0;
}

.navbar-nav1 {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.navbar-nav1 .nav-link {
  color: var(--white) !important;
  margin: 0 15px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav1 .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav1 .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav1 .nav-link:hover::after {
  width: 100%;
}

marquee {
  border-bottom: 1px solid;
  font-size: 14px;
  padding: 8px 30px;
}

/* ========== HERO/CAROUSEL SECTION ========== */
.hero-section {
  padding: 50px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.carousel-slide {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.carousel-slide h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.carousel-slide p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.carousel-btn:hover {
  background: var(--primary-color);
}

.carousel-btn.prev {
  left: -60px;
}

.carousel-btn.next {
  right: -60px;
}

/* ========== NOTICE BOARD ========== */
.notice-board {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  animation: slideInRight 0.8s ease-out;
}

.notice-board .notice-scroll {
  max-height: 250px;
  overflow-y: auto;
}

.notice-board h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.notice-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.notice-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.notice-item h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.notice-item .date {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.notice-item p {
  font-size: 13px;
  color: var(--text-light);
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-item span {
  font-size: 13px;
  color: var(--text-light);
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-notice {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 8px;
}

.btn-notice:hover {
  background: #ff9500;
  transform: translateX(2px);
}

.view-all-btn {
  border: 2px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 15px;
}

.view-all-btn:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* ========== QUICK LINKS SECTION ========== */
.quick-links {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.8)), url("../images/music-bg.png");
  background-repeat: repeat;
  background-size: 20%;
  padding: 50px 20px;
  border-radius: 15px;
  margin: 40px 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quick-link-btn {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
}

.quick-link-btn i {
  font-size: 30px;
}

.quick-link-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

/* ========== STATS SECTION ========== */
@keyframes backgroundScroll {
  0% {
    background-position-x: 0;
  }
  50% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: 0;
  }
}
.stats-section {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/collage.png");
  background-size: cover;
  background-position: center;
  animation: backgroundScroll 20s linear infinite;
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--primary-color);
  margin-top: 20px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.stat-item:last-child::after {
  display: none;
}

/* ========== WELCOME SECTION ========== */
.welcome-section {
  padding: 60px 20px;
  background: var(--light-bg);
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.welcome-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-group-welcome {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom,
.btn-secondary-custom {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary-custom {
  background: var(--text-dark);
  color: var(--white);
}

.btn-primary-custom:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary-custom:hover {
  background: var(--text-dark);
  color: var(--white);
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ========== COURSES SECTION ========== */
.courses-section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.course-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.course-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
  transform: translateY(-10px);
}

.course-icon {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.course-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form {
  padding: 60px 20px;
}
.contact-form h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}
.contact-form textarea {
  height: 200px !important;
}

/* ========== AFFILIATION SECTION ========== */
.affiliation-section {
  padding: 60px 20px;
  background: var(--light-bg);
  position: relative;
}

.affiliation-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="20" y="40" font-size="80" fill="%23FFA500">♪</text><text x="70" y="70" font-size="60" fill="%23FFA500">♫</text></svg>');
  background-repeat: repeat;
  pointer-events: none;
}

.affiliation-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.affiliation-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}

.affiliation-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 25px;
}

.affiliation-badge {
  background: var(--secondary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  text-align: center;
  margin: 30px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.affiliation-badge:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* ========== FOOTER ========== */
footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 40px 20px 20px;
  font-size: 14px;
}
footer ul {
  list-style: none;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  display: block;
}
footer ul li a::before {
  content: "-";
  color: #fff;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

footer p {
  margin: 10px 0;
  color: #fff;
}

footer #flex-footer {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
  align-items: center;
  border-top: 1px solid #fff;
}
footer #flex-footer p {
  margin: 0;
  margin-top: 10px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .header-contacts {
    gap: 15px;
    font-size: 12px;
  }
  .navbar-nav1 .nav-link {
    margin: 0 8px;
    font-size: 12px;
  }
  .carousel-container {
    padding: 20px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .carousel-btn.prev {
    left: 10px;
  }
  .carousel-btn.next {
    right: 10px;
  }
  .welcome-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .welcome-text h2 {
    font-size: 28px;
  }
  .stat-number {
    font-size: 36px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .btn-group-welcome {
    flex-direction: column;
  }
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
  }
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section {
    padding: 30px 10px;
    min-height: 300px;
  }
  .carousel-slide img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .header-contacts {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .contact-item {
    text-align: center;
  }
  .navbar-nav1 {
    flex-direction: column;
  }
  .navbar-nav1 .nav-link {
    margin: 5px 0;
  }
  .stat-number {
    font-size: 28px;
  }
  .stat-label {
    font-size: 14px;
  }
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
  .quick-link-btn {
    padding: 20px 15px;
    font-size: 14px;
  }
}
/* Scroll Animation Fade Effects */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.animate {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
}

.page-login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 200px);
}

.page-login-wrapper .page-content {
  width: 30%;
}

.page-login-wrapper .page-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.page-login-wrapper .page-content input {
  border-radius: 8px;
}

.page-login-wrapper .page-content label {
  color: #888;
}

.page-login-wrapper .custom-button-dark {
  padding: 14px;
  display: block;
  width: 100%;
  border: none;
  background: #2c2c2c;
  color: #fff;
}/*# sourceMappingURL=web-style.css.map */