@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Poppins:wght@300;400;500&display=swap');

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

body{
    background:#003b52;   /*#0F766E  #000000*/
     overflow-x:hidden;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

.menu-toggle.active span{
    background:#000; /* or #fff depending on menu */
}

/* better: make X visible on mobile menu open */



.logo-wrapper{
    position:absolute;
    left:50%;
    top:-55px;
    opacity:0;
    animation:logoCinematic 1s ease forwards;
    animation-delay:.4s;
}

@keyframes logoCinematic{
    0%{
        opacity:0;
        transform:translateX(-50%) scale(.6);
        filter:blur(20px);
    }

    100%{
        opacity:1;
        transform:translateX(-50%) scale(1);
        filter:blur(0);
    }
}

.navbar{
    opacity:0;
    filter:blur(30px);
    transform:translateY(-60px) scale(.96);
    animation:cinematicNavbar 1.2s cubic-bezier(.19,1,.22,1) forwards;
}

@keyframes cinematicNavbar{
    0%{
        opacity:0;
        filter:blur(30px);
        transform:translateY(-60px) scale(.96);
    }

    60%{
        opacity:.7;
        filter:blur(10px);
    }

    100%{
        opacity:1;
        filter:blur(0);
        transform:translateY(0) scale(1);
    }
}

.mobile-menu{
    z-index:100000;
}

.menu-toggle{
    z-index:100001;
}


.navbar{
        width:95%;
    max-width:1600px;
    position:relative;
    margin:40px auto 20px;
    overflow:visible;
    background:#F7E7CE;
    border:1px solid rgba(240,197,120,.4);
    border-radius:30px;
      z-index:1000000;
    box-shadow:
    0 10px 40px rgba(0,0,0,.35);
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    border-bottom:1.5px solid rgba(156, 102, 0, 0.25);
}

.top-left{
    display:flex;
    gap:40px;
    color:#000000;
    font-size:17px;
    font-weight: 600;
}

.top-right{
    display:flex;
    gap:20px;
}

.top-right a{
    color:#000000;
    font-size:20px;
    transition:.3s;
}

.top-right a:hover{
    transform:translateY(-3px);
}

.main-nav{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    height:110px;
}

.nav-left,
.nav-right{
    display:flex;
    list-style:none;
    gap:40px;
}

.nav-left{
    margin-right:130px;
    transform:none;
    margin-top: -2px;   /* move HOME ABOUT MENU downward */
}

.partners-box{
    position:absolute;
    left:20px;
    top:6px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.book-btnn{
    display:inline-block;
    padding:10px 30px;
    background:#f0c578;
    color:#000000 !important;
    font-size:16px;   /* not 1px */
    font-weight:700;
    font-family:Georgia, serif;
    border-radius:12px;
    text-decoration:none;
    transition:.3s ease;
    white-space:nowrap; /* prevents line break */
}

.partner-logos{
    display:flex;
    gap:12px;
}

.partner-logos a{
     width:75px;
    height:45px;
    background:#fff;
    border-radius:50%;
    margin-top: -7px;
    overflow:hidden;
    border:2px solid #f0c578;
    transition:.3s;
}

.partner-logos a:hover{
    transform:translateY(0px) scale(0.8);
}

.partner-logos img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.nav-right{
    margin-left:130px;
    transform:none;
}

.main-nav a{
    text-decoration:none;
    color:rgb(0, 0, 0);
    font-size:16px;
    font-weight: 500;
    letter-spacing:1px;
    font-family: "Crete Round", serif;
    transition:.3s;
}

.main-nav a:hover{
    color:#b6852b;
}

.logo-wrapper{
    position:absolute;
    left:50%;
    top:-55px;
    transform:translateX(-50%);
    width:150px;
    height:150px;
    background:#031b49;
    border:3px solid #f0c578;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:
    0 0 25px rgba(240,197,120,.15);
}

.logo-wrapper img{
    width:130px;
    height:130px;
    object-fit:contain;
    border-radius:50%;
}

.book-btn{
    position:absolute;
    right:30px;
    padding:15px 30px;
    background:#f0c578;
    color:#000000 !important;
    font-weight:600;
    border-radius:8px;
    transition:.3s;
}

.book-btn:hover{
    background:#000000;
    transform:translateY(-3px);
    color:#ffffff !important;
}

.main-nav::before{
    content:"❦";
    position:absolute;
    top:-20px;
    left:50%;
    transform:translateX(-50%);
    color:#f0c578;
    font-size:45px;
}

/* =========================
   HAMBURGER
========================= */



.menu-toggle{
    display:none;
    position:fixed;
    top:30px;
    right:25px;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    z-index:99999999;
}

.menu-toggle span{
    position:absolute;
    left:7px;
    width:30px;
    height:3px;
    background:#000;
    transition:all .35s ease;
}

.menu-toggle span:nth-child(1){
    top:12px;
}

.menu-toggle span:nth-child(2){
    top:21px;
}

.menu-toggle span:nth-child(3){
    top:30px;
}

.menu-toggle.active span:nth-child(1){
    top:21px;
    transform:rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    top:21px;
    transform:rotate(-45deg);
}

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

.mobile-menu{
    position:fixed;
    top:0;
    right:0;
    width:100%;
    max-width:320px;
    height:100vh;

    background:#F7E7CE;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;

    transform:translateX(100%);
    transition:transform .45s ease;

    z-index:999999;

    box-shadow:-10px 0 30px rgba(0,0,0,.25);

    overflow-y:auto;
}

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

.mobile-nav{
    list-style:none;
    padding:0;
    margin:0;
    text-align:center;
}

.mobile-nav li{
    margin:18px 0;
}

.mobile-nav a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:600;
    letter-spacing:1px;
    font-family:"Crete Round", serif;
    transition:.3s;
}

.mobile-nav a:hover{
    color:#b6852b;
}

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

.mobile-partners{
    text-align:center;
}

.mobile-partners h4{
    margin-bottom:15px;
    color:#b6852b;
    letter-spacing:2px;
}

.mobile-partners img{
    width:90px;
    height:90px;
    border-radius:50%;
    border:2px solid #f0c578;
    background:#fff;
}

/* =========================
   MOBILE ORDER BUTTON
========================= */

.mobile-order{
    display:inline-block;
    padding:14px 28px;
    background:#f0c578;
    color:#000;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
}

/* =========================
   TABLET & MOBILE
========================= */

@media (max-width:1373px){

    .top-bar{
        display:none;
    }

    .partners-box,
    .book-btn,
    .nav-left,
    .nav-right{
        display:none !important;
    }

    .menu-toggle{
        display:block;
        top:39px;
        right:25px;
        transform:none;
    }

    .main-nav{
        justify-content:flex-start;
        align-items:center;
        height:110px;
        padding-left:20px;
    }

    .logo-wrapper{
        left:90px;
        top:10px;
        width:90px;
        height:90px;
    }

    .logo-wrapper img{
        width:95px;
        height:95px;
    }

    .main-nav::before{
        display:none;
    }
}

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

@media (max-width:576px){

    .navbar{
        width:96%;
        margin:15px auto;
    }

    .mobile-menu{
        width:100%;
        max-width:100%;
    }

    .logo-wrapper{
        width:85px;
        height:85px;
        left:80px;
        top:12px;
    }

    .logo-wrapper img{
        width:85px;
        height:85px;
    }

    .menu-toggle{
        right:20px;
        margin-top: -5px;
    }
}


.about-page{
  width:100%;
  overflow:hidden;
}

/* TEXT BASICS */
.section-tag{
  color:#f0c578;
  letter-spacing:4px;
  font-size:18px;
  margin-bottom:20px;
  font-weight:600;
}

.light{
  color:#f0c578;
  font-size:25px;
}

.divider{
  width:120px;
  height:2px;
  background:#b88b52;
  margin:25px 0;
}

/* JOURNEY */
.journey-section{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  padding:100px 80px;
  width:100%;
  max-width:1750px;
  margin:0 auto;
  margin-top:-40px;
}

.journey-left h2{
  font-size:75px;
  line-height:1.1;
  font-weight:300;
  color:#ffffff;
  margin-bottom:30px;
  font-family:serif;
}

.journey-left h2 span{
  color:#f0c578;
}

.journey-left h3{
  color:#f0c578;
  line-height:2;
  font-size:20px;
  margin-bottom:24px;
}

.journey-left p{
  color:#ffffff;
  line-height:2;
  font-size:20px;
  margin-bottom:24px;
}

.journey-right{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.journey-card{
  text-align:center;
  overflow:hidden;
}

.journey-card img{
  width:105%;
  height:320px;
  object-fit:cover;
}

.number{
  display:inline-block;
  background:#1f140d;
  color:#d2a06c;
  padding:10px 16px;
  margin-top:-5px;
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
}

.journey-card h4{
  margin:25px 0 15px;
  font-size:13px;
  color:#f0c578;
  letter-spacing:2px;
}

.journey-card p{
  font-size:18px;
  line-height:1.8;
  color:#ffffff;
}

/* optional simple hover (kept minimal, no animation system) */
.journey-card:hover img{
  transform:scale(1.05);
}

.journey-card:hover .number{
  background:#f0c578;
  color:#111;
}
/* =========================
   LARGE LAPTOPS
========================= */
@media (max-width:1400px){

    .journey-section{
        max-width:1400px;
        padding:90px 50px;
        gap:40px;
    }

    .journey-left h2{
        font-size:62px;
    }

    .journey-right{
        gap:15px;
    }

    .journey-card img{
        height:280px;
    }
}

/* =========================
   LAPTOPS
========================= */
@media (max-width:1200px){

       .about-page{
        margin-top: -60px;
    }

    .journey-section{
        grid-template-columns:1fr;
        padding:80px 40px;
        gap:50px;
    }

    .journey-left{
        text-align:center;
        max-width:900px;
        margin:auto;
    }

    .divider{
        margin:25px auto;
    }

    .journey-left h2{
        font-size:56px;
    }

    .journey-right{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .journey-card img{
        height:320px;
        width:100%;
    }
}

/* =========================
   TABLETS
========================= */
@media (max-width:992px){

       .about-page{
        margin-top: -40px;
    }

    .journey-section{
        padding:70px 30px;
    }

    .journey-left h2{
        font-size:48px;
    }

    .journey-left h3{
        font-size:18px;
    }

    .journey-left p{
        font-size:17px;
        line-height:1.8;
    }

    .journey-right{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

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

    .journey-card p{
        font-size:16px;
    }
}

/* =========================
   LARGE MOBILE
========================= */
@media (max-width:768px){

       .about-page{
        margin-top: -40px;
    }

    .journey-section{
        padding:60px 20px;
        gap:40px;
    }

    .journey-left h2{
        font-size:40px;
        line-height:1.2;
    }

    .journey-left h3{
        font-size:17px;
    }

    .journey-left p{
        font-size:16px;
    }

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

    .journey-card{
        max-width:500px;
        margin:auto;
    }

    .journey-card img{
        height:350px;
    }

    .journey-card h4{
        font-size:14px;
    }

    .journey-card p{
        font-size:15px;
    }
}

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

       .about-page{
        margin-top: -40px;
    }

    .journey-section{
        padding:50px 15px;
    }

    .section-tag{
        font-size:14px;
        letter-spacing:2px;
    }

    .light{
        font-size:20px;
    }

    .journey-left h2{
        font-size:34px;
    }

    .journey-left h3{
        font-size:16px;
    }

    .journey-left p{
        font-size:15px;
        line-height:1.7;
    }

    .journey-card img{
        height:280px;
    }

    .number{
        font-size:20px;
        padding:8px 14px;
    }

    .journey-card p{
        font-size:14px;
    }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width:400px){

    .about-page{
        margin-top: -40px;
    }

    .journey-left h2{
        font-size:28px;
    }

    .journey-left h3{
        font-size:15px;
    }

    .journey-left p{
        font-size:14px;
    }

    .journey-card img{
        height:240px;
    }

    .journey-card h4{
        font-size:12px;
        letter-spacing:1px;
    }

    .journey-card p{
        font-size:13px;
    }

    .number{
        font-size:18px;
    }
}

/* STATS */
/* ==========================
   STATS SECTION
========================== */

.stats-section{
    background:#f0c578;
    color:#000;
    padding:40px 50px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    text-align:center;

    overflow:hidden;
    position:relative;
}

/* cinematic glow */
.stats-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    filter:blur(120px);

    top:-250px;
    left:-150px;

    animation: floatGlow 8s ease-in-out infinite;
}

/* ==========================
   INITIAL HIDDEN STATE
========================== */

.stat-box{
    opacity:0;

    transform:
    translateY(60px)
    scale(.9);

    filter:blur(12px);

    position:relative;
}

/* ==========================
   SCROLL REVEAL
========================== */

.stats-section.in-view .stat-box{
    animation:
    statReveal 1s
    cubic-bezier(.22,1,.36,1)
    forwards;
}

.stats-section.in-view .stat-box:nth-child(1){
    animation-delay:.15s;
}

.stats-section.in-view .stat-box:nth-child(2){
    animation-delay:.3s;
}

.stats-section.in-view .stat-box:nth-child(3){
    animation-delay:.45s;
}

.stats-section.in-view .stat-box:nth-child(4){
    animation-delay:.6s;
}

/* ==========================
   NUMBER
========================== */

.stat-box h2{
    color:#000;
    font-size:70px;
    margin-bottom:12px;

    transform:translateY(20px);
    opacity:0;
}

.stats-section.in-view .stat-box h2{
    animation:
    numberRise .8s ease forwards;
}

.stats-section.in-view .stat-box:nth-child(1) h2{
    animation-delay:.4s;
}

.stats-section.in-view .stat-box:nth-child(2) h2{
    animation-delay:.55s;
}

.stats-section.in-view .stat-box:nth-child(3) h2{
    animation-delay:.7s;
}

.stats-section.in-view .stat-box:nth-child(4) h2{
    animation-delay:.85s;
}

/* ==========================
   TEXT
========================== */

.stat-box h5{
    letter-spacing:2px;
    margin-bottom:15px;
    font-size:15px;
}

.stat-box p{
    color:#000;
    line-height:1.8;
    font-size:18px;
}

/* ==========================
   HOVER EFFECT
========================== */

.stat-box{
    transition:
    transform .5s ease,
    box-shadow .5s ease;
}

.stat-box:hover{
    transform:
    translateY(-10px)
    scale(1.03);
}

/* ==========================
   KEYFRAMES
========================== */

@keyframes statReveal{

    0%{
        opacity:0;
        transform:
        translateY(80px)
        scale(.9);

        filter:blur(14px);
    }

    60%{
        filter:blur(4px);
    }

    100%{
        opacity:1;
        transform:
        translateY(0)
        scale(1);

        filter:blur(0);
    }
}

@keyframes numberRise{

    0%{
        opacity:0;
        transform:
        translateY(25px)
        scale(.8);
    }

    100%{
        opacity:1;
        transform:
        translateY(0)
        scale(1);
    }
}

@keyframes floatGlow{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================
   LARGE LAPTOPS
========================= */
@media (max-width:1400px){

    .stats-section{
        padding:40px;
        gap:25px;
    }

    .stat-box h2{
        font-size:60px;
    }

    .stat-box p{
        font-size:17px;
    }
}

/* =========================
   LAPTOPS
========================= */
@media (max-width:1200px){

    .stats-section{
        grid-template-columns:repeat(2,1fr);
        padding:50px 35px;
        gap:35px;
    }

    .stat-box h2{
        font-size:55px;
    }

    .stat-box h5{
        font-size:14px;
    }

    .stat-box p{
        font-size:16px;
    }
}

/* =========================
   TABLETS
========================= */
@media (max-width:992px){

    .stats-section{
        grid-template-columns:repeat(2,1fr);
        padding:45px 25px;
        gap:30px;
    }

    .stat-box h2{
        font-size:48px;
    }

    .stat-box p{
        font-size:15px;
        line-height:1.7;
    }

    .stats-section::before{
        width:350px;
        height:350px;
    }
}

/* =========================
   LARGE MOBILE
========================= */
@media (max-width:768px){

    .stats-section{
        grid-template-columns:1fr;
        padding:40px 20px;
        gap:35px;
    }

    .stat-box{
        max-width:500px;
        margin:0 auto;
    }

    .stat-box h2{
        font-size:42px;
    }

    .stat-box h5{
        font-size:13px;
        letter-spacing:1px;
    }

    .stat-box p{
        font-size:15px;
    }

    .stats-section::before{
        width:280px;
        height:280px;
        filter:blur(80px);
    }
}

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

    .stats-section{
        padding:35px 15px;
        gap:30px;
    }

    .stat-box h2{
        font-size:36px;
        margin-bottom:8px;
    }

    .stat-box h5{
        font-size:12px;
    }

    .stat-box p{
        font-size:14px;
        line-height:1.6;
    }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width:400px){

    .stats-section{
        padding:30px 12px;
    }

    .stat-box h2{
        font-size:32px;
    }

    .stat-box h5{
        font-size:11px;
        letter-spacing:1px;
    }

    .stat-box p{
        font-size:13px;
    }
}

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


/* VALUES */
.values-section{
  padding:100px 80px;
  text-align:center;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:30px;
  margin-top:60px;
}

.value-card{
  border-right:1px solid #d8c8b7;
  padding:10px 20px;
}

.value-card:last-child{
  border-right:none;
}

.value-card h4{
  margin-bottom:18px;
  letter-spacing:2px;
  font-size:20px;
  color: #f0c578;
}

.value-card p{
  line-height:1.9;
  color:#ffffff;
  font-size:20px;
}

/* ==================================
   INITIAL HIDDEN STATE
================================== */

.section-tag,
.value-card{
    opacity:0;

    transform:
    translateY(60px)
    scale(.95);

    filter:blur(12px);
}

/* ==================================
   SCROLL REVEAL
================================== */

.values-section.in-view .section-tag{
    animation:
    valueReveal 1s
    cubic-bezier(.22,1,.36,1)
    forwards;
}

.values-section.in-view .value-card{
    animation:
    valueReveal 1s
    cubic-bezier(.22,1,.36,1)
    forwards;
}

/* stagger cards */

.values-section.in-view .value-card:nth-child(1){
    animation-delay:.15s;
}

.values-section.in-view .value-card:nth-child(2){
    animation-delay:.3s;
}

.values-section.in-view .value-card:nth-child(3){
    animation-delay:.45s;
}

.values-section.in-view .value-card:nth-child(4){
    animation-delay:.6s;
}

.values-section.in-view .value-card:nth-child(5){
    animation-delay:.75s;
}

/* ==================================
   PREMIUM CARD STYLE
================================== */

.value-card{
    position:relative;
    overflow:hidden;

    transition:
    transform .5s ease,
    box-shadow .5s ease,
    border-color .5s ease;
}

/* golden sweep */

.value-card::before{
    content:"";

    position:absolute;
    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(240,197,120,.18),
        transparent
    );

    transform:skewX(-25deg);

    transition:1s ease;
}

.value-card:hover::before{
    left:150%;
}

/* hover lift */

.value-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}

/* title animation */

.value-card h4{
    transition:
    color .4s ease,
    transform .4s ease;
}

.value-card:hover h4{
    color:#ffd89b;
    transform:translateY(-3px);
}

/* ==================================
   KEYFRAME
================================== */

@keyframes valueReveal{

    0%{
        opacity:0;

        transform:
        translateY(80px)
        scale(.95);

        filter:blur(14px);
    }

    60%{
        filter:blur(4px);
    }

    100%{
        opacity:1;

        transform:
        translateY(0)
        scale(1);

        filter:blur(0);
    }
}

/* ==================================
   FLOATING BACKGROUND GLOW
================================== */

.values-section{
    position:relative;
    overflow:hidden;
}

.values-section::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(240,197,120,.08),
        transparent 70%
    );

    top:-200px;
    left:-200px;

    animation:
    valueGlow 8s ease-in-out infinite;
}

.values-section::after{
    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    radial-gradient(
        circle,
        rgba(240,197,120,.05),
        transparent 70%
    );

    bottom:-200px;
    right:-200px;

    animation:
    valueGlow 10s ease-in-out infinite;
}

@keyframes valueGlow{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================
   LARGE LAPTOPS
========================= */
@media (max-width:1400px){

    .values-section{
        padding:90px 60px;
    }

    .values-grid{
        gap:25px;
    }

    .value-card h4{
        font-size:18px;
    }

    .value-card p{
        font-size:19px;
    }
}

/* =========================
   LAPTOPS
========================= */
@media (max-width:1200px){

    .values-section{
        padding:80px 40px;
    }

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

    .value-card{
        border-right:none;
        border-bottom:1px solid #d8c8b7;
        padding:20px;
    }

    .value-card:nth-last-child(-n+2){
        border-bottom:none;
    }
}

/* =========================
   TABLETS
========================= */
@media (max-width:992px){

    .values-section{
        padding:70px 30px;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
        margin-top:50px;
    }

    .value-card{
        border:none;
        padding:25px;
        background:rgba(255,255,255,.03);
        border-radius:20px;
    }

    .value-card h4{
        font-size:18px;
    }

    .value-card p{
        font-size:18px;
        line-height:1.8;
    }
}

/* =========================
   LARGE MOBILE
========================= */
@media (max-width:768px){

    .values-section{
        padding:60px 20px;
    }

    .values-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:40px;
    }

    .value-card{
        padding:22px;
        border-radius:18px;
    }

    .value-card h4{
        font-size:17px;
        margin-bottom:12px;
    }

    .value-card p{
        font-size:17px;
        line-height:1.8;
    }

    .values-section::before,
    .values-section::after{
        width:300px;
        height:300px;
    }
}

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

    .values-section{
        padding:50px 15px;
    }

    .value-card{
        padding:20px;
    }

    .value-card h4{
        font-size:16px;
        letter-spacing:1px;
    }

    .value-card p{
        font-size:16px;
    }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width:400px){

    .values-section{
        padding:40px 12px;
    }

    .value-card{
        padding:18px;
    }

    .value-card h4{
        font-size:15px;
    }

    .value-card p{
        font-size:13px;
        line-height:1.7;
    }
}



.footer{
    background: #F7E7CE;
    color:#030303;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-left,
.footer-right{
    font-size:18px;
}

.footer-left {
    margin-left: -50px;
}

.footer-link{
    color:#0a0a0a;
    text-decoration:none;
    font-weight:600;
}

.footer-link:hover{
    color:#fff;
}

.footer-social{
    display:flex;
    justify-content:flex-start;
    margin-left:-110px;
    gap: 10px;
}

.social-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1a1a1a;
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
    margin:0; /* remove spacing */
}

.social-icon:hover{
    background:#d4a94d;
    color:#111;
    transform:translateY(-4px);
}



@media (max-width:1200px){

    .footer{
        padding:25px 5%;
    }

    .footer-left{
        margin-left:0;
    }

    .footer-social{
        margin-left:0;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px){

    .footer{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .footer-left,
    .footer-right{
        font-size:16px;
        margin-left:0;
    }

    .footer-social{
        justify-content:center;
        margin-left:0;
        gap:12px;
    }
}

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

@media (max-width:576px){

    .footer{
        padding:20px 15px;
        gap:15px;
    }

    .footer-left,
    .footer-right{
        font-size:14px;
        line-height:1.6;
        text-align:center;
    }

    .footer-social{
        gap:10px;
    }

    .social-icon{
        width:38px;
        height:38px;
        font-size:14px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px){

    .footer{
        padding:18px 12px;
    }

    .footer-left,
    .footer-right{
        font-size:13px;
    }

    .social-icon{
        width:34px;
        height:34px;
    }
}