/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Header */
/* Reset body spacing */
body, html {
  margin: 0;
  padding: 0;
}

/* Header */
/* ===== Event Ticker ===== */
.event-ticker {
  background: linear-gradient(90deg, #4eee8e, #0d9488);
  color: #fff;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
}

.ticker-list {
  display: flex;
  animation: tickerScroll 25s linear infinite;
  gap: 60px;
  padding: 8px 0;
}

.ticker-list li {
  list-style: none;
  white-space: nowrap;
}

@keyframes tickerScroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ===== Header ===== */
.site-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px; /* reduced height */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Logo ===== */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px; /* slightly bigger */
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

.logo span {
  font-size: 24px;
  font-weight: 900;
  font-family: "Poppins", "Segoe UI", sans-serif; /* modern, clean font */
  letter-spacing: 0.7px;
  background: linear-gradient(90deg, #14532d, #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: letter-spacing 0.3s;
}

.logo span:hover {
  letter-spacing: 1.5px;
}

/* ===== Navigation ===== */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #14532d;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0d9488;
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.nav-menu a:hover {
  color: #0d9488;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===== Header Right ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right:100px
}


/* Social Icons */
.social-icons {
  position: absolute; /* or 'fixed' if you want it fixed on screen */
  top: 20px;          /* adjust vertical position as needed */
  right: 20px;        /* aligns to extreme right */
  display: flex;      /* keep icons in a row */
}

.social-icons a {
  margin-left: 12px;
  color: #14532d;
  font-size: 22px; /* larger icons */
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #0d9488;
  transform: scale(1.4) rotate(10deg);
}



/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 25px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger { display: flex; }
}





/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;   /* full height section */
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

/* Image inside slide */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 ensures image covers without distortion */
  object-position: center; /* center align image */
}

/* Caption Box - Left Side with 2-line text */
.caption {
  position: absolute;
  bottom: 25%;
  left: 12%;             /* not too cornered */
  max-width: 450px;      /* fixed width card */
  text-align: left;

  /* Glassy background */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 25px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);

  /* Animation */
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeLeft 1s ease forwards;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Title */
.caption .title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* Description */
.caption .desc {
  font-size: 18px;
  color: #f1f1f1;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .caption {
    max-width: 85%;
    left: 8%;
    bottom: 15%;
    padding: 18px 22px;
  }
  .caption .title {
    font-size: 22px;
  }
  .caption .desc {
    font-size: 14px;
  }
}


.prev, .next {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.85);
}


/* About us styling*/
/* ===== About Us Section ===== */
.about-us-section {
  background-color: #fdfaf5;
  color: #18301d;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 80px 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 18px;
  font-weight: 400;
  color: #4a5b46;
}
.about-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}



/* ===== Highlight Cube Paragraph ===== */
.highlight-cube {
  background-color: #18301d;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-cube h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.highlight-cube p {
  font-size: 18px;
  line-height: 1.6;
}

.about-box-section {
  background: #f8f6fb;
   /* Light background */
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.about-box-container {
  background: #f8f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* Responsive */
}

.about-box-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-box-content {
  background: #f8f6fb;
  flex: 1;
  min-width: 300px;
}

.about-box-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.about-box-content h3 {
  font-size: 22px;
  color: #0b3f1f; /* Pinkish like Spiegel site */
  margin-bottom: 20px;
}

.about-box-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-box-content ul {
  list-style: none;
  padding: 0;
}

.about-box-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.about-box-content ul li::before {
  content: "•";
  color: #0b3f1f;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}
.what-we-do-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.what-we-do-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.what-we-do-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.what-we-do-content {
  flex: 1;
  min-width: 300px;
}

.what-we-do-content h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

.what-we-do-content h3 {
  font-size: 24px;
  color: #0b3f1f;  /* Spiegel-like accent color */
  margin-bottom: 20px;
}

.what-we-do-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.what-we-do-content ul {
  list-style: none;
  padding: 0;
}

.what-we-do-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.what-we-do-content ul li::before {
  content: "•";
  color: #0b3f1f;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

/* About Section */
.about-section {
  padding: 80px 10%;
  background: #f8f6fb;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h4 {
  color: #7cb342; /* Green accent */
  font-size: 3.5rem;   /* Bigger size */
  font-weight: 800;  /* Extra bold */
  margin-bottom: 20px;
}


.about-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.about-text h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #0b3f1f;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

  .about-text h2 {
    font-size: 26px;
  }

  .about-text h3 {
    font-size: 20px;
  }
}




/* Contact Section */
.contact-section {
  background: #0a0a0a url('img/vaacontact.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 70px 0;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  gap: 50px;
}

.contact-info, .quick-links, .map-container {
  flex: 1;
  min-width: 280px;
}

.contact-logo {
  width: 170px;
  margin-bottom: 25px;
}

.contact-info h3,
.quick-links h3,
.map-container h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff; /* brighter */
}



.contact-info p {
  line-height: 1.8;
  font-size: 20px;
  margin: 10px 0;
  color: #f8f8f8; /* vibrant white text */
}

.contact-info i {
  color: #00e6ff;   /* more vibrant cyan accent for icons */
  margin-right: 8px;
}

/* Quick Links */
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links ul li {
  margin: 12px 0;
}

.quick-links ul li a {
  color: #f8f8f8;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.quick-links ul li a:hover {
  color: #00e6ff;
  padding-left: 5px;
}

/* Map Styling */
.map-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 260px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* event ticker css*/
.event-ticker {
  background-color: #e6f9e6;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 2px solid #28a745;
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.ticker-list {
  display: flex;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollInfinite 20s linear infinite;
}

.ticker-list li {
  font-size: 16px;
  color: #041207;
  white-space: nowrap;
}

/* Infinite left-to-right scrolling */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*card aesthetics*/
/* Container */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Card Base */
.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Hover Zoom */
.card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 30, 0.85);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

/* Title */
.card-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Circle Icon */
.card-icon {
  position: absolute;
  bottom: 20px;   /* keep inside */
  left: 50%;
  transform: translateX(-50%);
  background: #7fbf4d;
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Animate circle on hover */
.card:hover .card-icon {
  transform: translateX(-50%) scale(1.1);
}
/* Circle Icon */
.card-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #8dcf58, #6fae3a);
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  font-size: 22px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25),
              inset 0 2px 6px rgba(255, 255, 255, 0.2),
              inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Hover effect for circle */
.card:hover .card-icon {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35),
              inset 0 3px 8px rgba(255, 255, 255, 0.25),
              inset 0 -4px 8px rgba(0, 0, 0, 0.25);
}
.card-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #8dcf58, #6fae3a);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25),
              inset 0 2px 6px rgba(255, 255, 255, 0.2),
              inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.card-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.card:hover .card-icon {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35),
              inset 0 3px 8px rgba(255, 255, 255, 0.25),
              inset 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.card:hover .card-icon img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 200, 0.8));
}

/*testimonial*/
.testimonial-section {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  position: relative;
  font-family: Arial, sans-serif;
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  height: 250px;
}

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease;
}

.testimonial.active {
  display: flex;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial p {
  font-size: 16px;
  color: #02332f;
  margin: 0 20px 10px;
}

.testimonial h4 {
  color: #c7a63c;
  margin: 0;
}

.testimonial-dots {
  margin-top: 15px;
}

.testimonial-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #c7d5aa;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: #7ea33f;
}
.testimonial-heading {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-heading h1 {
  font-size: 2em;
  color: #2d6a4f;
  margin-bottom: 10px;
}

.testimonial-heading p {
  font-size: 1.1em;
  color: #555;
}

/*Gallery*/
.gallery-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.gallery-heading h2 {
  font-size: 2.4em;
  color: #2d6a4f;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.gallery-heading p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15) rotate(1deg);
}

.gallery-item:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 106, 79, 0.85), rgba(45, 106, 79, 0));
  color: #fff;
  padding: 12px 10px;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(-5px);
}

/* Last two images in horizontal center */
.gallery-item-double {
  display: flex;
  justify-content: center;
  gap: 20px;
  grid-column: 1 / -1; /* Span full width in grid */
}

.gallery-item-double .gallery-item {
  flex: 1;
  max-width: 300px; /* Optional: control width of each image */
}
