* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* 
 Navbar (transparent over background) */
/* Navbar adjustments */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8f9ff; /* light rectangular nav background */
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo */
.logo img {
  height: 60px;
  object-fit: contain;
}

/* Rectangular nav list */
.rect-nav-list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.rect-nav-list li {
  flex: 1;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}

.rect-nav-list li a {
  display: block;
  padding: 15px 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.rect-nav-list li:hover {
  background: #ffd700;
  transform: translateY(-2px);
  border-radius: 4px;
}

.rect-nav-list li:hover a {
  color: #111;
}

/* Active section highlight */
.rect-nav-list li.active {
  background: #ffd700;
}

.rect-nav-list li.active a {
  color: #111;
}

/* Mobile: hamburger and stack nav */
@media (max-width: 768px) {
  .rect-nav-list {
    display: none; /* hide by default */
    flex-direction: column;
    width: 100%;
    background: #f8f9ff;
    position: absolute;
    top: 70px;
    left: 0;
  }

  .rect-nav-list li {
    text-align: center;
    margin-bottom: 5px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
  }

  .rect-nav-list.show {
    display: flex;
  }
}

/* 🔹 Hero Swiper Section */
.hero {
  width: 100%;
  height: 100vh; /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  height: 100%;
}





.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  object-fit: cover;
  
}






/* Church background images */
.slide1 {
  background-image: url('images/DSC_2884GDS\ 4TO\ STUDIO\'S\ 08062587050.JPG');
}
.slide2 {
  background-image: url('images/DSC_0230.jpg');
}
.slide3 {
  background-image: url('images/DSC_2883GDS\ 4TO\ STUDIO\'S\ 08062587050.JPG');
}

/* 🔹 Text directly in background */
.slide-text {
  list-style: none;
  color: #fff;
  text-align: center;
}

.slide-text li {
  font-size: 2rem; /* default for desktop */
  font-weight: 600;
  margin: 1rem 0;
  opacity: 0;
  transform: translateY(40px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
  animation: slideUp 1s ease forwards;
  line-height: 1.3;
}

/* Animation delays */

.slide-text li:nth-child(1) { animation-delay: 0.5s; }
.slide-text li:nth-child(2) { animation-delay: 1.5s; }
.slide-text li:nth-child(3) { animation-delay: 2.5s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------mobile responsive--------- */
@media (max-width: 768px) {
  .hero{
    height: 70vh;/*slighter smaller on tablet/mobile*/
  }
  .slide-text li{
    font-size: 1.4rem;
    margin: 0.8rem 0;
  }

.nav-links{
    gap: 15px;
  }

  @media(max-width:480px) {
    .hero{
      height: 60vh;
    }
  }


    
  

  .slide-text li {
    font-size: 1.2rem; /* smallest text on mobile */
    margin: 0.5rem 0;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.9rem;
  }

  .logo img {
    height: 50px;
  }
}














/* ABOUT SECTION */
#about {
  padding: 100px 80px;
  background: #fdfdfd;
  color: #333;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* responsive stacking on small screens */
}

/* Image styling */
.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Text styling */
.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

/* Decorative underline */
.about-text h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #ffd700; /* gold accent */
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.about-text p {
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 15px;
}

/* Button */
.about-text .btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffd700;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-text .btn:hover {
  background: #111;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}







.services {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
  text-align: center;
}

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

.services h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.service-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: radial-gradient(
    circle at top left,
    rgba(255, 215, 0, 0.35),
    rgba(67, 56, 202, 0.35),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(67, 56, 202, 0.25);
}

.service-image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.content {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 2rem;
  z-index: 2;
  text-align: left;
}

.icon {
  font-size: 2rem;
  color: #e0e7ff;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.time {
  font-weight: 600;
  color: #facc15;
  margin-bottom: 0.4rem;
}

/* Central Button Section */
.service-buttons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.6rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact {
  background: #facc15;
  color: #111827;
}

.contact:hover {
  background: #fde68a;
}

.direction {
  background: transparent;
  border: 2px solid #facc15;
  color: #facc15;
}

.direction:hover {
  background: #facc15;
  color: #111827;
}

/* Fade in */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}











/* ===== MINISTRIES SECTION ===== */
.ministries {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f9fafb;
  padding: 6rem 1rem;
  text-align: center;
}

.ministries-hero {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.ministries h2 {
  font-size: 2.5rem;
  color: #facc15;
  margin-bottom: 0.8rem;
}

.ministries .subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Ministries Grid */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Ministry Cards */
.ministry-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.ministry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

/* Icon */
.ministry-card .icon {
  font-size: 2.2rem;
  color: #facc15;
  margin-bottom: 1rem;
}

/* Title & Text */
.ministry-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.ministry-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fade Animation */
.ministry-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.ministry-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .ministries h2 {
    font-size: 2rem;
  }
}







/* ===== MEET THE PASTOR SECTION ===== */
.pastor {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fffaf2, #ffffff);
}

.pastor-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 60px;
}

.pastor-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.2);
  object-fit: cover;
}

.pastor-info h2 {
  color: #b8860b;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pastor-info h3 {
  color: #222;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.pastor-info p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Pastor Button */
.btn-pastor {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #b8860b, #f2c94c);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.btn-pastor:hover {
  background: linear-gradient(135deg, #f2c94c, #b8860b);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

/* Responsive Text Alignment */
@media (max-width: 768px) {
  .pastor-info {
    text-align: center;
  }

  .pastor-info h2 {
    font-size: 1.8rem;
  }

  .pastor-info p {
    font-size: 1rem;
  }
}





















/* ===== CTA UNDER MINISTRIES ===== */
.ministry-cta {
  text-align: center;
  margin-top: 4rem;
}

.ministry-cta h4 {
  font-size: 1.6rem;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.ministry-cta p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-gold {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #facc15;
  color: #111827;
  font-weight: 600;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #fde68a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}



.testimonials {
  padding: 100px 5%;
  background: linear-gradient(270deg, #f0f4ff, #e6f0ff, #f0f4ff);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  color: #222;
  position: relative;
}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.testimonials .section-header h2 {
  font-size: 2.8rem;
  color: #0c2e8a;
  margin-bottom: 10px;
  text-align: center;
}

.testimonials .section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 60px;
  text-align: center;
}

.testimonials .swiper-slide {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(12, 46, 138, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.testimonials .swiper-slide::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(45deg, #0c2e8a, #fdd835);
  border-radius: 30px;
  filter: blur(25px);
  opacity: 0.3;
  z-index: -1;
}

.testimonials .swiper-slide:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(12, 46, 138, 0.3);
}

.testimonials .swiper-slide img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #0c2e8a;
  transition: transform 0.3s ease;
}

.testimonials .swiper-slide:hover img {
  transform: scale(1.1);
}

.testimonials .swiper-slide h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0c2e8a;
}

.testimonials .swiper-slide p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

.testimonials .swiper-pagination-bullet {
  background: #0c2e8a;
  opacity: 0.8;
}

.testimonials .swiper-pagination-bullet-active {
  background: #fdd835;
  opacity: 1;
}

@media (max-width: 768px) {
  .testimonials .swiper-slide {
    max-width: 300px;
    padding: 25px 20px;
  }

  .testimonials .section-header h2 {
    font-size: 2.2rem;
  }
}


/* ===== UPCOMING EVENTS STYLES ===== */

/* Countdown Banner */
.event-countdown {
  position: relative;
  background: url('images/SH-Thanksgiving-October1.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.event-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px;
}

.event-content h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f6c90e;
}

.event-title {
  font-size: 2.5rem;
  margin: 15px 0;
  font-weight: 700;
  color: #fff;
}

.event-date {
  margin-bottom: 30px;
  font-size: 1rem;
  opacity: 0.9;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 90px;
  transition: transform 0.3s ease;
}

.countdown div:hover {
  transform: scale(1.1);
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #f6c90e;
}

.countdown p {
  margin-top: 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-btn {
  background: linear-gradient(90deg, #f6c90e, #ff9f1c);
  color: #111;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.event-btn:hover {
  background: linear-gradient(90deg, #ff9f1c, #f6c90e);
  transform: translateY(-3px);
}

/* Mini Events */
.mini-events {
  background: #fafafa;
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #f6c90e;
  margin: 15px auto 0;
  border-radius: 2px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-info {
  background: #fff;
  padding: 25px;
}

.event-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #111;
}

.event-info p {
  color: #666;
  margin-bottom: 15px;
}

.event-link {
  display: inline-block;
  background: linear-gradient(90deg, #f6c90e, #ff9f1c);
  color: #111;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.event-link:hover {
  background: linear-gradient(90deg, #ff9f1c, #f6c90e);
  transform: scale(1.05);
}

/* DAYS LEFT BADGE */
.event-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #f6c90e, #ff9f1c);
  color: #111;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 5;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeBadge 1s ease forwards, pulseBadge 2s infinite 1.2s;
}

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

@keyframes pulseBadge {
  0% { transform: scale(1); box-shadow: 0 0 5px rgba(246, 201, 14, 0.6); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(255, 159, 28, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 5px rgba(246, 201, 14, 0.6); }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .event-countdown { height: auto; padding: 80px 20px; }
  .event-content h1, .event-title { font-size: 2rem; }
  .event-content h2 { font-size: 1rem; }
  .event-date { font-size: 0.9rem; }
  .countdown { flex-direction: column; gap: 15px; }
  .countdown div { min-width: 60px; padding: 10px 15px; }
  .event-btn { padding: 10px 25px; font-size: 0.9rem; }
  .event-grid { grid-template-columns: 1fr; gap: 20px; }
  .event-card img { height: 200px; }
  .event-info h3 { font-size: 1.2rem; }
  .event-info p { font-size: 0.85rem; }
  .event-link { padding: 8px 20px; font-size: 0.85rem; }
  .event-badge { font-size: 0.75rem; padding: 5px 12px; }
}

@media (max-width: 480px) {
  .event-countdown { padding: 60px 15px; }
  .event-content h1, .event-title { font-size: 1.5rem; }
  .event-content h2 { font-size: 0.9rem; }
  .event-date { font-size: 0.8rem; }
  .countdown span { font-size: 1.5rem; }
  .countdown p { font-size: 0.75rem; }
  .event-btn { padding: 8px 20px; font-size: 0.85rem; }
  .event-card img { height: 180px; }
  .event-info h3 { font-size: 1rem; }
  .event-info p { font-size: 0.8rem; }
  .event-link { padding: 6px 18px; font-size: 0.8rem; }
  .event-badge { font-size: 0.7rem; padding: 4px 10px; }
}


































































































































/* --- DONATION SECTION MATCHING CONTACT --- */
.contact-style-section {
  padding: 60px 20px;
  background: #ffffff; /* same as contact section */
  color: #333; /* same text color */
}

.contact-style-section .container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-style-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222; /* same heading color as contact */
}

.contact-style-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555; /* same paragraph color as contact */
}

.donation-cards {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #f8f9ff; /* subtle contrast with contact bg */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #4b57ff; /* same primary color as contact buttons */
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #2f38cc;
}


















/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 5%;
  background: #fafafa;
  color: #222;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #0c2e8a;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card i {
  font-size: 2rem;
  color: #0c2e8a;
  margin-bottom: 10px;
}

.contact-form .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0c2e8a;
}

.btn-send {
  background: #0c2e8a;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-send:hover {
  background: #08205e;
}

.map-container {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}






/* ===== FOOTER ===== */
.footer {
  background: #0c2e8a;
  color: #fff;
  padding: 80px 5% 40px;
  position: relative;
  overflow: hidden;
}

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

.footer-about h2 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-about p {
  color: #ddd;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: #fdd835;
}

.service-times h5 {
  margin-top: 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.service-times p {
  margin: 3px 0;
  color: #ddd;
  font-size: 0.9rem;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 1.1rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fdd835;
}

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

.footer-bottom p {
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-social a {
    margin: 0 10px;
  }
}









/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    height: calc(100vh - 70px);
    width: 250px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-links li a {
    color: white;
    font-size: 1.2rem;
  }

  .nav-links.active {
    right: 0;
  }
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}





















