/* CONTAINER */
.container {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 var(--space-2);
}

/* HEADER */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
}

.brand {
    /* display: flex;
    gap: 16px; */

    img {
        width: 150px;
        height: 80px;
    }

}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent);
}

.nav a {
    margin-left: var(--space-2);
    font-weight: 600;
    font-size: 15px;
}

.nav a.active::after {
    width: 100%;
}

/* HERO */
.hero {
    padding: var(--space-4) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.hero-text h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.3;
}

.cta-group {
    margin-top: var(--space-2);
    display: flex;
    gap: var(--space-2);
}

.btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
}

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

.outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* SECTIONS */
.section {
    padding: var(--space-4) 0;
}

.section-title {
  font-weight: 900;
  margin-bottom: var(--space-3);
}

/* EVENTS */
.events {
    display: grid;
    gap: var(--space-3);
}

.event-card {
    border: 1px solid #e5e7eb;
    padding: var(--space-2);
    border-radius: var(--radius);

    h3 {
      color: var(--primary);
    }

    img {
      width: 100%;
      height: 320px;          /* balanced height */
      object-fit: cover;      /* crop nicely */
      border-radius: var(--radius);
    }
}

.event-card h3 {
    margin-top: var(--space-2);
}

/* LIVE CTA */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    margin-top: 12px;
}

/* FOOTER */
.site-footer {
  font-family: 'Lato', sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* CTA SECTION */
.footer-cta {
  text-align: center;
  padding: 80px 20px;
}

.footer-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.footer-cta p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #475569;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}

/* CONTACT STRIP */
.footer-contact-wrap {
  background: linear-gradient(to bottom, #f1f5f9, #ffffff);
  padding: 60px 20px;
}

.footer-bottom {
  padding: 0 20px;
}

.footer-contact {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.contact-item {
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-item a {
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT CTA */
.contact-cta {
  text-align: center;
}

.contact-cta p {
  font-size: 20px;
  margin-bottom: 16px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #083d77;
  padding: 12px 24px;
  font-weight: 700;
  color: #083d77;
  text-decoration: none;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #0f172a;
}

.footer-social a:hover {
  background: #083d77;
  transform: translateY(-4px);
}

.footer-social a:hover svg {
  fill: #ffffff;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS    */
/* ========================= */

/* TABLET & UP */
@media (min-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

    .footer-grid {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 28px;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .event-card img {
        max-height: 200px;
        object-fit: cover;
    }

    .vision-text {
        text-align: center;
    }

    .cta-block {
        flex-direction: column;
        text-align: center;
    }

    .cta-block a {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

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

.content {
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.content p {
color: white;
  margin-top: 16px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #ff2c2c;
}

/* Mobile */
@media (max-width: 768px) {
  .content {
    text-align: center;
  }
}

/* ========================= */
/* STICKY HEADER             */
/* ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.35s ease;
}

/* Style when scrolled */
.site-header.scrolled {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
}

/* ========================= */
/* HEADER ANIMATIONS         */
/* ========================= */

.brand img {
    transition: transform 0.4s ease;
    width: auto;
    height: 55px;
}

.site-header.scrolled .brand img {
    transform: scale(0.92);
}

/* Nav link animation */
.nav a {
    position: relative;
    opacity: 0;
    transform: translateY(-8px);
    animation: navFade 0.6s ease forwards;
}

/* Stagger effect */
.nav a:nth-child(1) { animation-delay: 0.1s; }
.nav a:nth-child(2) { animation-delay: 0.2s; }
.nav a:nth-child(3) { animation-delay: 0.3s; }
.nav a:nth-child(4) { animation-delay: 0.4s; }

@keyframes navFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover underline animation */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

/* WHO WE ARE SECTION */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: center;
}

.who-image img {
  width: 400px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.who-subtitle {
  color: #f5b400;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
}

.who-title {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-2);
}

.who-content p {
  margin-bottom: var(--space-2);
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

/* SECTION */
.power-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* OVERLAY */
.power-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.power-content {
  position: relative;
  max-width: 900px;
  padding: 0 24px;
}

/* SUBTITLE */
.power-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #facc15;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TITLE */
.power-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 26px;
}

/* HIGHLIGHT */
.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 10px;
  background: var(--primary);
  z-index: -1;
}

/* TEXT */
.power-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e7eb;
  max-width: 650px;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .power-section {
    min-height: 70vh;
    text-align: center;
  }

  .power-content {
    margin: auto;
  }

  .power-text {
    margin: auto;
  }
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.services-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b81d1d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.services-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.services-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

.service-card {
  text-align: center;
  max-width: 280px;
  margin: auto;
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* ICON */
.icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* COLORS */
.icon.purple { background: #ede9fe; color: #6d28d9; }
.icon.pink   { background: #fce7f3; color: #db2777; }
.icon.blue   { background: #e0f2fe; color: #0284c7; }
.icon.red    { background: #fee2e2; color: #dc2626; }
.icon.green  { background: #ecfdf5; color: #16a34a; }
.icon.orange { background: #fff7ed; color: #ea580c; }
.icon.violet { background: #f5d0fe; color: #a21caf; }
.icon.gray   { background: #f1f5f9; color: #334155; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.clients-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.clients-title {
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* SLIDER */
.clients-slider {
  position: relative;
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

/* LOGO */
.client-logo {
  flex: 0 0 auto;
  width: 180px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-logo img:hover {
  /* filter: grayscale(0); */
  opacity: 1;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .client-logo {
    width: 140px;
    margin: 0 20px;
  }
}

/* ============================= */
/* FLOATING CONTACT - FIXED RING */
/* ============================= */
/* FLOATING WHATSAPP BUTTON */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* Button */
.contact-toggle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  overflow: hidden;
}

/* Make PNG fill properly */
.contact-toggle img {
  width: 140%;
  height: 140%;
  object-fit: contain;
  transform: scale(1.2);
}

/* Hover */
.contact-toggle:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

/* Pulse effect */
.pulse-ring {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Contact Options Box */
.contact-options {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  min-width: 220px;
  border: 1px solid #e5e7eb;
}

.contact-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-item-float {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: 0.3s;
  border-left: 4px solid transparent;
}

.contact-item-float:hover {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  color: var(--primary);
}

/* ========================= */
/* MOBILE HEADER MENU        */
/* ========================= */

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* Mobile */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: row;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    margin: 0;
  }
}

@media (max-width: 768px) {

  .hero-slider {
    height: 80vh;
  }

  .content {
    text-align: center;
    padding: 0 16px;
  }

  .content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .content p {
    font-size: 0.95rem;
  }

  .dots {
    bottom: 20px;
  }
}

@media (max-width: 768px) {

  .who-image img {
    width: 100%;
  }

  .who-grid {
    text-align: center;
  }

}

@media (max-width: 768px) {

  .power-section {
    padding: 60px 0;
  }

  .power-title {
    font-size: 1.8rem;
  }

  .power-text {
    font-size: 0.95rem;
  }

}

@media (max-width: 768px) {

  .clients-title {
    font-size: 1.4rem;
  }

  .client-logo {
    width: 120px;
    margin: 0 15px;
  }

}

@media (max-width: 768px) {

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

  .event-card img {
    height: 200px;
  }

}

.footer-contact {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

  .footer-contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta h2 {
    font-size: 1.6rem;
  }

  .footer-cta p {
    font-size: 0.95rem;
  }

}

.footer-contact {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.footer-cta h2 {
  font-size: 1.8rem;
}

.footer-cta p {
  font-size: 0.95rem;
}

/* ========================= */
/* PROJECT CARDS MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {

  .events {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-card img {
    height: 200px;
  }

  .event-card h3 {
    font-size: 1rem;
  }

  .event-card p {
    font-size: 0.9rem;
  }

}

.footer-contact {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

/* ========================= */
/* FOOTER CONTACT LAYOUT     */
/* ========================= */

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: nowrap;
  text-align: center;
}

/* Email + Mobile */
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brochure */
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SOCIAL ICONS CENTER */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

/* ========================= */
/* MOBILE FOOTER             */
/* ========================= */

@media (max-width: 768px) {

  .footer-contact {
    flex-direction: column;
    gap: 30px;
  }

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

}
.footer-contact-wrap {
  padding: 60px 20px;
}

/* ========================= */
/* YOUTUBE VIDEO SECTION     */
/* ========================= */

.video-wrapper {
  width: 100%;
  max-width: 520px;
  margin: auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {

  .video-wrapper {
    max-width: 100%;
  }

}