/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #059669;
  --primary-dark: #047857;
  --secondary-color: #2563eb;
  --secondary-dark: #1d4ed8;
  --accent-color: #7c3aed;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #1e293b;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.15s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  color: white; /* Changed from var(--primary-color) to white */
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow for better visibility */
}

/* Header Styles - REDUCED HEIGHT */
.header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #475569 50%, var(--bg-dark) 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.hero-section {
  text-align: center;
  padding: 1.5rem 0 1rem; /* Significantly reduced from 3rem 0 2rem */
}

.hero-title {
  font-size: 2rem; /* Reduced from 3.5rem */
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.9rem; /* Reduced from 1.25rem */
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Navigation - REDUCED HEIGHT */
.navbar {
  border-top: 1px solid #475569;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0; /* Significantly reduced from 1rem 0 */
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 1.5rem; /* Reduced from 2.5rem */
  list-style: none;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 0.6rem; /* Reduced from 0.5rem 1rem */
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  font-size: 0.85rem; /* Reduced font size */
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 0;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Page Styles */
.page {
  display: none;
  min-height: calc(100vh - 150px); /* Adjusted for smaller header */
}

.page.active {
  display: block;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-dark), #475569);
  color: white;
  padding: 2.5rem 0; /* Reduced from 4rem 0 */
  text-align: center;
}

.page-title {
  font-size: 2.2rem; /* Reduced from 3rem */
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1rem; /* Reduced from 1.25rem */
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 3rem 0;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.9), rgba(37, 99, 235, 0.9)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    center / cover;
  color: white;
  padding: 4rem 0; /* Reduced from 6rem 0 */
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-description {
  font-size: 1rem; /* Reduced from 1.25rem */
  margin: 1.5rem 0;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  padding: 0.7rem 1.5rem; /* Reduced from 0.875rem 2rem */
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem; /* Reduced from 1rem */
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-full {
  width: 100%;
}

/* Cards */
.card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem; /* Reduced from 2rem */
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gradient-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
}

.vision-card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.mission-card {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: white;
}

.card-icon {
  font-size: 2rem; /* Reduced from 2.5rem */
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.card-title {
  font-size: 1.25rem; /* Reduced from 1.5rem */
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.9rem; /* Reduced from 1rem */
  line-height: 1.7;
  opacity: 0.95;
}

/* Stats Section */
.stats-section {
  background: var(--bg-primary);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem; /* Reduced from 3rem */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.75rem; /* Reduced from 0.875rem */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Gallery Styles - FIXED */
.gallery-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden; /* Add this */
}

.gallery-slider {
  display: flex;
  transition: transform 0.25s ease; /* Add smooth transition */
  width: 300%; /* 3 images = 300% width */
}

.gallery-item {
  min-width: 33.333%; /* Each item takes 1/3 of container */
  flex-shrink: 0; /* Prevent shrinking */
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.gallery-item img[src=""],
.gallery-item img:not([src]),
.gallery-item img[src="images/img1.jpeg"]:not([alt*="loaded"]) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Crect width='400' height='300' fill='%23f3f4f6'/%3E%3Ctext x='200' y='150' text-anchor='middle' fill='%236b7280' font-family='Arial' font-size='16'%3EGallery Image%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.1rem; /* Reduced from 1.25rem */
  margin-bottom: 0.5rem;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px; /* Reduced from 50px */
  height: 40px; /* Reduced from 50px */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  box-shadow: var(--shadow-md);
}

.gallery-btn:hover {
  background: white;
  transform: scale(1.1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.dot {
  width: 8px; /* Reduced from 12px */
  height: 8px; /* Reduced from 12px */
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Team Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 200px; /* Reduced from 250px */
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

/* .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 150, 105, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
} */

.social-link {
  color: white;
  font-size: 1.25rem; /* Reduced from 1.5rem */
  padding: 0.6rem; /* Reduced from 0.75rem */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.team-info {
  padding: 1.25rem;
  text-align: center;
}

.team-name {
  font-size: 1.1rem; /* Reduced from 1.25rem */
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.75rem; /* Reduced from 0.875rem */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-description {
  color: var(--text-secondary);
  font-size: 0.8rem; /* Reduced from 0.875rem */
  line-height: 1.6;
}

/* Partners Styles */
.partners-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.upsdm-card {
  border-left: 4px solid var(--primary-color);
}

.irctc-card {
  border-left: 4px solid var(--accent-color);
}

.partner-logo {
  flex-shrink: 0;
}

.partner-logo img {
  width: 60px; /* Reduced from 80px */
  height: 60px; /* Reduced from 80px */
  object-fit: contain;
  border-radius: var(--border-radius);
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thsc-logo {
  background-color: var(--primary-color);
}

.irctc-logo {
  background-color: var(--accent-color);
}

.partner-info h3 {
  font-size: 1.1rem; /* Reduced from 1.25rem */
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.partner-description {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.75rem; /* Reduced from 0.875rem */
}

.partner-details p {
  color: var(--text-secondary);
  font-size: 0.8rem; /* Reduced from 0.875rem */
  line-height: 1.6;
}

/* Contact Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form-title {
  color: var(--primary-color);
  font-size: 1.25rem; /* Reduced from 1.5rem */
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.85rem; /* Slightly smaller */
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.7rem; /* Reduced from 0.875rem */
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 0.9rem; /* Reduced from 1rem */
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--primary-color);
  color: white;
  width: 40px; /* Reduced from 50px */
  height: 40px; /* Reduced from 50px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem; /* Reduced from 1.25rem */
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  font-size: 0.9rem; /* Slightly smaller */
}

.contact-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.85rem; /* Slightly smaller */
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 2rem 0 1rem; /* Reduced from 3rem 0 1rem */
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem; /* Reduced from 1.5rem */
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-subtitle {
  font-size: 0.95rem; /* Reduced from 1.125rem */
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-text {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.85rem; /* Slightly smaller */
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links .social-link {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem; /* Reduced from 0.75rem */
  border-radius: 50%;
  transition: var(--transition);
}

.social-links .social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* Reduced from 0.75rem */
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  padding: 0.25rem 0;
  font-size: 0.85rem; /* Slightly smaller */
}

.footer-link:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-contact .contact-item {
  color: #cbd5e1;
  margin-bottom: 0.6rem; /* Reduced from 0.75rem */
  font-size: 0.85rem; /* Slightly smaller */
}

.footer-contact .contact-item i {
  color: var(--primary-color);
  width: 16px; /* Reduced from 20px */
  margin-right: 0.6rem; /* Reduced from 0.75rem */
}

.footer-bottom {
  border-top: 1px solid #475569;
  padding-top: 1.25rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem; /* Slightly smaller */
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px; /* Reduced from 60px */
  height: 50px; /* Reduced from 60px */
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 1rem; /* Reduced from 1.25rem */
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partners-container {
    grid-template-columns: 1fr;
  }

  .partner-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem; /* Further reduced for mobile */
  }

  .hero-subtitle {
    font-size: 0.85rem; /* Further reduced for mobile */
  }

  .page-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100%;
    flex-direction: column;
    background-color: var(--bg-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 0;
    gap: 0.75rem;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .about-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem; /* Even smaller for very small screens */
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .card {
    padding: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.25rem;
  }

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

  .gallery-controls {
    padding: 0 0.5rem;
  }

  .gallery-btn {
    width: 35px;
    height: 35px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.15s ease;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-success {
  background-color: #059669;
}

.notification-error {
  background-color: #dc2626;
}

.notification-warning {
  background-color: #d97706;
}

.notification-info {
  background-color: #2563eb;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .scroll-to-top,
  .gallery-controls,
  .hamburger {
    display: none !important;
  }

  .page {
    display: block !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}
