/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: #111; /* Deep black background */
  color: #ffd600;   /* Yellow text as accent */
  overflow-x: hidden;
  padding-top: 70px;
}



/* Our Story Section */
#our-story {
  background: #181818;
  text-align: center;
  color: #ffd600;
}

/* Header and Underline */
#our-story h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffd600;
  text-shadow: 0px 4px 10px #111d;
}

#our-story .underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #fff);
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

/* Paragraph Styling */
#our-story p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #fffde7;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.image-slot {
  position: relative;
  overflow: hidden;
  border: 2px dashed #ffd600;
  border-radius: 10px;
  box-shadow: 0px 4px 10px #1117;
  transition: transform 0.3s ease, background 0.3s, border 0.3s;
  background: rgba(255, 214, 0, 0.08);
}

.image-slot:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom right, #ffd600, #111);
  border: 2px solid #ffd600;
}

/* Image inside Slot */
.image-slot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

/* Caption Styling */
.image-slot .caption {
  padding: 10px;
  color: #ffd600;
  background: #181818;
  font-weight: bold;
  text-shadow: 0px 2px 6px #000;
  border-top: 1px solid #ffd600;
  border-radius: 0 0 8px 8px;
}




/* Our Mission Section */
#our-mission {
  padding: 50px 20px;
  text-align: center;
  background: #181818;
  color: #ffd600;
}

/* Header and Underline */
#our-mission h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffd600;
  text-shadow: 0px 4px 10px #111d;
}

#our-mission .underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #fff);
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

/* Paragraph Styling */
#our-mission p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #fffde7;
}

/* Mission Points */
.mission-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.point {
  background: rgba(255, 214, 0, 0.08);
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0px 4px 20px #ffd60033;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s, background 0.3s, color 0.3s;
  border: 2px solid #ffd600;
}

.point i {
  font-size: 40px;
  color: #ffd600;
  margin-bottom: 10px;
}

.point h3 {
  font-size: 20px;
  color: #ffd600;
  margin-bottom: 10px;
}

.point p {
  font-size: 16px;
  color: #fffde7;
}

.point:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom right, #ffd600 50%, #111 100%);
  color: #111;
  border: 2px solid #fff;
}

.point:hover h3,
.point:hover i {
  color: #111;
}

/* Services Section */
.services-section {
  padding: 60px 20px;
  background: #111;
  color: #ffd600;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd600;
  position: relative;
  font-weight: bold;
}

.heading-underline {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #ffd600, #fff);
  margin: 0 auto 20px;
  border-radius: 10px;
}

.services-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fffde7;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.service-card {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card .card-front,
.service-card .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px #ffd60022;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
}

.service-card .card-front {
  background: #222;
  color: #ffd600;
}

.service-card .card-back {
  background: #ffd600;
  color: #111;
  transform: rotateY(180deg);
}

.service-card:hover .card-front {
  transform: rotateY(180deg);
}

.service-card:hover .card-back {
  transform: rotateY(360deg);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd600;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd600;
}

.service-card p {
  font-size: 1rem;
  text-align: center;
  padding: 0 15px;
  color: #fffde7;
}

.service-card .card-back h3,
.service-card .card-back p,
.service-card .card-back .icon {
  color: #111 !important;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .service-card {
    height: 250px;
  }

  .service-card .icon {
    font-size: 2.5rem;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 60px 20px;
  background: #181818;
  color: #ffd600;
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd600;
  position: relative;
  font-weight: bold;
}

.heading-underline {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #ffd600, #fff);
  margin: 0 auto 20px;
  border-radius: 10px;
}

.why-choose-us-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fffde7;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.why-card {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card .card-front,
.why-card .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px #ffd60022;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
}

.why-card .card-front {
  background: #222;
  color: #ffd600;
}

.why-card .card-back {
  background: #ffd600;
  color: #111;
  transform: rotateY(180deg);
}

.why-card:hover .card-front {
  transform: rotateY(180deg);
}

.why-card:hover .card-back {
  transform: rotateY(360deg);
}

.why-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd600;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd600;
}

.why-card p {
  font-size: 1rem;
  text-align: center;
  padding: 0 15px;
  color: #fffde7;
}

.why-card .card-back h3,
.why-card .card-back p,
.why-card .card-back .icon {
  color: #111 !important;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .why-card {
    height: 250px;
  }

  .why-card .icon {
    font-size: 2.5rem;
  }
}

/* Smooth Section Transitions */
section {
  padding: 50px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #1e1e1e, #333);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headers with Underlines */
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
  position: relative;
}

.header-underline {
  width: 50px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 20px auto;
}

/* Company Info */
.footer-company {
  text-align: left;
  max-width: 250px;
}

.company-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-company a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-company a:hover {
  text-decoration: underline;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* Map Section */
.footer-map iframe {
  border-radius: 10px;
  border: 2px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Social Links */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Newsletter */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  width: 250px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px #ffcc00;
}

.newsletter-button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #ffcc00;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.1);
  background: #e6b800;
}

.newsletter-success {
  margin-top: 10px;
  display: none;
  color: #ffcc00;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #555;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    width: 100%;
    max-width: 300px;
  }

  .footer-company,
  .footer-links,
  .footer-social,
  .footer-newsletter {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-form {
    justify-content: center;
  }
}