
/* Reset */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{line-height:1.6;color:#333;background:#fdfdfd;}
.container{max-width:1200px;margin:auto;padding:2rem;}
.section{padding:5rem 0;}
.section__title{text-align:center;margin-bottom:2.5rem;font-size:2.2rem;color:#111;font-weight:700;position:relative;}
.section__title::after{content:"";width:60px;height:3px;background:#f9b233;display:block;margin:1rem auto 0;border-radius:5px;}

/* Header */
/* Header */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(6px);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* Flexbox layout */
.nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo */
.nav__logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

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

/* Links */
.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav__link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #f9b233;
  transition: 0.3s;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: #f9b233;
}

/* Hamburger */
.nav__toggle {
  display: none; /* hidden by default */
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s;
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav__toggle {
    display: block; /* show only on small screens */
  }

  .nav__list {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(17,17,17,0.95);
    width: 220px;
    padding: 1rem;
    gap: 1rem;
    transition: right 0.3s ease-in-out;
    border-radius: 8px 0 0 8px;
  }

  .nav__list.nav__list--active {
    right: 0;
  }
}

/* Scroll effects */
.header.hide {
  transform: translateY(-100%);
}

.header.show {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(0);
}



/* Buttons */
.button{display:inline-block;background:linear-gradient(135deg,#f9b233,#ff9800);color:#fff;padding:0.8rem 1.5rem;border-radius:50px;text-decoration:none;transition:.3s;border:none;cursor:pointer;}
.button:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,.15);}

/* Home */
/* Home Section */
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/home.jpg') no-repeat center center/cover;
  color: #fff;
}

.home__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55); /* semi-transparent overlay */
  display: flex;
  align-items: center;
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

.home__data {
  max-width: 600px;
}

.home__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.home__subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.home__intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ccc;
}

/* Button styling */
.home__data .button {
  background: linear-gradient(135deg, #f9b233, #ff9800);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.home__data .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Features cards */
.home__features {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature__card {
  flex: 1 1 30%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature__card i {
  font-size: 2rem;
  color: #f9b233;
  margin-bottom: 10px;
}

.feature__card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature__card p {
  font-size: 0.95rem;
  color: #eee;
  line-height: 1.4;
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Right Side Image */
.home__img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__img img {
  width: 100%;
  max-width: 420px; /* prevents it from being too big */
  border-radius: 50% 20% 50% 20% / 20% 50% 20% 50%; /* nice blob-like curves */
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home__img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 1024px) {
  .home__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home__img {
    order: -1;
    margin-bottom: 2rem;
  }

  .home__features {
    justify-content: center;
  }

  .feature__card {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .home__title {
    font-size: 2rem;
  }

  .home__subtitle {
    font-size: 1rem;
  }

  .feature__card {
    width: 100%;
  }
}


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


/* SECTION */
.about{background:linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);padding:4rem 0;position:relative}
.about__inner{display:grid;grid-template-columns:1.4fr 1fr;gap:2.25rem;align-items:center}


/* LEFT: content */
.about__content .section__eyebrow{display:inline-block;padding:0.25rem 0.75rem;border-radius:999px;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;font-weight:600;font-size:0.85rem;margin-bottom:0.75rem}
.about__content h2{font-size:2rem;margin:0 0 0.75rem;color:#0f172a}
.about__content p.lead{color:var(--muted);line-height:1.6;font-size:1rem;margin-bottom:1.25rem}


/* quick stats + CTA */
.about__meta{display:flex;gap:1rem;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap}
.stat{background:var(--card);backdrop-filter:blur(6px);padding:0.6rem 0.9rem;border-radius:12px;box-shadow:var(--glass-shadow);display:flex;flex-direction:column;align-items:flex-start}
.stat strong{font-size:1.05rem}
.stat span{font-size:0.85rem;color:var(--muted)}


.about__cta{display:flex;gap:0.75rem}
.btn{background:var(--accent);color:#fff;padding:0.75rem 1rem;border-radius:12px;border:0;font-weight:600;cursor:pointer;box-shadow:0 8px 20px rgba(43,140,255,0.18);transition:transform .22s ease,box-shadow .22s}
.btn.secondary{background:transparent;color:var(--accent);border:1px solid rgba(43,140,255,0.12)}
.btn:hover{transform:translateY(-4px)}


/* goals grid */
.goals__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.25rem}
.goal__card{background:var(--card);padding:1.15rem;border-radius:var(--radius-lg);box-shadow:var(--glass-shadow);transition:transform .28s, box-shadow .28s;display:flex;flex-direction:column;align-items:flex-start;gap:0.6rem}
.goal__card:hover{transform:translateY(-8px);box-shadow:0 18px 45px rgba(11,18,40,0.08)}
.goal__card h3{margin:0;font-size:1rem}
.goal__card p{margin:0;color:var(--muted);font-size:0.95rem}


/* RIGHT: image collage */
.about__visual{position:relative;display:flex;justify-content:center;align-items:center}
.visual__frame{width:100%;max-width:420px;aspect-ratio:1/1;border-radius:28px;background:linear-gradient(135deg,#fff,#f6fbff);box-shadow:0 18px 40px rgba(20,36,80,0.06);padding:1rem;position:relative;overflow:visible}


.img--main{width:100%;border-radius:16px;object-fit:cover;display:block;transform:translateY(0);transition:transform .3s ease}
.img--accent{position:absolute;right:-18px;bottom:-18px;width:44%;border-radius:14px;box-shadow:0 14px 30px rgba(10,20,40,0.08);transform:rotate(-6deg)}
.img--accent-1{position:absolute;left: -14px;bottom:-18px;width:44%;border-radius:14px;box-shadow:0 14px 30px rgba(10,20,40,0.08);transform:rotate(6deg)}


/* decorative SVG blob */
.about__blob{position:absolute;right:6%;top:-6%;width:380px;height:380px;filter:blur(18px);opacity:0.12;z-index:0}


/* Responsive */
@media (max-width:1024px){
.about__inner{grid-template-columns:1fr;gap:1.5rem}
.about__visual{order:-1}
.goals__grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.visual__frame{max-width:520px;margin:0 auto}
}


@media (max-width:640px){
.container{padding:2rem 1rem}
.about{padding:3rem 0}
.about__content h2{font-size:1.6rem}
.goals__grid{grid-template-columns:1fr}
.goal__card{padding:1rem}
.about__meta{justify-content:flex-start}
}


/* small polish */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

  :root{
    --bg: #fffaf6;
    --muted: #6b7280;
    --accent: #ff8a00;       /* primary accent */
    --accent-2: #ffbf69;     /* secondary accent */
    --card-radius: 16px;
    --glass-shadow: 0 12px 35px rgba(14,24,44,0.08);
    --hover-shadow: 0 22px 60px rgba(14,24,44,0.12);
    --container: 1200px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  body{background:linear-gradient(180deg,var(--bg),#ffffff);margin:0;padding:0;color:#111}
  .wrap{max-width:var(--container);margin:0 auto;padding:4rem 1rem}

  .services .section__title{
    text-align:center;
    font-size:2.4rem;
    margin:0 0 0.35rem;
    font-weight:700;
    color:#0f172a;
  }
  .services .section__subtitle{
    text-align:center;
    margin:0 0 2rem;
    color:var(--muted);
    font-size:1rem;
  }

  /* Grid: 3 columns on large, 2 on medium, 1 on mobile.
     grid-auto-rows:1fr ensures equal row heights and prevents gaps. */
  .services__grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:1.5rem;
    grid-auto-rows: 1fr;
    align-items:stretch;
  }

  /* Card */
  .service__card{
    background:linear-gradient(180deg, #ffffff, #fffdf9);
    border-radius:var(--card-radius);
    box-shadow:var(--glass-shadow);
    overflow:hidden;
    position:relative;
    display:flex;
    flex-direction:column;
    transition:transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .36s;
    border:1px solid rgba(17,24,39,0.04);
    min-height:100%;
  }

  /* top media / image area */
  .service__media{
    width:100%;
    height:160px;
    overflow:hidden;
    position:relative;
    flex:0 0 auto;
  }
  .service__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
    transform-origin:center;
  }

  /* icon badge overlapping the image */
  .service__badge{
    position:absolute;
    left:16px;
    bottom:-26px; /* overlap card body */
    width:64px;height:64px;border-radius:14px;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    display:grid;place-items:center;color:#fff;font-size:26px;
    box-shadow:0 10px 30px rgba(43,97,41,0.12);
    border:4px solid #fff;
    z-index:5;
  }

  /* body content */
  .service__body{
    padding:2.25rem 1.5rem 1.5rem;
    display:flex;
    flex-direction:column;
    gap:0.8rem;
    flex:1 1 auto; /* allow card body to grow so cards equal height */
  }
  .service__body h3{margin:0;font-size:1.15rem;color:#111;font-weight:700}
  .service__body p{margin:0;color:var(--muted);font-size:0.95rem;line-height:1.45}
  .service__body .service__cta{
    margin-top:auto; /* pushes CTA to bottom, keeps spacing consistent */
    display:flex;gap:0.5rem;
  }
  .btn{
    appearance:none;border:0;padding:0.6rem 0.9rem;border-radius:10px;font-weight:600;cursor:pointer;
  }
  .btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;box-shadow:0 10px 30px rgba(255,138,0,0.12)}
  .btn.ghost{background:transparent;border:1px solid rgba(17,24,39,0.06);color:#111}

  /* hover effects */
  .service__card:hover{transform:translateY(-10px);box-shadow:var(--hover-shadow)}
  .service__card:hover .service__media img{transform:scale(1.08)}
  .service__card:hover .service__badge{transform:translateY(-6px) rotate(-6deg)}

  /* subtle decorative stripe bottom-right */
  .service__accent{
    position:absolute;right:0;bottom:0;width:46%;height:36%;background:linear-gradient(135deg,rgba(255,191,105,0.12),rgba(255,138,0,0.08));pointer-events:none;
  }

  /* Responsive */
  @media (max-width:1000px){
    .services__grid{grid-template-columns:repeat(2,1fr)}
  }
  @media (max-width:640px){
    .services__grid{grid-template-columns:1fr}
    .service__media{height:200px}
    .service__badge{left:18px;bottom:-30px}
    .wrap{padding:2.5rem 1rem}
  }

  /* Small polish to ensure no extra white gap under grid container */
  .services{padding:0;margin:0}

/* Team */
/* Team section — slightly larger (no :root variables) */
.team.section {
  background: linear-gradient(to right, #f8f9fb, #eef3f7);
  padding: 4rem 1rem; /* more vertical breathing room */
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Headings */
.section__title {
  text-align: center;
  font-size: 2.2rem; /* larger headline */
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 0.25rem;
}
.section__subtitle {
  text-align: center;
  font-size: 1.04rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Grid */
.team__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* slightly larger min width */
  gap: 1.6rem;
  align-items: start;
}

/* Card */
.team__card {
  background: #ffffff;
  border-radius: 18px; /* a touch rounder */
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(17,24,39,0.08);
  transition: transform .32s cubic-bezier(.2,.9,.2,1), box-shadow .32s;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 100%;
  border: 1px solid rgba(17,24,39,0.035);
}

/* Hover */
.team__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(17,24,39,0.13);
}

/* Image area: larger */
.team__img {
  height: 280px; /* increased from 240 */
  overflow: hidden;
  flex: 0 0 auto;
  background: #f3f6f9;
}
.team__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
  transform-origin: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.team__card:hover .team__img img {
  transform: scale(1.07);
}

/* Info area: roomier */
.team__info {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1 1 auto;
}
.team__info h3 {
  font-size: 1.18rem; /* slightly larger name */
  font-weight: 700;
  color: #1d3557;
  margin: 0;
}
.team__info .role {
  font-size: 1.02rem;
  color: #457b9d;
  font-weight: 600;
  margin-top: 0.18rem;
}
.team__info .desc {
  font-size: 0.98rem;
  color: #6c757d;
  line-height: 1.46;
  margin-top: 0.45rem;
}

/* Socials row pinned at bottom for equal-height cards */
.team__info .socials {
  margin-top: auto;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.team__info .socials a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(29,53,87,0.05);
  color: #1d3557;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.team__info .socials a:hover {
  transform: translateY(-4px);
  background: rgba(29,53,87,0.09);
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .team__img { height: 260px; }
  .team__grid { gap: 1.25rem; }
}
@media (max-width: 640px) {
  .team__grid { gap: 1rem; grid-template-columns: 1fr; }
  .team__img { height: 300px; } /* slightly taller on phones for legibility */
  .section__title { font-size: 1.85rem; }
  .section__subtitle { font-size: 0.95rem; }
}


/* Testimonials */
/* Testimonials Section */
.testimonials {
  padding: 6rem 1.5rem;
  background: #f8f9fb;
}

.section__subtitle {
  text-align: center;
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Grid layout */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

/* Testimonial card */
.testimonial__card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

/* Header with image */
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f9b233;
  transition: transform 0.3s ease;
}

.testimonial__card:hover .testimonial__img {
  transform: scale(1.1);
}

/* Client name */
.testimonial__header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d3557;
}

/* Testimonial text */
.testimonial__card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}



/* Contact */

.contact-section {
  background: url("../img/home.jpg") no-repeat center center/cover;
  padding: 80px 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 85%;
  max-width: 1200px;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  padding: 40px;
  gap: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 12px;
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #4da6ff;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #1e90ff;
}


/* Footer */
.footer{background:#111;color:#fff;padding:3rem 2rem 2rem;}
.footer__container{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:flex-start;}
.footer__about h3{color:#f9b233;margin-bottom:1rem;}
.footer__about p{margin-bottom:1rem;color:#ddd;}
.footer__socials a{color:#fff;font-size:1.5rem;margin-right:1rem;transition:.3s;}
.footer__socials a:hover{color:#f9b233;}

.footer__newsletter h3{margin-bottom:.5rem;color:#f9b233;}
.newsletter__form{display:flex;gap:.5rem;flex-wrap:wrap;}
.newsletter__form input{flex:1;padding:.8rem;border:none;border-radius:30px;padding-left:1rem;}
.newsletter__form button{border-radius:30px;}
.footer__copy{text-align:center;margin-top:2rem;font-size:.9rem;color:#aaa;}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .nav {
    gap: 2rem;
    padding: 1rem 2rem;
  }

  .home__container {
    grid-template-columns: 1fr; /* stack */
    text-align: center;
  }

  .about__grid {
    grid-template-columns: 1fr; /* single column */
  }

  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .team__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-container {
    grid-template-columns: 1fr; /* stacked */
    text-align: center;
  }

  .footer__container {
    grid-template-columns: 1fr; /* stacked footer */
    text-align: center;
  }
}

/* Large Phones (<=768px) */
@media (max-width: 768px) {
  /* Navbar */
  .nav__list {
    gap: 1rem;
  }

  .nav__logo img {
    width: 50px;
    height: 50px;
    left: 10px;
  }

  /* Typography scaling */
  .home__title {
    font-size: 2.2rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .team__info h3 {
    font-size: 1.2rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
  }
}

/* Small Phones (<=576px) */
@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }

  /* Navbar collapse */
  .nav {
    justify-content: flex-end;
    gap: 1rem;
    padding: 0.8rem 1rem;
  }

  .nav__list {
    display: none; /* hide for mobile - can add hamburger later */
  }

  /* Hero/Home */
  .home__title {
    font-size: 1.8rem;
  }
  .home__subtitle {
    font-size: 1rem;
  }

  /* Services & Team */
  .services__grid,
  .team__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Contact */
  .contact-container {
    padding: 20px;
  }

  .contact-form h2 {
    font-size: 1.3rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }
  .footer__container {
    gap: 1.5rem;
  }
}

/* Extra Small Phones (<=375px) */
@media (max-width: 375px) {
  .nav__logo img {
    width: 45px;
    height: 45px;
  }

  .home__title {
    font-size: 1.6rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* BacktoTop Btn */

   .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #000; /* Change to your theme color */
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: #444; /* Hover effect */
}


/* Values & Goals section */
.goals-section {
  padding: 6rem 1.5rem;
  background: #f8f9fb;
}

.section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Goals Grid */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.goal-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.goal-icon {
  font-size: 2.5rem;
  color: #f9b233;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.goal-card:hover .goal-icon {
  transform: scale(1.2);
}

.goal-card h3 {
  font-size: 1.3rem;
  color: #1d3557;
  margin-bottom: 0.7rem;
}

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

/* Values & Vision */
.values-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Background Images */
.value-bg-1 {
  background: url('../img/destination-img-2.png') center/cover no-repeat;
}

.value-bg-2 {
  background: url('../img/destination-img-3.png') center/cover no-repeat;
}

/* Overlay for text */
.value-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29,53,87,0.75);
  color: #fff;
  opacity: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}

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

.value-overlay h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.value-overlay ul {
  list-style: disc inside;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* For small screens (e.g. below 768px) */
@media (max-width: 768px) {
  .value-overlay {
    opacity: 1 !important;   /* Always visible */
  }
}

/* WhatsApp Btn */
  .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.whatsapp-btn i {
  font-size: 1.2rem;
}




    