/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --primary-brand-color: #264488;
  --secondary-color: #2a80b9;
  --secondary-brand-color: #ce7c28;
  /* --accent-color: #e74c3c;  */
  --accent-color: #ec5800;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #fff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.fee-link{
    color : var(--secondary-brand-color);
}

.cao {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 2em 0em;
  padding: 1em;
}

/* Header & Navigation */
header {
  background-color: var(--primary-brand-color);
  padding: 0.2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--box-shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

img {
  box-shadow: var(--box-shadow);
}

.logo a img {
  height: 70px;
  border-radius: 6px;
  opacity: 0.9;
}

nav ul {
  display: none;
  width: 100%;
  flex-direction: column;
  margin-top: 1rem;
}

nav ul.show {
  display: flex;
}

nav ul li {
  list-style: none;
  margin: 0.5rem 0;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  transition: var(--transition);
  font-size: 0.8rem;
}

nav ul li a:hover {
  color: var(--secondary-brand-color);
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  margin: 1em 0em;
}

.btn:hover {
  background-color: var(--secondary-brand-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--text-light);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.dropdown-content a {
  color: var(--primary-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: var(--light-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-icon {
  font-size: 0.7em;
  margin-left: 5px;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    width: 100%;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown .dropbtn {
    width: 100%;
    text-align: left;
    padding: 1rem;
  }
}

/* Layout */
.container {
  width: 100%;
  /* padding: 0 1rem;  */
  margin: 0 auto;
}

/* Typography */
.section-title {
  text-align: center;
  margin: 2rem 0;
  color: var(--primary-color);
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 0.5rem auto 0;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-color);
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.btn.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card p {
  margin-bottom: 0.5rem;
  flex-grow: 1;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

/* Grid System */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* Course Detail */
.course-detail {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.course-detail h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.course-detail h2 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

.course-detail ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.course-detail li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.course-detail li::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Testimonials */
.testimonial {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: rgba(52, 152, 219, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
  text-align: right;
}


/* Forms */
form {
  background-color: var(--text-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.2rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

form button[type="submit"] {
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
}

form button[type="submit"]:hover {
  background-color: #2980b9;
}

/* Map */
.map {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: var(--box-shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: auto;
}

footer p {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (min-width: 576px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  nav ul {
    display: flex;
    width: auto;
    flex-direction: row;
    margin-top: 0;
  }

  nav ul li {
    margin: 0 0.75rem;
  }

  /* .hero {
    padding: 8rem 1rem;
  } */

  .hero h1,
  .hero h2 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-content {
    margin-top: 2em;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 5em 0em;
  }

  .map {
    height: 400px;
  }

  .course-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
  }

  .container {
    max-width: 1200px;
    padding: 0 2rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.testimonial,
.faq-item,
form {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Print Styles */
@media print {
  header,
  footer,
  .btn {
    display: none;
  }

  .container {
    padding: 0;
    max-width: 100%;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .grid {
    grid-template-columns: 1fr !important;
  }
}

/* FOOTER STYLES */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 0 0;
  font-family: "Noto Sans", sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section h3 {
  color: var(--light-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--light-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-light);
  background-color: var(--dark-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--text-light);
  border: none;
  padding: 0 1.2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #c0392b;
}

.footer-bottom {
  background-color: var(--dark-color);
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--secondary-brand-color);
}

.language-emoji {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Section Styling */
/* section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
} */

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styling */
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem 0;
  font-size: 1.5rem;
  color: #3498db;
  margin-bottom: 0.5rem;
}

/* List Styling */
.card ul {
  padding: 0 1.5rem 1rem;
  margin: 0;
  list-style-type: none;
  height: 280px;
}

.card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  color: #555;
}

.card ul li:last-child {
  border-bottom: none;
}

/* Button Styling */
.card .btn {
  display: block;
  text-align: center;
  background: #3498db;
  color: white;
  padding: 0.75rem;
  margin: 0 1.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card .btn:hover {
  background: #2980b9;
}

.hero-a {
  position: relative;
  height: 70vh; /* or your preferred height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  margin-bottom: 2em;
  box-shadow: var(--box-shadow);
}

.hero {
  position: relative;
  height: 70vh; /* or your preferred height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
  box-shadow: var(--box-shadow);
}

.hero h2,
.hero p {
  color: var(--light-color);
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  /* background-color: #264488; */
  width: fit-content;
  padding: 2em;
  margin-left: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  justify-content: center;
  align-items: flex-start;
}

.cbo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #2c3e50c0;
  text-align: left;
  padding: 1em;
  border-radius: 0.5em;
  box-shadow: var(--box-shadow);
  filter: blur(0.5px);
}

.cbo h1 {
  font-size: 3rem;
  max-width: 15ch;
  color: var(--light-color);
}

.cbo p {
  color: var(--text-light);
}

.act-tab {
  border-bottom: solid 1px #3498db;
}

/* New hostel section styles */
.hostel-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--box-shadow);
  border-top: 4px solid var(--accent-color);
}

.hostel-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.hostel-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-brand-color);
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

/* Social Work Specific Styles */
.impact-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--accent-color);
}

.impact-card h4 {
  color: var(--primary-brand-color);
  margin-bottom: 0.75rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
}

.comparison-table th {
  background-color: var(--primary-brand-color);
  color: white;
  padding: 1rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.check-mark {
  color: #4caf50;
  font-weight: bold;
}

.x-mark {
  color: #f44336;
  font-weight: bold;
}

.module-highlight {
  background-color: rgba(42, 128, 185, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  display: inline-block;
}

/* Landscape Dropdown Styles */
.landscape-dropdown {
  width: auto;
  min-width: 500px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  white-space: nowrap;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem;
}

.language-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.language-item:hover {
  background-color: rgba(42, 128, 185, 0.1);
}

.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.language-name {
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .landscape-dropdown {
    min-width: 100%;
    left: 0;
    transform: none;
  }

  .language-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  .language-grid {
    grid-template-columns: 1fr 1fr;
  }

  .language-item {
    white-space: normal;
  }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.tooltip {
  position: absolute;
  right: 70px;
  width: max-content;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tooltip:before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
}

.whatsapp-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .tooltip {
    display: none;
  }
}

/* Namespaced Curriculum Styles */
.teslak-curriculum {
  margin: 3rem 0;
  padding: 0 1rem;
  font-family: "Noto Sans", sans-serif;
}

.teslak-section-title {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.teslak-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #2a80b9;
  margin: 0.5rem auto 0;
}

.teslak-icon {
  color: #ec5800;
  margin-right: 0.5rem;
}

.teslak-intro {
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.teslak-highlight {
  color: #264488;
  font-weight: 600;
}

.teslak-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.teslak-curriculum-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.teslak-table-header {
  background-color: #264488;
  color: white;
}

.teslak-table-row {
  transition: background-color 0.2s ease;
}

.teslak-table-row:hover {
  background-color: rgba(42, 128, 185, 0.05);
}

.teslak-module-header,
.teslak-topics-header {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.teslak-module-cell,
.teslak-topics-cell {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.teslak-module-cell {
  font-weight: 500;
  color: #2c3e50;
  width: 35%;
}

.teslak-topics-cell {
  color: #555;
}

/* Striped rows for better readability */
.teslak-table-body .teslak-table-row:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .teslak-curriculum {
    padding: 0;
  }

  .teslak-section-title {
    font-size: 1.5rem;
    padding: 0 1rem 0.5rem;
  }

  .teslak-curriculum-table {
    min-width: 100%;
  }

  .teslak-module-cell,
  .teslak-topics-cell {
    padding: 0.8rem 1rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .teslak-module-cell {
    padding-top: 1rem;
    font-weight: 600;
    color: #264488;
    border-bottom: none;
  }

  .teslak-topics-cell {
    padding-bottom: 1rem;
  }

  .teslak-table-row {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
  }

  .teslak-table-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .teslak-table-header {
    display: none;
  }

  .teslak-module-cell::before,
  .teslak-topics-cell::before {
    content: attr(data-label);
    display: inline-block;
    font-weight: bold;
    margin-right: 0.5rem;
    color: #2c3e50;
  }
}

@media (max-width: 480px) {
  .teslak-section-title {
    font-size: 1.3rem;
  }

  .teslak-intro {
    text-align: left;
    padding: 0 0.5rem;
  }
}

/* Course Intro */
.course-intro {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-intro h2 {
  color: var(--primary-brand-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.course-intro img {
  max-width: 40%;
  box-shadow: var(--box-shadow);
  margin-bottom: 1em;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: var(--primary-brand-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.comparison-table th {
  background-color: var(--primary-brand-color);
  color: white;
  padding: 1.2rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.check-mark {
  color: #4caf50;
  font-weight: bold;
}

.x-mark {
  color: #f44336;
  font-weight: bold;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: rgba(52, 152, 219, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
  text-align: right;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-brand-color),
    var(--secondary-color)
  );
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-brand-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .course-intro {
    padding: 2rem;
    margin-top: 0;
  }

  .course-intro img {
    max-width: 80%;
    box-shadow: var(--box-shadow);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Hostel Section */
.hostel-section {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
}

.hostel-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.hostel-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hostel-feature i {
  color: var(--accent-color);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: var(--primary-brand-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.comparison-table th {
  background-color: var(--primary-brand-color);
  color: white;
  padding: 1.2rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.check-mark {
  color: #4caf50;
  font-weight: bold;
}

.x-mark {
  color: #f44336;
  font-weight: bold;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: rgba(52, 152, 219, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
  text-align: right;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-brand-color),
    var(--secondary-color)
  );
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-brand-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Module List */
.module-list {
  columns: 2;
  column-gap: 2rem;
}

.module-list li {
  margin-bottom: 0.8rem;
  break-inside: avoid;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .course-intro {
    padding: 2rem;
    margin-top: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .module-list {
    columns: 1;
  }
}

/* Hostel Section */
.hostel-section {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
}

.hostel-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.hostel-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hostel-feature i {
  color: var(--accent-color);
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0;
  border-radius: var(--border-radius);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Founder Section Styles */
.founder-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.founder-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-bio {
  text-align: center;
  max-width: 600px;
}

.founder-bio h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.founder-bio p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* About Content Styles */
.about-content {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.story-text {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-text blockquote {
  font-style: italic;
  font-size: 1.4rem;
  color: #2c3e50;
  border-left: 4px solid #3498db;
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.closing-statement {
  font-weight: bold;
  font-size: 1.2rem;
  color: #2c3e50;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .founder-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
  }

  .founder-bio {
    text-align: left;
    flex: 1;
  }

  .founder-image {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 992px) {
  .founder-section {
    padding: 5rem 2rem;
  }

  .founder-content {
    gap: 4rem;
  }

  .founder-image {
    width: 300px;
    height: 300px;
  }

  .story-text {
    font-size: 1.15rem;
  }
}

/* Animation for visual appeal */
.founder-image {
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: scale(1.03);
}

.story-text p {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: calc(var(--animation-order) * 100ms);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.other-courses {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #7f8c8d;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.course-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.course-card p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.course-highlights {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.course-highlights li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #34495e;
}

.course-highlights i {
  color: #2ecc71;
  margin-right: 0.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 2px solid #3498db;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #3498db;
  color: #fff;
}

@media (max-width: 768px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .other-courses {
    padding: 3rem 1rem;
  }
}

/* Add this to your CSS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.modal-message {
  margin-bottom: 1.5rem;
  color: #666;
}

.modal-close {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.modal-close:hover {
  background-color: #45a049;
}

.map {
  position: relative;
}
.map-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.map-fallback.active {
  display: flex;
}

/* Study abroad start */
/* body {
            font-family: 'Noto Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        } */

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 20px;
} */

/* .btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
} */

.section-title {
  color: var(--primary-brand-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Hero Section */
.hero-study {
  background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.8)),
    url("../assets/images/study-abroad-europe2.webp");
  background-size: cover;
  background-position: top center;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-study h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-study p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Flag Icons */
.flag-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.flag {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  background: white;
}

.flag img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  color: var(--primary-brand-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Services List */
.services-list {
  columns: 2;
  column-gap: 2rem;
  margin: 2rem 0;
}

.service-item {
  margin-bottom: 1rem;
  break-inside: avoid;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-item i {
  color: var(--accent-color);
  margin-top: 3px;
}

/* University Logos */
.university-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.university-logo {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.university-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Alumni Grid */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.alumni-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.alumni-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--accent-color);
}

/* Contact Table */
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.contact-table th {
  background-color: var(--primary-brand-color);
  color: white;
  padding: 1rem;
  text-align: left;
}

.contact-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.contact-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .services-list {
    columns: 1;
  }

  .flag-container {
    gap: 1rem;
  }

  .flag {
    width: 60px;
    height: 60px;
  }

  .flag img {
    width: 40px;
    height: 40px;
  }
}
.glove {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 2em;
}

.heroic {
  margin-top: 1em;
}
/* Study abroad end */

/* Work abroad end */

/* Hero Section */
.hero-work {
  background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.8)),
    url("../assets/images/work-abroad-europe.webp");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-work h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-work p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Country Comparison Table */
.country-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.country-table th {
  background-color: var(--primary-brand-color);
  color: white;
  padding: 1.2rem;
  text-align: left;
}

.country-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.country-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.country-table tr:hover {
  background-color: #f1f1f1;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--primary-brand-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Employer Logos */
.employer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.employer-logo {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.employer-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* FAQ Section */
.faq-section {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-brand-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Contact Table */
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.contact-table th {
  background-color: var(--primary-brand-color);
  color: white;
  padding: 1rem;
  text-align: left;
}

.contact-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.contact-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .country-table,
  .contact-table {
    display: block;
    overflow-x: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Visa Badges */
.visa-badge {
  display: inline-block;
  background-color: #e8f5e9;
  color: var(--primary-brand-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #c8e6c9;
}

/* Work abroad end */

/* Slim Top Nav Styles */
.slim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: #004b3c; Teal-dark for elegance */
  background: var(--dark-color);
  color: white;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 1rem;
}

.slim-links a {
  color: #a5e5f8;
  margin-right: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.slim-links a:hover {
  color: #ffd700; /* Gold accent on hover */
}

.slim-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  min-width: 200px;
}

.marquee-content {
  display: inline-block;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive stack */
@media (max-width: 600px) {
  .slim-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .slim-marquee {
    width: 100%;
    margin-top: 0.3rem;
  }
}

/*gallery styling*/

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-color);
}

.filter-btn {
  background: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-brand-color);
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--secondary-color);
  color: white;
}

.gallery-container {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.orang{ color: #EC5800; }

/* Responsive Table Styles */
.responsive-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.elegant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.elegant-table th,
.elegant-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.elegant-table th {
  background-color: #2c3e50;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.elegant-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.elegant-table tr:hover {
  background-color: #f1f5f9;
}

.elegant-table td {
  color: #334155;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-table {
    font-size: 0.85rem;
  }
  
  .elegant-table th,
  .elegant-table td {
    padding: 0.75rem 0.5rem;
  }
}

/*.faq-question {*/
/*  background-color: var(--light-color);*/
/*  padding: 1.2rem;*/
/*  cursor: pointer;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  font-weight: 800;*/
/*  transition: var(--transition);*/
/*}*/

/*.faq-question:hover {*/
/*  background-color: #e0e0e0;*/
/*}*/

/*.faq-answer {*/
/*  max-height: 0;*/
/*  opacity: 0;*/
/*  padding: 0 1.2rem;*/
/*  overflow: hidden;*/
/*  transition: max-height 0.4s ease, opacity 0.3s ease;*/
/*}*/

/*.faq-answer.show {*/
/*  max-height: 500px;*/
/*  opacity: 1;*/
/*  padding: 1.2rem;*/
/*}*/

/*.toggle-icon {*/
/*  font-size: 1.2rem;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/* FAQ Item Container */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Question Header */
.faq-question {
  background-color: var(--light-color);
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e0e0;
}

/* Toggle Icon */
.toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
  transform: rotate(45deg);
}

/* Answer Content */
.faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0 1.2rem;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
}

/* When Active */
.faq-answer.show {
  max-height: 800px; /* large enough for longest answer */
  opacity: 1;
  padding: 1.2rem;
}

/* Fees Section Styles */
.fees-section {
  margin: 5rem 0;
}

.fee-tables-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .fee-tables-container {
    grid-template-columns: 1fr 1fr;
  }
}

.fee-table-container h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.elegant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.elegant-table th,
.elegant-table td {
  padding: .8rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.elegant-table th {
  background-color: #2c3e50;
  color: white;
  font-weight: 600;
  font-size: 0.75rem !important;
}

.elegant-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.elegant-table tr:hover {
  background-color: #f1f5f9;
}

.elegant-table td {
  color: #334155;
}

/* Highlight important numbers */
.elegant-table td:not(:first-child) {
  font-weight: 500;
  color: #1e40af;
}

.fee-note {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f0fdf4;
  border-left: 4px solid #10b981;
  font-size: 0.9rem;
}

.fee-note strong {
  color: #065f46;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-table {
    font-size: 0.85rem;
  }
  
  .elegant-table th,
  .elegant-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .fee-tables-container {
    grid-template-columns: 1fr;
  }
}

  
   /* Article Listing Styles */
        .articles-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .article-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
        }
        
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .article-content {
            padding: 1.5rem;
        }
        
        .article-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }
        
        .article-excerpt {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
        }
        
        .read-more {
            display: inline-block;
            margin-top: 1rem;
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Article Detail Page Styles */
        .article-detail {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .article-detail img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .article-detail h1 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .article-detail .meta {
            color: #888;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .article-detail .content {
            line-height: 1.8;
            color: #333;
        }
        
        .article-detail .content h2 {
            color: #2c3e50;
            margin-top: 2rem;
        }
        
        .back-link {
            display: inline-block;
            margin-top: 2rem;
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
        }