:root {
  --primary-color: #0d3b66;
  --primary-light: #165691;
  --secondary-color: #f4f7f6;
  --accent-color: #d4af37;
  --accent-hover: #e5c356;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 8px;
  --font-body: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary-color);
}
.text-accent {
  color: var(--accent-color);
}
.text-white {
  color: var(--white);
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}
.section-title-left::after {
  left: 0;
  transform: none;
}

/* Layout Utilities */
.section-padding {
  padding: 5rem 0;
}
.bg-light {
  background-color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Header & Navbar */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  padding: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  transition: var(--transition);
}

header.scrolled .nav-container {
  padding: 0.5rem 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.logo-text h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}
.logo-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
}

/* Mobile Nav */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    padding: 5rem 2rem 2rem;
    z-index: 1001;
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: var(--border-radius);
    transition:
      background-color 0.2s ease,
      color 0.2s ease;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
  }
  .nav-links.active {
    right: 0;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 1002;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 1.5rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}
.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.footer-socials a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}
.footer-col i.fas {
  color: var(--accent-color);
  width: 20px;
  text-align: center;
  margin-right: 5px;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Global Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Pages Banner */
.page-header {
  background:
    linear-gradient(rgba(13, 59, 102, 0.85), rgba(13, 59, 102, 0.85)),
    url("https://img1.wsimg.com/isteam/ip/8e5084ed-0c43-4555-9a1e-8642cd2d92ef/image%2012.jpg")
      center/cover;
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--white);
}
.page-header h1 {
  color: var(--accent-color);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Image Placeholder Component */
.image-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Course Curriculum Grid */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.semester-card {
  display: flex;
  flex-direction: column;
}

.semester-card h3 {
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.curriculum-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}
.curriculum-list li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* Contact Page Styles */
.contact-info-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-info-card > div:last-child {
  min-width: 0;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Admissions Page Styles */
.step-container {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.step-container:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -30px;
  width: 2px;
  background-color: var(--accent-color);
  opacity: 0.5;
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.1);
}
.error-msg {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.form-group.error .form-control {
  border-color: #dc3545;
}
.form-group.error .error-msg {
  display: block;
}
#contact-success,
#success-message {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  margin-top: 3rem;
  color: var(--text-light);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-card {
  padding: 0;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Extracted from admissions.html */

.step-container {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.step-container:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -30px;
  width: 2px;
  background-color: var(--accent-color);
  opacity: 0.5;
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.1);
}
.error-msg {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.form-group.error .form-control {
  border-color: #dc3545;
}
.form-group.error .error-msg {
  display: block;
}
#success-message {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Extracted from contact.html */

.contact-info-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.1);
}
.error-msg {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.form-group.error .form-control {
  border-color: #dc3545;
}
.form-group.error .error-msg {
  display: block;
}
#contact-success {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  text-align: center;
}
.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  margin-top: 3rem;
  color: var(--text-light);
  font-size: 1.2rem;
}

/* Extracted from campus.html */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  height: 250px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rangoli-grid {
  grid-template-columns: repeat(2, minmax(240px, 280px));
  justify-content: center;
  justify-items: center;
}
@media (max-width: 768px) {
  .rangoli-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.rangoli-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem;
}
.rangoli-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-90deg) scale(1.5);
  transform-origin: center;
  display: block;
}
.rangoli-item img.rangoli-one {
  transform: rotate(-90deg) scale(1.06);
}
.rangoli-item .gallery-overlay {
  display: none;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 59, 102, 0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-overlay h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

/* Extracted from academics.html */

/* Faculty Cards Grid */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faculty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.faculty-img-wrapper {
  margin-bottom: 1.5rem;
  width: 120px;
  height: 120px;
}

.faculty-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondary-color);
  font-size: 3.5rem;
  color: var(--primary-color);
  border: 3px solid rgba(212, 175, 55, 0.3); /* Accent color border */
  display: flex;
  align-items: center;
  justify-content: center;
}

.faculty-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.faculty-info .position {
  font-weight: 600;
  margin-bottom: 1rem;
}

.faculty-info .text-sm {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.faculty-info i {
  color: var(--accent-color);
  width: 20px;
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background-color: var(--white);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: var(--transition);
}
.accordion-header:hover {
  background-color: var(--secondary-color);
}
.accordion-header.active {
  background-color: var(--primary-color);
  color: var(--white);
}
.accordion-header i {
  transition: transform 0.3s ease;
}
.accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: var(--white);
}
.accordion-inner {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.curriculum-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.curriculum-list li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Auto-extracted Inline Styles */
.custom-style-1 {
  background:
    linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.9)),
    url("https://img1.wsimg.com/isteam/ip/8e5084ed-0c43-4555-9a1e-8642cd2d92ef/image%2012.jpg")
      center/cover fixed;
}
.custom-style-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}
.custom-style-3 {
  margin-bottom: 2rem;
}
.custom-style-4 {
  margin-top: 3rem;
  background-color: var(--secondary-color);
}
.custom-style-5 {
  margin-top: 1rem;
  list-style-type: disc;
  padding-left: 1.5rem;
}
.custom-style-6 {
  position: sticky;
  top: 120px;
}
.custom-style-7 {
  margin-bottom: 1.5rem;
}
.custom-style-8 {
  width: 100%;
}
.custom-style-9 {
  color: var(--white);
}
.custom-style-10 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0;
}
.custom-style-11 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}
.custom-style-12 {
  list-style: none;
}
.custom-style-13 {
  color: var(--accent-color);
  margin-right: 8px;
}
.custom-style-14 {
  padding: 12rem 0 6rem;
  background:
    linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.9)),
    url("https://img1.wsimg.com/isteam/ip/8e5084ed-0c43-4555-9a1e-8642cd2d92ef/image%2012.jpg")
      center/cover fixed;
}
.custom-style-15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}
.custom-style-16 {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.custom-style-17 {
  margin-top: 1.5rem;
  color: var(--text-dark);
}
.custom-style-18 {
  margin-bottom: 1rem;
}
.custom-style-19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
  direction: rtl;
}
.custom-style-20 {
  direction: ltr;
}
.custom-style-21 {
  max-width: 600px;
  margin: 0 auto 3rem;
}
.custom-style-22 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.custom-style-23 {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.custom-style-24 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}
.custom-style-25 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.custom-style-26 {
  font-weight: 600;
  font-size: 0.9rem;
}
.custom-style-27 {
  background:
    linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.9)),
    url("https://img1.wsimg.com/isteam/ip/8e5084ed-0c43-4555-9a1e-8642cd2d92ef/image%2012.jpg")
      center/cover fixed;
}
.custom-style-28 {
  background-color: var(--primary-color);
  color: var(--white);
}
.custom-style-29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.custom-style-30 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.custom-style-31 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.custom-style-32 {
  opacity: 0.8;
  font-size: 1.1rem;
}
.custom-style-33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.custom-style-34 {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.custom-style-35 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.custom-style-36 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.custom-style-37 {
  border: 0;
}
.custom-style-38 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.custom-style-39 {
  text-align: center;
}
.custom-style-40 {
  width: 120px;
  height: 120px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
}
.custom-style-41 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.custom-style-42 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.custom-style-43 {
  font-size: 0.9rem;
}
.custom-style-44 {
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}
.custom-style-45 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.custom-style-46 {
  color: var(--accent-color);
  margin-right: 10px;
}
.custom-style-47 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(13, 59, 102, 0.8), rgba(13, 59, 102, 0.9)),
    url("https://img1.wsimg.com/isteam/ip/8e5084ed-0c43-4555-9a1e-8642cd2d92ef/image%2012.jpg")
      center/cover fixed;
}
.custom-style-48 {
  font-size: 4rem;
  text-transform: uppercase;
}
.custom-style-49 {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--secondary-color);
}
.custom-style-50 {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.custom-style-51 {
  background: transparent;
  border: 2px solid var(--white);
}
.custom-style-52 {
  background-color: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.custom-style-53 {
  font-weight: 600;
}
.custom-style-54 {
  margin-left: 5px;
}
.custom-style-55 {
  background-color: var(--primary-color);
  color: var(--accent-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.custom-style-56 {
  color: var(--white);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.custom-style-57 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.custom-style-58 {
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.custom-style-59 {
  margin-bottom: 0;
}
.custom-style-60 {
  background-color: var(--primary-color);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.custom-style-61 {
  margin-top: 4rem;
}
.custom-style-62 {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Achievements Grid */
.achievements-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

  /* Hero Section Mobile */
  .custom-style-47 {
    height: auto;
    min-height: 100vh;
    padding: 7rem 0 3rem;
  }

  .custom-style-48 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .custom-style-49 {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 0.5rem;
  }

  .hero-tagline {
    font-size: 0.95rem !important;
  }

  .hero-stats {
    gap: 1.25rem !important;
    margin-top: 1.5rem !important;
  }

  .hero-stats > div {
    min-width: 120px;
  }

  .hero-stats > div > div:first-child {
    font-size: 1.8rem !important;
  }

  .hero-stats h3 {
    font-size: 1rem !important;
  }

  .hero-stats p {
    font-size: 0.85rem !important;
  }

  /* Page header general mobile fix */
  .page-header {
    padding: 7rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}

/* ============================================
   Google Translate - Hide Default UI
   ============================================ */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

#google_translate_element {
  display: none !important;
}

.skiptranslate {
  display: none !important;
}

/* ============================================
   Language Switcher - Desktop Dropdown
   ============================================ */
.lang-switcher {
  position: relative;
  z-index: 1003;
  margin-left: 0.5rem;
}

.lang-current-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid rgba(13, 59, 102, 0.15);
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(13, 59, 102, 0.05),
    rgba(212, 175, 55, 0.08)
  );
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-current-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(13, 59, 102, 0.1),
    rgba(212, 175, 55, 0.15)
  );
  border-color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.lang-current-btn .fa-globe {
  font-size: 1rem;
  color: var(--accent-color);
}

.lang-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 170px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.lang-option:hover {
  background: linear-gradient(
    135deg,
    rgba(13, 59, 102, 0.05),
    rgba(212, 175, 55, 0.08)
  );
  padding-left: 1.2rem;
}

.lang-option.active {
  background: linear-gradient(
    135deg,
    rgba(13, 59, 102, 0.08),
    rgba(212, 175, 55, 0.12)
  );
  color: var(--primary-color);
  font-weight: 600;
}

.lang-option.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: auto;
  color: var(--accent-color);
}

.lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

/* ============================================
   Language Switcher - Mobile Nav
   ============================================ */
.mobile-lang-section {
  width: 100%;
  padding: 1rem 0 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-lang-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.mobile-lang-title .fa-globe {
  color: var(--accent-color);
}

.mobile-lang-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-lang-btn {
  padding: 0.45rem 1rem;
  border: 1.5px solid rgba(13, 59, 102, 0.15);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Hide desktop switcher on mobile, show mobile section */
@media (max-width: 992px) {
  .lang-switcher {
    display: none;
  }
}

@media (min-width: 993px) {
  .mobile-lang-section {
    display: none;
  }
}
