@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(135deg, #1e5631 0%, #2d7a3e 100%);
  height: auto;
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.top-bar .left {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-right: auto;
  white-space: nowrap;
}

.top-bar .left span {
  font-weight: normal;
  margin-right: 8px;
  opacity: 0.9;
}

.top-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.top-bar nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
  padding: 5px;
}

.top-bar nav a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ===== HEADER ===== */
.main-header {
  background: linear-gradient(135deg, #b8b8b8 0%, #d9d9d9 25%, #e8e8e8 50%, #d9d9d9 75%, #b8b8b8 100%);
  border-bottom: 4px solid #2d7a3e;
  padding: 15px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0;
  flex-wrap: wrap;
}

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

.logo-section img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header-logo-image {
  height: 60px !important;
  width: auto !important;
  margin-left: 15px;
  object-fit: contain;
}

.college-info h1 {
  font-size: 24px;
  font-weight: bold;
  color: #1e5631;
  margin-bottom: 2px;
}

.college-info p {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.college-info .affiliation {
  font-size: 10px;
  color: #2d7a3e;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.menu {
  flex-grow: 1;
}

.menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 15px;
}

.menu ul li {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #333;
  transition: color 0.3s;
}

.menu ul li:hover {
  color: #1e5631;
}

.menu ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.menu ul li.mobile-only {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100001;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* Show hamburger on mobile screens */
@media (max-width: 767px) {
  .menu-toggle {
    display: flex !important;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

.hamburger {
  width: 28px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1e5631;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  background: #fff;
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active .hamburger span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  background: #fff;
}


/* ===== SLIDER ===== */
.slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 500px; /* Increased for computer view */
  overflow: hidden;
  background: linear-gradient(135deg, #1e5631 0%, #2d7a3e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain for full visibility */
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.1);
}

.slides img.active {
  opacity: 1;
  transform: scale(1);
}

/* Slide animation variants */
.slides img.slide-in-right {
  animation: slideInFromRight 0.8s ease-out forwards;
}

.slides img.slide-in-left {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.slides img.fade-scale {
  animation: fadeAndScale 0.8s ease-out forwards;
}

.slides img.zoom-in {
  animation: zoomIn 0.8s ease-out forwards;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeAndScale {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Buttons */
.slider button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(30, 86, 49, 0.7);
  color:#fff;
  border:none;
  padding:12px 16px;
  font-size:20px;
  cursor:pointer;
  z-index: 10;
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider button:hover {
  background:rgba(30, 86, 49, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.slider button:active {
  transform: translateY(-50%) scale(0.95);
}

.slider .prev{left:10px;}
.slider .next{right:10px;}

@media (max-width: 767px) {
  .slider {
    height: 280px; /* Reduced height for mobile */
  }
  
  .slider button {
    padding: 10px 12px;
    font-size: 16px;
    min-width: 40px;
    min-height: 40px;
  }
}


/* ===== PAGE LOAD ANIMATIONS ===== */
@keyframes slideDownBounce {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  70% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px) rotateY(15deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) rotateY(-15deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes popInScale {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpWithFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top Bar Animation - Smooth slide down */
.top-bar {
  animation: slideDownBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Header Animations */
.main-header {
  animation: slideDownBounce 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
  opacity: 0;
}

.logo-section {
  animation: slideInLeft 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
  opacity: 0;
}

.logo-section img {
  animation: popInScale 1.1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.35s forwards;
  opacity: 0;
}

.college-info h1 {
  animation: slideUpWithFade 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s forwards;
  opacity: 0;
}

.college-info p {
  animation: slideUpWithFade 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
  opacity: 0;
}

.menu {
  animation: slideInRight 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s forwards;
  opacity: 0;
}

.menu ul li {
  animation: fadeInUp 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

.menu ul li:nth-child(1) { animation-delay: 0.4s; }
.menu ul li:nth-child(2) { animation-delay: 0.5s; }
.menu ul li:nth-child(3) { animation-delay: 0.6s; }
.menu ul li:nth-child(4) { animation-delay: 0.7s; }
.menu ul li:nth-child(5) { animation-delay: 0.8s; }

/* Slider Animation - Elegant scale up */
.slider {
  animation: scaleUp 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.85s forwards;
  opacity: 0;
}


/* ===== RESPONSIVE STYLES ===== */

/* Small mobile devices */
@media (max-width: 375px) {
  .college-info h1 {
    font-size: 16px;
  }

  .logo-section img {
    height: 50px;
  }

  .main-header {
    padding: 14px 16px;
  }

  .logo-section {
    gap: 10px;
  }

  .slider {
    height: 220px;
  }

  .menu ul li {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Medium mobile devices */
@media (min-width: 376px) and (max-width: 767px) {
  .slider {
    height: 260px;
  }
}

/* Tablets and larger */
@media (min-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
  }

  .logo-section {
    flex: 0 1 auto;
    flex-grow: 0;
    min-width: 0;
  }

  .header-logo-image {
    height: 46px !important;
    margin-left: 8px;
  }

    .college-info h1 {
    font-size: 22px;
    }

    .menu ul {
        justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 18px;
        padding-top: 0;
    }

  .menu ul li {
    white-space: nowrap;
    font-size: 13px;
  }

    .slider {
        height: 550px;
    }

    .top-bar nav a {
      font-size: 14px;
    }
}

/* Large tablets */
@media (min-width: 992px) and (max-width: 1023px) {
  .slider {
    height: 600px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
    .slider {
        height: 650px;
    }
}

/* ===== CHAIRMAN SECTION ===== */
.chairman-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 60px 24px;
  margin: 40px 0;
}

.chairman-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.chairman-image {
  text-align: center;
  opacity: 0;
}

.chairman-image img {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.15);
  transition: transform 0.3s ease;
}

.chairman-image img:hover {
  transform: scale(1.02);
}

.chairman-content {
  opacity: 0;
}

.chairman-content h2 {
  font-size: 32px;
  color: #1e5631;
  margin-bottom: 15px;
  font-weight: 700;
  opacity: 0;
}

.chairman-content h3 {
  font-size: 16px;
  color: #2d7a3e;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
}

.chairman-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
  opacity: 0;
}

.chairman-highlights {
  background: #e8f5e9;
  padding: 20px;
  border-left: 5px solid #1e5631;
  border-radius: 8px;
  margin-top: 20px;
  opacity: 0;
}

.chairman-highlights p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.chairman-highlights p:last-child {
  margin-bottom: 0;
}

.chairman-highlights strong {
  color: #1e5631;
}

/* ===== ABOUT ISL PHARMACY SECTION ===== */
.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7f4 100%);
  padding: 120px 24px;
  margin: 80px 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 56px;
  color: #1e5631;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
}

.about-section::before {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #1e5631 0%, #2d7a3e 100%);
  margin: 0 auto 40px auto;
  border-radius: 3px;
  opacity: 0;
}

.about-image {
  margin: 50px 0;
  opacity: 0;
}

.about-image img {
  max-width: 85%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(30, 86, 49, 0.25);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.04);
}

.about-content {
  text-align: justify;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.about-content p {
  font-size: 20px;
  line-height: 2.1;
  color: #333;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.6px;
}

.text-line {
  display: inline;
  opacity: 0;
}

.about-content p:first-of-type {
  margin-top: 0;
}

/* About Section Animations */
.about-section h2.animate {
  animation: slideDownBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
  opacity: 0;
}

.about-section::before {
  animation: expandWidth 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

.about-section::before.animate {
  opacity: 0;
  animation: expandWidth 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards !important;
}

.about-image.animate {
  animation: rotateInScale 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
  opacity: 0;
}

.about-content.animate {
  animation: slideUpBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
  opacity: 0;
}

.about-content p.animate {
  animation: textReveal 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s forwards;
  opacity: 0;
}

.about-content p.animate .text-line {
  animation: lineRevealSlowly 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

.about-content p.animate .text-line:nth-child(1) { animation-delay: 0.65s; }
.about-content p.animate .text-line:nth-child(2) { animation-delay: 1.15s; }
.about-content p.animate .text-line:nth-child(3) { animation-delay: 1.65s; }
.about-content p.animate .text-line:nth-child(4) { animation-delay: 2.15s; }
.about-content p.animate .text-line:nth-child(5) { animation-delay: 2.65s; }
.about-content p.animate .text-line:nth-child(6) { animation-delay: 3.15s; }
.about-content p.animate .text-line:nth-child(7) { animation-delay: 3.65s; }
.about-content p.animate .text-line:nth-child(8) { animation-delay: 4.15s; }
.about-content p.animate .text-line:nth-child(9) { animation-delay: 4.65s; }

@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
    margin: 40px 0;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-image img {
    max-height: 300px;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 140px 40px;
    margin: 100px 0;
  }

  .about-container {
    max-width: 1300px;
  }

  .about-section h2 {
    font-size: 64px;
    margin-bottom: 20px;
  }

  .about-section::before {
    width: 120px;
    height: 7px;
    margin-bottom: 50px;
  }

  .about-image {
    margin: 60px 0;
  }

  .about-image img {
    max-height: 750px;
  }

  .about-content {
    margin-top: 60px;
    max-width: 1100px;
  }

  .about-content p {
    font-size: 22px;
    line-height: 2.2;
    margin-bottom: 35px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chairman Specific Animations */
@keyframes rotateInScale {
  from {
    opacity: 0;
    transform: rotateY(-30deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

@keyframes slideUpBounce {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  65% {
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    opacity: 0;
    background-position: -1000px 0;
  }
  100% {
    opacity: 1;
    background-position: 1000px 0;
  }
}

@keyframes expandWidth {
  from {
    opacity: 0;
    width: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    width: 100%;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    background-position: 200% center;
  }
  100% {
    opacity: 1;
    background-position: 0% center;
  }
}

@keyframes lineRevealSlowly {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes slideDownBounce {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  65% {
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.chairman-image.animate {
  animation: rotateInScale 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.chairman-content.animate {
  animation: slideUpBounce 1.1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
  opacity: 0;
}

.chairman-content h2.animate {
  animation: slideUpBounce 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s forwards;
  opacity: 0;
}

.chairman-content h3.animate {
  animation: expandWidth 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.35s forwards;
  opacity: 0;
}

.chairman-content p.animate {
  animation: slideUpBounce 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.45s forwards;
  opacity: 0;
}

.chairman-highlights.animate {
  animation: slideUpBounce 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.55s forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .chairman-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .chairman-section {
    padding: 40px 20px;
  }

  .chairman-content h2 {
    font-size: 24px;
  }

  .chairman-content p {
    font-size: 14px;
  }
}


@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .logo-section {
    justify-content: center;
    text-align: center;
  }
  
  .menu {
      width: 100%;
      margin-left: 0;
  }
  
  /* Only apply this to non-mobile (tablets) */
  @media (min-width: 768px) {
    .menu ul {
      justify-content: center;
    }
  }
}


@media (max-width: 767px) {
  /* Prevent horizontal scroll on mobile */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
  }

  * {
    max-width: 100%;
  }

  .top-bar {
    display: none;
  }

  .main-header {
    padding: 12px 15px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .header-container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .logo-section {
    max-width: calc(100vw - 80px);
  }

  .logo-section img {
    height: 60px;
  }

  .college-info h1 {
    font-size: 16px;
  }

  .menu {
      width: 100%;
      margin-left: 0;
      position: static;
  }

  /* Reset default menu styles for mobile */
  .menu ul {
    display: none !important;
    list-style: none;
    flex-wrap: nowrap;
    padding-top: 0;
    gap: 0;
  }

  /* Full-page menu overlay when active */
  .menu ul.active {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #1e5631 0%, #2d7a3e 50%, #1e5631 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    padding: 100px 30px 40px 30px;
    margin: 0;
    animation: slideInMenu 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  /* Full-page menu overlay when active */
  .menu ul.active {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #1e5631 0%, #2d7a3e 50%, #1e5631 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    padding: 100px 30px 40px 30px;
    margin: 0;
    animation: slideInMenu 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Close icon in menu */
  .menu ul.active::before {
    content: "✕";
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  /* Modern menu items */
  .menu ul li {
    padding: 18px 25px;
    margin: 0;
    text-align: center;
    border: none;
    font-size: 20px;
    color: #ffffff;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    letter-spacing: 1px;
    height: auto;
    min-height: 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInItem 0.4s ease forwards;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  @keyframes fadeInItem {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .menu ul li:nth-child(1) { animation-delay: 0.1s; }
  .menu ul li:nth-child(2) { animation-delay: 0.15s; }
  .menu ul li:nth-child(3) { animation-delay: 0.2s; }
  .menu ul li:nth-child(4) { animation-delay: 0.25s; }
  .menu ul li:nth-child(5) { animation-delay: 0.3s; }
  .menu ul li:nth-child(6) { animation-delay: 0.35s; }
  .menu ul li:nth-child(7) { animation-delay: 0.4s; }
  .menu ul li:nth-child(8) { animation-delay: 0.45s; }
  .menu ul li:nth-child(9) { animation-delay: 0.5s; }
  .menu ul li:nth-child(10) { animation-delay: 0.55s; }
  .menu ul li:nth-child(11) { animation-delay: 0.6s; }
  .menu ul li:nth-child(12) { animation-delay: 0.65s; }
  .menu ul li:nth-child(13) { animation-delay: 0.7s; }
  .menu ul li:nth-child(14) { animation-delay: 0.75s; }
  .menu ul li:nth-child(15) { animation-delay: 0.8s; }

  .menu ul li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .menu ul li:active {
    transform: scale(0.98) translateX(8px);
  }

  .menu ul li:last-child {
    margin-bottom: 0;
  }

  .menu ul li.mobile-only {
    display: flex;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 500;
    margin-top: 0;
  }

  .menu ul li.mobile-only:first-of-type {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  .menu ul li.mobile-only:first-of-type::before {
    content: "MORE";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
  }

  .menu ul li:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
  }
  
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    max-width: 100%;
  }

  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.08);
  }

  /* Keep menu toggle above menu */
  .main-header .menu-toggle {
    z-index: 100002;
  }

  .logo-section {
    gap: 12px;
    align-items: center;
    flex-grow: 0;
    max-width: calc(100% - 60px);
  }

  .logo-section img {
    height: 55px;
    width: auto;
    flex-shrink: 0;
  }

  .college-info {
    flex: 1;
    overflow: hidden;
  }

  .college-info h1 {
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
    margin: 0;
    color: #1e5631;
    font-weight: 700;
    letter-spacing: 0.3px;
  }
  
  .college-info p {
      font-size: 9px;
      line-height: 1.4;
  }

  .logo-circle {
      width: 50px;
      height: 50px;
      font-size: 20px;
  }
}

/* ===== QUOTE SECTION FOR PHARMACY & BEAUTY ===== */
.quote-section {
  background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
  padding: 120px 24px;
  margin: 80px 0;
}

.quote-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.quote-section h2 {
  font-size: 48px;
  color: #1e5631;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.quote-subtitle {
  font-size: 20px;
  color: #2d7a3e;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quote-section::before {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #1e5631 0%, #2d7a3e 100%);
  margin: 0 auto 40px auto;
  border-radius: 3px;
}

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

.quote-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(30, 86, 49, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e5631 0%, #2d7a3e 50%, #1e5631 100%);
}

.quote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 86, 49, 0.2);
}

.quote-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.quote-text {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-author {
  font-size: 14px;
  color: #2d7a3e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #e0e0e0;
}

.quote-card.animate {
  animation: fadeInUpCard 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.quote-card:nth-child(1) { animation-delay: 0.1s; }
.quote-card:nth-child(2) { animation-delay: 0.2s; }
.quote-card:nth-child(3) { animation-delay: 0.3s; }
.quote-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUpCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .quote-section {
    padding: 60px 20px;
    margin: 40px 0;
  }

  .quote-section h2 {
    font-size: 32px;
  }

  .quote-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-card {
    padding: 30px 20px;
  }

  .quote-text {
    font-size: 16px;
    min-height: 70px;
  }
}

@media (min-width: 1024px) {
  .quote-section {
    padding: 140px 40px;
    margin: 100px 0;
  }

  .quote-section h2 {
    font-size: 56px;
    margin-bottom: 20px;
  }

  .quote-subtitle {
    font-size: 22px;
    margin-bottom: 70px;
  }

  .quotes-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }

  .quote-card {
    padding: 45px 35px;
  }
}

/* ===== PRESENTING SECTION ===== */
.presenting-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.presenting-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(46, 122, 62, 0.03) 50%, transparent 70%);
  animation: shimmer 6s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.presenting-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.presenting-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 3em;
  font-weight: 700;
  color: #1e5631;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
  position: relative;
  animation: fadeInDown 1s ease-out;
}

.presenting-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #1e5631, #2d7a3e);
  margin: 20px auto 0;
  border-radius: 2px;
  animation: expandWidth 1.2s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

.presenting-content {
  animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.presenting-content p {
  font-family: 'Georgia', 'Palatino', serif;
  font-size: 1.2em;
  line-height: 1.9;
  color: #333;
  margin-bottom: 25px;
  text-align: justify;
  text-indent: 50px;
  opacity: 0;
  animation: fadeInText 1s ease-out forwards;
}

.presenting-content p:nth-child(1) {
  animation-delay: 0.5s;
}

.presenting-content p:nth-child(2) {
  animation-delay: 0.8s;
}

.presenting-content p:nth-child(3) {
  animation-delay: 1.1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .presenting-section {
    padding: 50px 15px;
  }

  .presenting-title {
    font-size: 2em;
    letter-spacing: 1px;
  }

  .presenting-title::after {
    width: 80px;
  }

  .presenting-content p {
    font-size: 1em;
    line-height: 1.7;
    text-indent: 30px;
  }
}

@media (max-width: 480px) {
  .presenting-title {
    font-size: 1.6em;
  }

  .presenting-content p {
    font-size: 0.95em;
    text-align: left;
  }
}


/* ===== HONOURED SECTION ===== */
.honoured-section {
  background: linear-gradient(135deg, #fffbf0 0%, #f8fff9 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.honoured-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.honoured-title {
  font-family: 'Cinzel', serif;
  font-size: 3em;
  font-weight: 700;
  color: #1e5631;
  margin-bottom: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  border-bottom: 3px solid #d4af37;
  display: inline-block;
  padding-bottom: 15px;
}

.honoured-content {
  background: #fff;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  border-top: 6px solid #1e5631;
}

.chairman-img-container {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
}

.chairman-image {
  width: min(380px, 90vw);
  aspect-ratio: 3 / 4;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 10px solid #fff;
  outline: 2px solid #d4af37;
  outline-offset: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 1;
  transition: transform 0.3s ease;
}

.chairman-image:hover {
  transform: scale(1.05);
}

.chairman-name {
  font-family: 'Cinzel', serif;
  font-size: 2.5em;
  color: #222;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.chairman-bio p {
  font-family: 'Lora', serif;
  font-size: 1.3em;
  line-height: 2;
  color: #444;
  max-width: 900px;
  margin: 0 auto 25px;
  text-align: justify;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .honoured-title {
    font-size: 2em;
  }
  .chairman-name {
    font-size: 1.8em;
  }
  .chairman-bio p {
    text-align: left;
    font-size: 1.1em;
  }
  .chairman-image {
    width: min(320px, 92vw);
    aspect-ratio: 3 / 4;
    height: auto;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #1e5631 0%, #2d7a3e 100%);
  color: #fff;
  padding: 35px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.4em;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer-contact {
  font-family: 'Lora', serif;
  font-size: 1.05em;
  opacity: 0.95;
}

.footer-label {
  margin-right: 8px;
  opacity: 0.9;
}

.footer-email {
  color: #fffbf0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.footer-email:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95em;
  opacity: 0.85;
}

/* ===== PRINCIPAL MESSAGE ===== */
.principal-section {
  background: linear-gradient(135deg, #fffbf0 0%, #f8fff9 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.principal-container {
  max-width: 1100px;
  margin: 0 auto;
}

.principal-title {
  font-family: 'Cinzel', serif;
  font-size: 3em;
  color: #1e5631;
  margin-bottom: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  border-bottom: 3px solid #d4af37;
  display: inline-block;
  padding-bottom: 15px;
}

.principal-card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  border-top: 6px solid #1e5631;
}

.principal-media {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.principal-name {
  font-family: 'Cinzel', serif;
  font-size: 2.5em;
  color: #222;
  margin-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.principal-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.principal-card p {
  font-family: 'Lora', serif;
  font-size: 1.3em;
  line-height: 2;
  color: #444;
  margin: 0 auto 25px;
}

.principal-lead {
  font-size: 1.3em;
  color: #1f3b2a;
}

.principal-image {
  width: min(380px, 90vw);
  aspect-ratio: 3 / 4;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 10px solid #fff;
  outline: 2px solid #d4af37;
  outline-offset: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.principal-image:hover {
  transform: scale(1.05);
}

.principal-quote {
  max-width: 900px;
  margin: 0 auto 25px;
  padding: 18px 18px;
  border-left: 4px solid #d4af37;
  background: rgba(30, 86, 49, 0.04);
  border-radius: 10px;
}

.principal-quote p {
  margin: 0 0 12px;
}

.principal-quote p:last-child {
  margin-bottom: 0;
}

.principal-highlight {
  font-weight: 700;
  color: #1e5631;
}

@media (max-width: 768px) {
  .principal-section {
    padding: 70px 15px;
  }

  .principal-title {
    font-size: 2em;
  }

  .principal-card {
    padding: 40px 22px;
  }

  .principal-card p {
    text-align: left;
    font-size: 1.1em;
  }

  .principal-image {
    width: min(320px, 92vw);
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .principal-name {
    font-size: 1.8em;
  }
}

/* ===== GLOBAL MOBILE POLISH ===== */
img {
  max-width: 100%;
  height: auto;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(30, 86, 49, 0.14), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(212, 175, 55, 0.18), transparent 55%),
              linear-gradient(135deg, #ffffff 0%, #f6fff8 35%, #fff9ef 100%);
  padding: 80px 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-title {
  font-family: 'Cinzel', serif;
  font-size: 2.4em;
  text-align: center;
  color: #1e5631;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}

.gallery-subtitle {
  font-family: 'Lora', serif;
  text-align: center;
  color: #2e2e2e;
  opacity: 0.92;
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.08em;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.22), rgba(212, 175, 55, 0.22));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 450ms ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: -40% -40%;
  background: conic-gradient(from 180deg, rgba(212, 175, 55, 0.0), rgba(212, 175, 55, 0.6), rgba(30, 86, 49, 0.0));
  opacity: 0.35;
  animation: galleryShimmer 6s linear infinite;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(30, 86, 49, 0.18);
}

.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.gallery-item.animate {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

.gallery-item:hover img {
  transform: scale(1.03);
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes galleryShimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 15px;
  }

  .gallery-title {
    font-size: 2em;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-item img {
    height: 180px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 210px;
  }
}

@media (max-width: 767px) {
  /* Header layout: prevent logo overflow and center content */
  .header-container {
    gap: 10px;
    padding-right: 70px; /* reserve space for fixed hamburger */
  }

  .logo-section {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
  }

  /* Main logo (the first image without .header-logo-image) */
  .logo-section > img:not(.header-logo-image) {
    order: 1;
    height: 56px;
  }

  .college-info {
    order: 2;
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }

  .college-info h1 {
    font-size: 18px;
    line-height: 1.2;
    width: 100%;
    text-align: center;
  }

  .college-info .affiliation {
    font-size: 11px;
    line-height: 1.35;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .college-info p {
    line-height: 1.3;
  }

  .header-logo-image {
    order: 3;
    height: 40px !important;
    margin-left: 0;
    margin-top: 6px;
    margin-right: 8px;
  }

  /* Hamburger placement: keep away from content edges */
  .menu-toggle {
    top: 12px;
    right: 12px;
  }

  /* Mobile menu: better spacing and tap targets */
  .menu ul.active {
    padding: 90px 18px 30px 18px;
  }

  .menu ul li {
    font-size: 16px;
    padding: 14px 12px;
  }

  /* Slider buttons: slightly lower profile */
  .slider button {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .college-info h1 {
    font-size: 15px;
  }

  .logo-section img {
    height: 52px;
  }

  .header-logo-image {
    height: 38px !important;
  }

  .footer-brand {
    font-size: 1.2em;
  }
}


