* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif
}

/* HERO VIDEO SECTION */
/* =========================
VIDEO SLIDER UI (ADDED ONLY)
========================= */
/* FALLBACK IMAGE */
.hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

/* VIDEO FADE */
.hero-bg-video {
  transition: opacity 0.5s ease-in;
}

.hero-bg-video {
  transition: opacity 0.5s ease-in;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.hero-dot {
  width: 14px;
  height: 14px;
  background: #999;
  margin: 6px;
  display: inline-block;
  border-radius: 50%;
  transition: 0.3s;
}

/* ACTIVE DOT */
.hero-dot.active {
  width: 14px;
  height: 14px;
  background: white;
}

/* ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 5;
}
/* Arrow left right */

.hero-arrow.left { 
  left: 70px; 
  border-radius: 5px ;
}
.hero-arrow.right { 
  right: 70px;
  border-radius: 5px; 
}

@media (max-width: 1024px) {
.hero-arrow.left { 
  left: 70px; 
  border-radius: 5px ;
}
.hero-arrow.right { 
  right: 70px;
  border-radius: 5px; 
}
}

@media (max-width: 900px) {
.hero-arrow.left { 
  left: 70px; 
  border-radius: 5px ;
}
.hero-arrow.right { 
  right: 70px;
  border-radius: 5px; 
}
}

@media (max-width: 768px) {
  .hero-arrow.left { 
  left: 20px; 
  border-radius: 5px ;
}
.hero-arrow.right { 
  right: 20px;
  border-radius: 5px; 
}
}

/* TEXT SMOOTH TRANSITION */
.hero-content h1,
.hero-content p {
  transition: opacity 0.4s ease;
}

/* HERO VIDEO SECTION */
.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
}

/* Video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* ========================================
HERO HEADER BASE
======================================== */

.hero-header header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 30px 70px;
  background: transparent;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  z-index: 1002;
}


/* DESKTOP NAV */

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

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
  transition: 0.25s;
}

.nav a:hover {
  opacity: 1;
}

/* CONTACT BUTTON */

.hero-header .contact-sales {
  color: #fff;
  background-color: #000;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 500;
}


/* ========================================
FONT AWESOME BURGER ICON
======================================== */

.menu-toggle {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 1002;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}


/* ========================================
MOBILE MENU PANEL
======================================== */

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000000(0,0,0,0.99);
  backdrop-filter: blur(19px);
  /* background-color: #000; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  gap: 28px;
  transition: right 0.4s ease;
  z-index: 1001;
}

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

/* MOBILE LINKS ANIMATION */

.nav-mobile a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.4s ease;

}

.nav-mobile.active a {
  opacity: 1;
  transform: translateX(0);
}

/* stagger animation */

.nav-mobile.active a:nth-child(1) { transition-delay: 0.15s; }
.nav-mobile.active a:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active a:nth-child(3) { transition-delay: 0.25s; }
.nav-mobile.active a:nth-child(4) { transition-delay: 0.3s; }
.nav-mobile.active a:nth-child(5) { transition-delay: 0.35s; }
.nav-mobile.active a:nth-child(7) { transition-delay: 0.4s; }


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

@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-header header {
    padding: 30px 20px;
  }

}

/* Hero content */
.hero-content {
  position: absolute;
  z-index: 3;
  bottom: 80px;
  left: 70px;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
}


.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #f2f2f2;
}

@media (max-width: 768px) {
  .hero-top {
    padding: 20px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 50px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

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

.header {
  background: #000;
  padding: 20px 0;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  font-family: futura;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  height: 80vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
  color: #fff;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.buttons {
  margin-top: 20px;
}

.btn {
  background: #ffc400;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
}

.btn.outline {
  background: transparent;
  border: 2px solid #ffc400;
  color: #ffc400;
}

/*-------------------------SCROLL HIGHLIGHT-------- */
.scroll-highlight {
  background: #faf7f2;
  padding: 50px 60px;
}

.highlight-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Text */
.highlight-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.35;
  font-weight: 400;
}

/* Each line */
.highlight-text span {
  display: block;
  color: rgba(0, 0, 0, 0.18);
  transition: color 0.4s ease;
}

/* Active highlight */
.highlight-text span.active {
  color: #111;
}

/* CTA */
.highlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 10px 20px;
  border: 1px solid #111;
  border-radius: 24px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}


/* MOBILE OPTIMIZED */
@media (max-width: 768px) {
  .scroll-highlight {
    padding: 100px 20px;
  }

  .highlight-text {
    font-size: 28px;
  }
}





/*-------------------END OF SCROLL HIGHLIGHT-------- */



/* FEATURES SECTION */
.features {
  background: #faf7f2;
  padding: 120px 60px;
}

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

/* Feature Row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 140px;
}

/* Reverse layout */
.feature-row.reverse {
  grid-template-columns: 1fr 1fr;
}

/* Image */
.feature-image {
  display: flex;
  justify-content: center;
}

.image-frame {
  background: #ffc400;
  padding: 28px;
  border-radius: 22px;
  max-width: 420px;
}

.image-frame img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Text */
.feature-text {
  max-width: 460px;
}

.feature-icon {
  font-size: 20px;
  margin-bottom: 14px;
  color: #111;
}

.feature-text h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* CSS — Styling + Responsive Behavior */

/* FEATURES SECTION */
.features {
  background: #faf7f2;
  padding: 120px 60px;
}

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

/* Feature Row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 140px;
}

/* Reverse layout */
.feature-row.reverse {
  grid-template-columns: 1fr 1fr;
}

/* Image */
.feature-image {
  display: flex;
  justify-content: center;
}

.image-frame {
  background: #ffc400;
  padding: 28px;
  border-radius: 22px;
  max-width: 420px;
}

.image-frame img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Text */
.feature-text {
  max-width: 460px;
}

.feature-icon {
  font-size: 20px;
  margin-bottom: 14px;
  color: #111;
}

.feature-text h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* 3️⃣ Tablet Optimization (≤ 1024px) */

@media (max-width: 1024px) {
  .features {
    padding: 100px 40px;
  }

  .feature-row {
    gap: 50px;
    margin-bottom: 100px;
  }
}



/* BLOG SECTION */
.blogs {
  background: #111;
  color: #fff;
  padding: 80px 60px;
}

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

/* Title */
.blogs-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Blog Row */
.blog-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

/* Yellow Shape (Image Placeholder) */
.blog-shape {
  width: 240px;
  height: 160px;
  background: #ffc400;
  border-radius: 24px;
  flex-shrink: 0;
}

/* Text Content */
.blog-content {
  max-width: 520px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 14px;
}

/* Button */
.blog-btn {
  display: inline-block;
  background: #ffc400;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}


@media (max-width: 768px) {
  .blogs {
    padding: 60px 20px;
  }

  .blog-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-shape {
    width: 100%;
    height: 180px;
  }

  .blog-content {
    max-width: 100%;
  }
}

.blog-btn:hover {
  background: #e6b800;
}

.btn.small {
  padding: 8px 14px;
  font-size: 14px;
}


/* FAQS */
/* FAQ SECTION */
.faq-section {
  background: #000;
  color: #fff;
  padding: 100px 60px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

/* Left Title */
.faq-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

/* FAQ List */
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 26px 0;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

/* Icon */
.faq-icon {
  font-size: 18px;
  opacity: 0.7;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 26px;
  max-width: 720px;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FAQs Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 20px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-title h2 {
    font-size: 42px;
  }

  .faq-question {
    font-size: 18px;
  }
}



/* FOOTER */

/* Footer Nexa Farm */
/* CTA FOOTER */
.cta-footer {
  background: #faf7f2;
  padding: 80px 60px 40px;
  color: #111;
}

/* Top section */
.cta-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* Left */
.cta-left h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Primary CTA */
.cta-btn {
  background: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Plus button */
.cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Right navigation */
.cta-right {
  display: flex;
  gap: 80px;
}

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

.cta-links li {
  margin-bottom: 14px;
}

.cta-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
}

.cta-links a span {
  margin-left: 6px;
}

/* Bottom bar */
.cta-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
}

/* Brand */
.cta-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-brand img {
  height: 36px;
}

.cta-brand span {
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

@media (max-width: 768px) {
  .cta-footer {
    padding: 60px 20px 30px;
  }

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

  .cta-left h2 {
    font-size: 36px;
  }

  .cta-right {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .cta-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(40,40,40,0.95);
  color: #fff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
}

.cookie-text {
  max-width: 60%;
}

.cookie-text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-btn:hover {
  background: rgba(255,255,255,0.25);
}

.cookie-btn.primary {
  background: #ffc400;
  color: #000;
}

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

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-text {
    max-width: 100%;
  }

}

/* End of Cookies */
/* STORIES SECTION */

.stories {
  background: #000;
  color: #fff;
  padding: 80px 60px;
}

/* Header */

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.stories-header h2 {
  font-size: 28px;
  font-weight: 500;
}

.stories-header a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Grid Container */

.stories-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
  }

/* Story Card */

.story-card {
  cursor: pointer;
}

.story-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.story-card img:hover {
  transform: scale(1.03);
}

.story-card p {
  margin-top: 12px;
  font-size: 16px;
  color: #ddd;
}

/* ---------------------- */
/* TABLET (iPad) */
/* ---------------------- */

@media (max-width: 1024px) {

  .stories {
    padding: 60px 40px;
  }

  .stories-slider {
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }

  .story-card {
    min-width: 50%;
    scroll-snap-align: start;
  }

  .story-card img {
    height: 320px;
  }

  .stories-slider::-webkit-scrollbar {
    display: none;
  }

}

/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 768px) {

  .stories {
    padding: 50px 20px;
  }

  .stories-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }

  .story-card {
    min-width: 80%;
    scroll-snap-align: start;
  }

  .story-card img {
    height: 260px;
  }

  .stories-slider::-webkit-scrollbar {
    display: none;
  }

}



/* Moving Investors Logo */
/* SECTION */

.logo-section{
background:#faf7f2;
padding:100px 50px;
overflow:hidden;
}

/* MARQUEE */

.logo-marquee{
width:100%;
overflow:hidden;
position:relative;
}

/* TRACK */

.logo-track{
display:flex;
align-items:center;
gap:90px;
width:max-content;
animation:logoScroll 15s linear infinite;
}

/* LOGOS */

.logo-track img{
height:40px;
opacity:.85;
transition:.3s;
}

/* ANIMATION */

@keyframes logoScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* Tablet View */

@media (max-width:900px){
    .logo-section{
    padding: 50px 21px;
  }

.logo-track{
gap:50px;
}

.logo-track img{
height:30px;
}

}
/* Mobile View */
@media (max-width:600px){

  .logo-section{
    padding: 50px 0px;
  }

.logo-track{
gap:40px;
}

.logo-track img{
height:26px;
}

}

/* Stop on Hover */
.logo-marquee:hover .logo-track{
animation-play-state:paused;
}


.brand-logo {
  height:40px;
  filter: grayscale(100%) brightness(0);
  transition:0.35s ease;
}

.logo-track img:hover{
  filter: grayscale(0%);
  opacity:1;
  transform:scale(1.05);
}


/* Below is the Style for Blogs */

/* PAGE TITLE */

.blog-hero{
padding:50px 60px 40px;
}

.blog-hero h1{
font-size:36px;
}



/* FEATURE GRID */

.blog-grid{
padding:0 60px 80px;
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}



/* FEATURED BLOG */

.blog-feature img{
width:100%;
border-radius:10px;
}

.blog-feature h2{
font-size:28px;
margin-top:20px;
}

.blog-description{
line-height:24px;
margin-top:10px;
}



/* META */
.blog-meta{
font-size:14px;
color:#777;
margin-top:6px;
}



/* SIDE BLOG */

.blog-side{
display:flex;
flex-direction:column;
gap:30px;
}

.blog-small img{
width:100%;
border-radius:10px;
}

.blog-small p{
margin-top:10px;
}



/* BLOG GRID */

.blog-list{
padding:40px 60px 100px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.blog-card{

transition:.3s;

}

.blog-card img{
width:100%;
border-radius:10px;
}

.blog-card h3{
font-size:16px;
margin-top:10px;
}

.blog-card:hover{
transform:translateY(-5px);
}



/* HIDDEN BLOGS */

.hidden-blog{
display:none;
}



/* LOAD MORE */

.load-more{
text-align:center;
margin-bottom:80px;
}

.load-more button{
padding:12px 32px;
border:none;
border-radius:30px;
background:#000;
color:#fff;
cursor:pointer;
}



/* RESPONSIVE */

@media(max-width:1000px){

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

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

}


@media(max-width:600px){

.blog-hero{
padding:80px 20px 30px;
}

.blog-grid{
padding:0 20px;
}

.blog-list{
padding:40px 20px;
grid-template-columns:1fr;
}

}
/* End of Blog Style */

/* =================================
PAGE HEADER
================================= */

.site-header{
position:relative;
top:0;
left:0;
width:100%;
background:#fff;
z-index:2000;
/* padding: 30px 70px; */
border-bottom:1px solid #eee;

}

.nav-container{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0px;
/* max-width:1300px; */
/* margin:auto; */

}

.container-main{

max-width:100%; 
/* The above code is responsible for width of the navigation */
margin:0 auto;
padding-left:60px;
padding-right:60px;

}


/* LOGO */

.site-logo{

font-size:22px;
font-weight:600;
color:#000;

}


/* DESKTOP NAV */

.desktop-nav{

display:flex;
gap:28px;
}

.desktop-nav a{
text-decoration:none;
color:#000;
font-size:15px;
opacity:.85;
padding-top: 10px;

}

.desktop-nav a:hover{
opacity:1;
}


/* CONTACT BUTTON */

.nav-cta{

background:#ffc400;
padding:10px 18px;
border-radius:24px;
font-weight:500;

}


/* BURGER ICON */

.menu-toggle{
font-size:24px;
cursor:pointer;
display:none;
color: #000;

}


/* =================================
FULLSCREEN MOBILE MENU
================================= */

.mobile-menu{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background: #ffffff;
display:flex;
align-items:center;
padding-left:60px;
transform:translateY(-100%);
transition:transform .45s ease;
z-index:1999;

}


/* ACTIVE */

.mobile-menu.active{
transform:translateY(0);
}


/* MENU CONTENT */

.mobile-menu-inner{
display:flex;
flex-direction:column;
gap:28px;

}


/* MENU LINKS */

.mobile-menu-inner a{
color:#000;
text-decoration:none;
font-size:36px;
font-weight:500;
opacity:.95;
transition:.3s;
}

.mobile-menu-inner a:hover{
opacity:1;
}


/* DIVIDER */

.menu-divider{
height:1px;
width:320px;
background:#444;
margin:20px 0;
}


/* HIGHLIGHT CTA */

.menu-highlight{
font-size:30px;
opacity:.85;
}


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

@media (max-width:900px){

.desktop-nav{
display:none;
}

.menu-toggle{
display:block;
}

.nav-container{
padding:20px;
}

.mobile-menu{
padding-left:30px;
}

.mobile-menu-inner a{
font-size:30px;
}

}


/* ============================= */
/* MISSION CENTER TEXT */
/* ============================= */

.mission-hero{

background:#ffffff;

padding:140px 0 80px;

text-align:center;

}

.mission-center{

max-width:800px;
margin:auto;

}

.mission-small{

font-size:18px;
margin-bottom:15px;
color:#777;

}

.mission-main{

font-size:44px;
line-height:1.3;
font-family: Georgia, "Times New Roman", serif;
margin-bottom:20px;

}

.mission-sub{

font-size:17px;
line-height:1.7;
color:#555;

}



/* ============================= */
/* MISSION GRID */
/* ============================= */

.mission-grid-section{

background:#faf7f2;

padding:100px 0;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

}

/* BLOCK */

.mission-block{

background:#fff;

padding:20px;

border-radius:12px;

transition:.3s;

}

.mission-block:hover{

transform:translateY(-6px);

}

/* IMAGE */

.mission-image img{

width:100%;

border-radius:10px; /* SAME AS BLOG IMAGE */

display:block;

}

/* TEXT */

.mission-text{

margin-top:14px;

}

.mission-text h3{

font-size:18px;

margin-bottom:6px;

}

.mission-text p{

font-size:15px;

line-height:1.6;

color:#555;

}



/* ============================= */
/* TABLET */
/* ============================= */

@media(max-width:1024px){

.mission-main{

font-size:36px;

}

.mission-grid{

grid-template-columns:repeat(2,1fr);

}

}



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

@media(max-width:768px){

.mission-hero{

padding:100px 0 60px;

}

.mission-main{

font-size:28px;

}

.mission-sub{

font-size:15px;

}

.mission-grid{

grid-template-columns:1fr;

gap:30px;

}

}

/* Section */
/* MISSION SECTION */

.mission-section{

padding:100px 50px;
background:#ffffff;

}

/* GRID */

.mission-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

/* TEXT */

.mission-title{

font-size:28px;

margin-bottom:15px;

}

.mission-highlight{

font-size:34px;

line-height:1.3;

margin-bottom:20px;

font-family: Georgia, "Times New Roman", serif;

}

.mission-description{

font-size:16px;

line-height:1.7;

color:#555;

max-width:520px;

}

/* IMAGE */

.mission-image img{

width:100%;

border-radius:10px;   /* SAME AS BLOG IMAGE */

display:block;

}

/* ---------------------- */
/* TABLET */
/* ---------------------- */

@media(max-width:1024px){

.mission-container{

grid-template-columns:1fr 1fr;

gap:50px;

}

.mission-highlight{

font-size:30px;

}

}

/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media(max-width:768px){

.mission-section{

padding:80px 0;

}

.mission-container{

grid-template-columns:1fr;

gap:40px;

}

.mission-highlight{

font-size:26px;

}

.mission-description{

font-size:15px;

}

}


