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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* CSS Variables */
:root {
  --primary: #003366;
  --primary-foreground: #ffffff;
  --accent: #c5a600;
  --accent-foreground: #003366;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --muted: #f8f9fa;
  --muted-foreground: #6c757d;
  --card: #f8f8f8;
  --border: #9e9e9e;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  z-index: 50;
  box-shadow: var(--shadow-lg);
}

.social-icons {
  display: flex;
  margin-top: 30px;
  gap: 24px;
}

.sicon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: #ccc;
  transition: color 0.3s ease;
  cursor: pointer;
}

.sicon svg {
  width: 100%;
  height: 100%;
}

.sicon:hover {
  color: #1da1f2; /* default hover color */
}

.sicon.facebook:hover {
  color: #3b5998; /* Facebook blue */
}

.sicon.twitter:hover {
  color: #1da1f2; /* Twitter blue */
}

.sicon.instagram:hover {
  color: #e4405f; /* Instagram pink/red */
}

.sicon.youtube:hover {
  color: #ff0000; /* YouTube red */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  height: 2rem;
  width: 2rem;
  color: var(--accent);
}

.nav-title {
  font-weight: bold;
  font-size: 1.25rem;
}

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

.logoimg{
  width: 100px;
  height: 100px;
  position: relative;
  top: 10px;
  border: 3px solid #003366;
  border-radius: 4px;
}
.secGalleruImg img{
  max-width: 100%;
    height: 300px;
    width: 100%;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--accent);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: currentColor;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  position: relative;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 51, 102, 0.8) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: 65px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.coursesbg{
  background: linear-gradient(135deg, #1565c0 0%, #003366 50%, #1a237e 100%);
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn:hover {
  background-color: rgba(255, 215, 0, 0.9);
  transform: scale(1.05);
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 0;
  }
}

.section-alt {
  background-color: rgba(248, 249, 250, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--accent);
  margin: 0 auto 2rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 60rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-description {
    font-size: 1.25rem;
  }
}

/* Card Styles */
.card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-subtitle, .about-content h1, .about-content h2, .about-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .about-subtitle, .about-content h1, .about-content h2, .about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.about-text, .about-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .about-text, .about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-cards {
    gap: 1.5rem;
  }
}

.about-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .about-card {
    padding: 1.5rem;
  }
}

.about-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.card-icon {
  height: 2.5rem;
  width: 2.5rem;
  color: var(--accent);
  margin: 0 auto 0.75rem;
}

@media (min-width: 640px) {
  .card-icon {
    height: 3rem;
    width: 3rem;
    margin-bottom: 1rem;
  }
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .card-title {
    font-size: 1.125rem;
  }
}

.card-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .card-text {
    font-size: 0.875rem;
  }
}

/* Admission Section */
.admission-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .admission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .admission-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.admission-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .admission-card {
    padding: 2rem;
  }
}

.admission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.step-number {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  color:#fff;
}

@media (min-width: 640px) {
  .step-number {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}

.documents-section {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .documents-section {
    padding: 2rem;
  }
}

.documents-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .documents-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.documents-grid {
  display: grid;
  gap: 1rem;
}

.documents-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 column */
  gap: 0.75rem;
}

.documents-list ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
}

@media (min-width: 640px) {
  .documents-list li {
    font-size: 1rem;
  }
  .documents-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.documents-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Courses Section */
.courses-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .courses-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.course-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  transition: all 0.2s;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .course-card {
    padding: 1.5rem;
  }
}

.course-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.course-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.course-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .course-icon {
    height: 2rem;
    width: 2rem;
  }
}

.course-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #06417e;
  min-width: 100px;
  letter-spacing: 1px;
}

.course-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .course-description {
    font-size: 1rem;
  }
}

.course-meta {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

@media (min-width: 640px) {
  .course-meta {
    font-size: 0.875rem;
  }
}

/* Team Section */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.team-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .team-card {
    padding: 1.5rem;
  }
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-avatar img{
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}

@media (min-width: 640px) {
  .team-avatar {
    width: 6rem;
    height: 6rem;
  }
}

.avatar-icon {
  height: 2.5rem;
  width: 2.5rem;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .avatar-icon {
    height: 3rem;
    width: 3rem;
  }
}

.team-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .team-name {
    font-size: 1.25rem;
  }
}

.team-role {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .team-bio {
    font-size: 0.875rem;
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.gallery-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  transition: all 0.2s;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .gallery-card {
    padding: 1.5rem;
  }
}

.gallery-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.gallery-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.gallery-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .gallery-icon {
    height: 2rem;
    width: 2rem;
  }
}

.gallery-title {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .gallery-title {
    font-size: 1.25rem;
  }
}

.gallery-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .gallery-description {
    font-size: 1rem;
  }
}

.download-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.download-btn:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.download-icon {
  height: 1rem;
  width: 1rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-form-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-title {
    font-size: 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  transform: scale(1.02);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background-color: rgba(255, 215, 0, 0.9);
  transform: scale(1.05);
}

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

@media (min-width: 640px) {
  .contact-info {
    gap: 2rem;
  }
}

.contact-card,
.hours-card,
.map-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1rem;
}

@media (min-width: 640px) {
  .contact-card,
  .hours-card,
  .map-card {
    padding: 1.5rem;
  }
}

.contact-title,
.hours-title,
.map-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-title,
  .hours-title,
  .map-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

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

.contact-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .contact-icon {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .contact-text {
    font-size: 1rem;
  }
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .hours-item {
    font-size: 1rem;
  }
}

.hours-day {
  color: var(--muted-foreground);
}

.hours-time {
  font-weight: 500;
}

.map-placeholder {
  background-color: var(--muted);
  border-radius: 0.5rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 640px) {
  .map-placeholder {
    height: 12rem;
  }
}

.map-icon {
  height: 2.5rem;
  width: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .map-icon {
    height: 3rem;
    width: 3rem;
  }
}

.map-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .map-text {
    font-size: 1rem;
  }
}

.map-subtext {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .map-subtext {
    font-size: 0.875rem;
  }
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .footer {
    padding: 3rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-icon {
  height: 2rem;
  width: 2rem;
  color: var(--accent);
}

.footer-title {
  font-weight: bold;
  font-size: 1.25rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-description {
    font-size: 1rem;
  }
}

.footer-heading {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .footer-link {
    font-size: 1rem;
  }
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-contact-info {
    font-size: 1rem;
  }
}

.footer-contact-info p {
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    padding-top: 2rem;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
  z-index: 40;
}

.scroll-top-btn.visible {
  display: flex;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
}

.scroll-top-btn svg {
  height: 1.5rem;
  width: 1.5rem;
}

@media only screen and (max-width: 991px){
  .hero {height:200px;}
  .hero-overlay{margin-top: 92px;}
}
