@font-face {
    font-family: 'IvyPrestoHeadline';
    src: url('assets/fonts/ivypresto-headline-light.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}



:root {
    --c1: #e4cfb9;
    --c2: #feba88;
    --c3: #d9dbdf;
    --c4: #97c680;
    --c5: #bae1ff;
    --gold: #aa8e31;
}

body {
    background-color: #f7f4f2;
    font-family: 'IvyPrestoHeadline', Georgia, serif;
}

.home-container{
    padding: 0 50px;
}

/* ///////     MENU     /////// */

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #f7f4f2;
    backdrop-filter: blur(10px);
    z-index: 1000;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    font-weight: 400px;
    letter-spacing: .1em;
    font-size: 14px;
    font-style: normal;
}

.navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* MENU */
.menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.menu li a {
color: #000;
text-decoration: none;
font-size: 14px;
font-weight: 400px;
transition: opacity 0.3s ease;
font-family: 'Source Sans Pro', sans-serif;
letter-spacing: 0.3px;
}

.menu li a:hover {
    /* opacity: 0.4; */
    color: #aa8e31;
}

/* CONNECT BUTTON */
.connect-btn {
padding: 10px 20px;
border: 1.5px solid #000;
border-radius: 6px;
color: #000;
text-decoration: none;
transition: all 0.3s ease;
}

.connect-btn:hover {
    opacity: 0.4;
}

/* Hamburger base */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 6px;
}

.hamburger span {
width: 26px;
height: 3px;
background: #aa8e31; /* YOUR COLOR */
border-radius: 2px;
transition: all 0.35s ease;
}

/* OPEN STATE → CLOSE ICON */
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
@media (max-width: 768px) {
.menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f7f4f2;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    display: none;
}

.menu.active {
    display: flex;
}

.hamburger {
    display: flex;
}
}

/* ///////     VIDEO SECTION     /////// */

/* HERO SECTION */
.hero-section {
background: #f7f4f2;
}

.hero-wrapper {
position: relative;
/* max-width: 1200px; */
margin: 0 auto;
border-radius: 24px;
overflow: hidden;
height: 520px;
background: #000;
}

/* Video */
.hero-wrapper video {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Dark overlay for text readability */
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25)
);
z-index: 1;
}

/* Hero Text */
.hero-content {
position: absolute;
top: 50%;
left: 60px;
transform: translateY(-50%);
max-width: 520px;
color: #fff;
z-index: 2;
}

.hero-content h1 {
    font-family: 'ivypresto-headline';
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    font-size: 30px;
    line-height: 1.2em;
    font-style: normal;
    

}

.hero-content h1 span {
color: #aa8e31;

}

.hero-content p {
font-family: 'Source Sans Pro', sans-serif;
font-size: 16px;
line-height: 1.7;
opacity: 0.95;
text-align: justify;
}

@media (max-width: 768px) {
    .hero-wrapper {
    height: 420px;
    border-radius: 18px;
    }

    .hero-content {
    left: 24px;
    right: 24px;
    max-width: 100%;
    }

    .hero-content h1 {
    font-size: 20px;
    text-align: center;
    }

    .hero-content p {
    font-size: 15px;
    text-align: justify;
    }
}

/* ///////     TEXT CONTENT     /////// */

.text-content-section {
    background-color: #f7f4f2;
    color: #020202;
    max-width: 1300px;
    margin: 0 auto;
    padding: 150px 0px;
    line-height: 1.7;
}

.text-content-section p {
    font-size: 16px;
    margin-bottom: 28px;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify;
}

.drop-cap::first-letter {
    font-family: "Bradley Hand ITC", "Source Sans Pro", "Comic Sans MS", cursive;
    font-size: 3.5rem;
    font-weight: 600;
    float: left;
    line-height: 0.6;
    margin-right: 8px;
    margin-top: 4px;
    color: #aa8e31;
}

.text-content-section .highlight {
    color: #aa8e31;
}

@media (max-width: 768px) {
    .text-content-section {
        padding: 48px 20px;
    }

    .text-content-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* ///////     INDUSTRY SECTION     /////// */

.industry-section {
    /* margin: 0 auto;
    padding: 80px 24px; */
}

.grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.text-block {
display: flex;
flex-direction: column;
height: 100%;            /* important */
}

/* Heading sticks to top */
.text-block h2 {
font-size: 40px;
margin-top: 25px;     /* 👈 adjustable gap */
color: #111;
font-family: 'ivypresto-headline';
font-weight: 500;
letter-spacing: .06em;
line-height: 1.2em;
font-style: normal;
}

/* Paragraph centers vertically */
.text-block p {
font-size: 16px;
color: #666;
font-family: 'Source Sans Pro', sans-serif;
margin-top: 50px;       /* 👈 pushes paragraph down */
margin-bottom: auto;    /* 👈 keeps it centered */
max-width: 520px;
line-height: 1.5;
}



.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 330px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.4)
    );
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateY(100%);
    transition: transform 0.9s ease;
    overflow-y: auto;
}

.image-card:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'ivypresto-headline';
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    font-style: normal;

}

.overlay p {
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify;
}

.overlay li {
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .text-block h2 {
        font-size: 28px;
        font-family: Arial, Helvetica, sans-serif;
    }
}

/* ///////     WHAT WE DO SECTION     /////// */

.what-we-do-section {
    margin: 150px 0px;
    text-align: center;
    padding: 0 120px;
}

.what-we-do-section h2 {
    font-size: 42px;
    font-family: 'ivypresto-headline';
    margin-bottom: 18px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    font-style: normal;
    color: #1e1e2f;
}

.what-we-do-section p {
    color: #666;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 0px; /* 👈 reduced vertical & horizontal gap */
    margin-top: 70px;
    justify-items: center; /* 👈 centers cards nicely */
}

.service-item {

    text-align: center;
background-color: #fff;
padding: 24px 20px;
border-radius: 8px;
width: 100%;        /* 👈 allow grid to control width */
max-width: 360px; 

}

/* ICON CONTAINER */
.service-item .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON IMAGE FILLS AREA */
.service-item .icon img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}

.service-item h3 {
font-size: 20px;
font-family: 'ivypresto-headline';
font-weight: 300;
color: #1e1e2f;
margin-bottom: 10px;
letter-spacing: .06em;
line-height: 1.2em;
font-style: normal;
}

.service-item p {
font-size: 14px;
color: #6b7280;
line-height: 1.5;
max-width: 320px;
margin: 0 auto;
font-family: 'Source Sans Pro', sans-serif;
}

@media (max-width: 1200px) {
.what-we-do-section {
padding: 0 60px;
}
}

@media (max-width: 992px) {
.what-we-do-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 576px) {
.what-we-do-section {
padding: 0 20px;
}

.what-we-do-grid {
grid-template-columns: 1fr;
gap: 40px;
}
}


/* ===== MARQUEE WRAPPER ===== */
.product-marquee {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #f7f4f2;
    margin: 150px 0px;
    text-align: center;
}

.product-marquee h2 {
    font-size: 42px;
    font-family: 'ivypresto-headline';
    margin-bottom: 50px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    font-style: normal;
    color: #1e1e2f;
}

/* ===== MARQUEE TRACK ===== */
.product-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}


/* Pause animation on hover */
.product-track:hover {
    animation-play-state: paused;
}

/* ===== PRODUCT CARD ===== */
.product-item {
    width: 220px;
    margin: 0 25px;
    text-align: center;
    background: #f7f4f2;
    border-radius: 10px;
    padding: 15px;
    transition: 
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Card hover effect */
.product-item:hover {
    background: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* ===== IMAGE FIX ===== */
.product-item img {
    width: 100%;
    height: 200px;                 /* FIXED HEIGHT */
    object-fit: cover;             /* fills area nicely */
    object-position: center;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 10px;
    transition: transform 0.35s ease;
}

/* Optional: slight zoom on image too */
.product-item:hover img {
    transform: scale(1.05);
}

/* ===== TEXT ===== */
.product-name {
    margin-top: 10px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400px;
    transition: opacity 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.product-category {
    margin-top: 6px;
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ===== ANIMATION ===== */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* /////// MAP SECTION //////////////////*/

.world-map-section {
background: #f7f4f2;
padding: 60px 40px;
min-height: 100vh;
}

.world-map-section h2 {
    font-size: 42px;
    font-family: 'ivypresto-headline';
    margin-bottom: 25px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    font-style: normal;
    color: #1e1e2f;
    text-align: center;
}

.world-map-section p {
    color: #666;
    margin: 33px 240px;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
}

.map-layout {
display: flex;
align-items: center;
/* justify-content: space-between; */
gap: 170px; /* 👈 controls space between panel & map */
max-width: 1400px;
margin: auto;

}



.map-container {
flex: 0 0 50%;
order: 1; /* RIGHT */
position: relative;
/* animation: zoomMap 10s ease-in-out infinite; */
}



.locations-panel {
flex: 0 0 30%;
background: #f7f4f2;
border-radius: 16px;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 24px;
order: 2;
}


.location-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fafafa;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Icon bubble */
.location-card .icon {
    width: 44px;
    height: 44px;
    background: #f3efe9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aa8e31;
    font-size: 16px;
    flex-shrink: 0;
}

/* Text block */
.location-info h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'ivypresto-headline';
    font-weight: 400;
    color: #1e1e2f;
    letter-spacing: 0.05em;
}

.location-info p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #aa8e31;
    font-family: 'Source Sans Pro', sans-serif;
}


@keyframes zoomMap {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.map-container img {
width: 100%;
height: 100%;
object-fit: contain;
opacity: 0.2;
border-radius: 20px;
}

/* ===== SVG LINES ===== */

.map-lines path {
    fill: none;
    stroke: #aa8e31;
    stroke-width: 0.25;
    stroke-linecap: round;
    stroke-dasharray: 4;
    opacity: 0.9;
}

.map-lines .icon text {
    fill: #aa8e31;
}

.map-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-lines .icon path {
    fill: #aa8e31;
    filter: drop-shadow(0 0 1px rgba(170,142,49,0.6));
}

.map-lines {
    overflow: visible;
}


@keyframes moveLine {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -20; }
}

/* ===== PINS ===== */

.map-pin {
    position: absolute;
    color: #aa8e31;
    font-size: 28px;
    cursor: pointer;
}

.map-pin i {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}


/* ===== TOOLTIP ===== */

.tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    display: none;
}

.map-pin:hover .tooltip {
    display: block;
}

.india {
    top: 53%;
    left: 75%;
}

.dubai {
    top: 45%;
    left: 65%;
}

.slovenia {
    top: 33%;
    left: 50%;
}


@media (max-width: 900px) {
.map-layout {
    flex-direction: column;
}

.map-container,
.locations-panel {
    flex: 1 1 100%;
}
}

/* ///////     CONTACT SECTION     /////// */
.contact-section {
    padding: 80px 0px;
    margin-bottom: 75px;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 42px;
    font-family: 'ivypresto-headline';
    margin-bottom: 40px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    font-style: normal;
    color: #1e1e2f;
}

.contact-header p {
    color: #666;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 70px;
}

/* CONTAINER */
.contact-container {
    display: grid;
    margin: 0px 50px;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LEFT CARD */
.contact-info {
    background: url("../images/contact-us.jpg") center/cover no-repeat;
    border-radius: 16px;
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.contact-info .overlay {
    position: relative;
    color: #fff;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 15px;
}

/* FORM */
.contact-form {
    padding: 10px;
}

.contact-form .row {
    display: flex;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #e4e4e4;
    margin-bottom: 18px;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    border-radius: 20px;
    resize: none;
}

.contact-form button {
    background: #97c680;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #97c680;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form .row {
        flex-direction: column;
    }

}


/* ===== PROCESS SECTION ===== */
.process-section {
    margin-top: 120px;
    text-align: center;
  }
  
  .process-header h2 {
    font-family: 'ivypresto-headline';
    font-size: 42px;
    margin-bottom: 10px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    font-style: normal;
    color: #1e1e2f;
  }
  
  .process-header p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 60px;
  }
  
  /* ===== CARDS GRID ===== */
  .process-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: auto;
  }
  
  /* ===== CARD ===== */
  .process-card {
    /* background: #ffffff; */
    border-radius: 18px;
    padding: 36px 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
  }
  
  .process-card img {
    height: 180px;
  }
  
  .process-card h3 {
    font-family: 'ivypresto-headline';
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .process-card .divider {
    display: block;
    width: 180px;
    height: 1px;
    background: #97c680;
    margin: 14px auto;
  }
  
  .process-card p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }
  
  /* ===== HOVER & ACTIVE STATE ===== */
  .process-card:hover,
  .process-card.active {
    background: #97c680;
    transform: translateY(-6px);
  }
  
  .process-card:hover h3,
  .process-card.active h3,
  .process-card:hover p,
  .process-card.active p {
    color: #ffffff;
  }
  
  .process-card:hover .divider,
  .process-card.active .divider {
    background: #ffffff;
  }



  
  /* ===== TIMELINE ===== */
  .process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
  
  .process-timeline .dot {
    width: 20px;
    height: 20px;
    background: #97c680;
    border-radius: 50%;
  }
  
  .process-timeline .dot.active {
    background: #5d7850;
  }
  
  .process-timeline .line {
    width: 270px;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      #97c680,
      #97c680 4px,
      transparent 4px,
      transparent 8px
    );
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) {
    .process-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .process-cards {
      grid-template-columns: 1fr;
    }
  
    .process-timeline {
      display: none;
    }
  }
  
  /* ===== FAQ SECTION ===== */


 .faq-wrapper {
    margin-top: 120px;
  }
  
  /* MAIN BOX */
  .faq-box {
    /* background: #ffffff; */
      box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-radius: 28px;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    align-items: center; /* CENTER LEFT CONTENT */
  }
  
  /* LEFT */
  .faq-left h2 {
    font-family: 'ivypresto-headline';
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    font-style: normal;
    color: #1e1e2f;
    
  }
  
  .faq-left p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: #555;
    max-width: 280px;
  }
  
  /* RIGHT BOX */
  .faq-right {
    background: #f1f1f1;
    padding: 40px 46px;
  }
  
  /* FAQ ITEM */
  .faq-item {
    border-bottom: 1px solid #d6d6d6;
  }
  
  /* QUESTION */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #111;
    transition: color 0.3s ease;
  }
  
  /* ACTIVE QUESTION COLOR */
  .faq-item.active .faq-question {
    color: #aa8e31;
  }
  
  /* ICON */
  .faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: #aa8e31;
  }
  
  /* ANSWER */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  
  .faq-answer p {
    padding-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
  }
  
  /* ACTIVE OPEN */
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  /* RESPONSIVE */
  /* RESPONSIVE */
@media (max-width: 768px) {
    .faq-box {
      grid-template-columns: 1fr;
      padding: 40px;
    }
  
    .faq-right {
      padding: 30px;
    }
  
    .faq-left h2 {
      font-size: 36px;
    }
  }

/* ///////     FOOTER SECTION     /////// */


.site-footer {
    background: #f7f4f2;
    margin-top: 0;
}

.footer-wrapper {
    position: relative;
    min-height: 600px;
    padding-top: 80px;
    overflow: hidden;
    color: #fff;
}

.footer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        #f7f4f2 0%,
        rgba(247, 244, 242, 0.85) 12%,
        rgba(247, 244, 242, 0.45) 28%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

/* HERO TEXT */
.footer-hero {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.footer-hero h2 {
    font-size: 65px;
    font-family: 'ivypresto-headline';
    margin-bottom: 10px;
    text-transform: none;
    line-height: 1.2em;
    font-style: normal;
    color: #5d7850;
}

.footer-hero p {
    color: #5d7850;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
}

.footer-sides {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

/* LEFT */
.footer-left h3 {
    font-family: 'ivypresto-headline';
    font-size: 32px;
    color: #f5f3ee;
    margin-bottom: 6px;
}

.footer-left span {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #cfa26a;
    font-style: italic;
}

/* RIGHT ICONS */
.footer-right {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.footer-right a {
    color: #f5f3ee;
    font-size: 16px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-right a:hover {
    opacity: 1;
}

/* BRAND WRAP */
.brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* MAIN BRAND */
.brand-wrap h3 {
    font-weight: 100;
    letter-spacing: 0.1em;
    font-family: 'ivypresto-headline';
    font-size: 34px;
    color: #f5f3ee;
    line-height: 1;
    margin: 0;
}

/* TAGLINE */
.brand-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'ivypresto-headline';
    font-style: italic;
    color: #aa8e31;
    line-height: 1.1;
}

/* TWO LINES – SAME VISUAL HEIGHT */
.brand-tagline span {
    font-size: 15px;
    white-space: nowrap;
}

/* Main Content */
.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    padding: 60px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    font-family: 'Source Sans Pro', sans-serif;
    position: absolute;      /* position relative to footer-wrapper */
    bottom: 0;               /* stick to bottom */
    left: 20px;
    width: 97%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    z-index: 2;              /* above the background */
}

.footer-links a {
    color: #f5f3ee;
    text-decoration: none;
    margin: 0 6px;
    opacity: 0.85;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-family: 'Source Sans Pro', sans-serif;
    }

    .footer-hero h2 {
        font-size: 42px;
    }

    .footer-sides {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-divider {
        height: 1px;
        width: 80px;
    }

    .footer-right {
        flex-direction: row;
        gap: 18px;
    }

}




/* ===== TIMELINE SECTION ===== */
.timeline-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0;
    margin-top: 120px;
  }

  .timeline-container {
    width: 100%;
    max-width: 1400px;
  }
  
  /* HEADER SECTION */
  .timeline-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .timeline-header h2 {
    font-family: 'ivypresto-headline';
    font-size: 42px;
    margin-bottom: 12px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.2em;
    color: #1e1e2f;
  }
  
  .timeline-header p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* STAGE = IMAGE + TEXT CONTAINER */
  .timeline-stage {
    position: relative;
    width: 100%;
    isolation: isolate;
  }

  
  /* IMAGE */
  .timeline-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* OVERLAY CONTAINER - SPANS ENTIRE IMAGE */
  .timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  
  /* OVERLAY TEXT BOXES */
  .timeline-item {
    position: absolute;
    width: 220px;
    text-align: left;
    padding: 20px 18px;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
  }
  
  /* HORIZONTAL DIVIDER (inside boxes) */
  .timeline-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
  }
  
  /* TYPOGRAPHY */
  .timeline-item h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.5px;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .timeline-item h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .timeline-item p {
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  /* POSITIONING */
  .item-1 { 
    top: 85%; 
    left: 4%; 
    transform: translateY(-50%);
  }
  
  .item-2 { 
    top: 80%; 
    left: 22%; 
    transform: translateY(-50%);
  }
  
  .item-3 { 
    top: 73%; 
    left: 42%; 
    transform: translateY(-50%);
  }
  
  .item-4 { 
    top: 63%; 
    left: 62%; 
    transform: translateY(-50%);
  }
  
  .item-5 { 
    top: 55%; 
    left: 82%; 
    transform: translateY(-50%);
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 1024px) {
    .timeline-item {
      width: 180px;
      padding: 16px 14px;
    }
    .timeline-item h3 { font-size: 14px; }
    .timeline-item h4 { font-size: 12px; }
    .timeline-item p { font-size: 11px; }
    .timeline-divider { margin: 10px 0; }
    
  }
  
  @media (max-width: 768px) {
    .timeline-wrapper {
      padding: 40px 0;
    }
    
    .timeline-item {
      width: 140px;
      padding: 12px 10px;
    }

    .timeline-header {
        margin-bottom: 40px;
        padding: 0 20px;
      }
    
      .timeline-header h2 {
        font-size: 32px;
      }
    
      .timeline-header p {
        font-size: 14px;
      }
      
    .timeline-item h3 { font-size: 12px; }
    .timeline-item h4 { font-size: 11px; }
    .timeline-item p { font-size: 9px; }
    .timeline-divider { margin: 8px 0; }
    
  }


