/* ================= GLOBAL ================= */
body {
  margin: 0;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #032F3C;
  padding: 22px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT + RIGHT NAV */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LOGO CENTER */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  width: 60px;
  display: block;
}

/* NAV LINKS */
nav a {
  font-size: 13px;
  font-weight: 600;
  color: #f0f2f4;
  text-decoration: none;   /* 🔥 removes underline */
  transition: 0.3s ease;
}

nav a:hover {
  color: #ff5b5b;
}

/* BUTTON */
.partner-btn {
  background: #ff5b5b;
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}

/* ICONS */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons i {
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-icons i:hover {
  color: #ff5b5b;
}

/* ICON STYLE */
.icon-link i {
  color: rgb(243, 242, 242);
  font-size: 15px;
  transition: 0.3s;
}

.icon-link i:hover {
  color: #ff5b5b;
}
/* ================= HERO ================= */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 80px;

  /* 🔥 background image FIX */
  background:
    linear-gradient(to right, #eef1f3 45%, rgba(238,241,243,0.4) 65%, transparent 80%),
    url("food.png") right center no-repeat;

  background-size: contain;
}

/* LEFT */
.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #3a3a3a;
  max-width: 700px;
}

.hero-left p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  max-width: 500px;
}

/* CAROUSEL */
.profile-slider {
  overflow: hidden;
  max-width: 480px;
}

.slider-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.slider-track img {
  width: 90px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

/* CAROUSEL */
.profile-slider {
  overflow: hidden;
  max-width: 500px;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 14px;
  width: calc(8 * 104px); /* 4 original + 4 duplicate */
  animation: scroll 20s linear infinite;
}

.slider-track img {
  width: 90px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0; /* 🔥 prevents shrinking */
}

/* 🔥 IMPORTANT: animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ================= DASHBOARD ================= */

.dashboard {
  width: 100%;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 20px;

  padding: 30px 20px;

  background: #f3f1ee;

  box-sizing: border-box;
}

/* ================= CARD ================= */

.card {
  width: 270px;
  height: 110px;

  background: #d7d1c9;

  border-radius: 12px 60px 12px 60px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 0 24px;

  box-sizing: border-box;

  position: relative;

  transition: 0.3s ease;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* HOVER */

.card:hover {
  transform: translateY(-4px);
}

/* ================= ICON CIRCLE ================= */

.circle {
  width: 72px;
  height: 72px;

  border-radius: 50%;

  background: #f7f7f7;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* ICONS */

.circle i {
  font-size: 28px;
  color: #0f3b3f;
}

/* ================= CONTENT ================= */

.content h2 {
  font-size: 22px;
  font-weight: 700;

  color: #0f2d52;

  margin-bottom: 6px;

  line-height: 1;
}

.content p {
  font-size: 13px;
  font-weight: 600;

  color: #222;

  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .dashboard {
    padding: 20px 15px;
  }

  .card {
    width: 100%;
    max-width: 340px;
  }
}


/* ================= BEST SELLERS ================= */



/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f5f5f5;
}


/* ================= BEST SELLERS ================= */

.best-sellers{
  width:100%;

  display:flex;
  align-items:flex-start;
  justify-content:center;

  gap:45px;

  padding:70px 60px;

  background:#ffffff;

  overflow:hidden;
}


/* ================= LEFT SIDE ================= */

.seller-left{
  width:260px;

  flex-shrink:0;

  padding-top:40px;
}

.seller-left h1{
  font-size:64px;

  color:#042f3c;

  line-height:1.1;

  margin-bottom:15px;

  font-weight:700;
}

.seller-left p{
  color:#7a7a7a;

  font-size:18px;

  margin-bottom:25px;
}

/* BUTTON */

.seller-left button{
  background:#f5b700;

  border:none;

  padding:12px 34px;

  border-radius:30px;

  font-size:14px;
  font-weight:700;

  cursor:pointer;
}


/* ================= RIGHT SIDE ================= */

.seller-cards{
  display:flex;

  align-items:flex-start;

  gap:28px;

  flex-wrap:nowrap;      /* IMPORTANT */

  overflow:hidden;
}


/* ================= CARD ================= */

.food-card{
  width:320px;

  flex-shrink:0;

  text-align:center;
}

/* IMAGE */

.food-card img{
  width:100%;
  height:220px;

  object-fit:cover;

  border-radius:18px;

  display:block;
}

/* TITLE */

.food-card h3{
  margin-top:22px;

  font-size:28px;

  color:#222;

  font-weight:700;
}

/* TEXT */

.food-card p{
  margin-top:10px;

  font-size:13px;

  color:#9a9a9a;

  line-height:1.6;

  padding:0 10px;
}


/* ================= OUR PRESENCE ================= */

.presence-section{
  width:100%;

  background:#d8d2ca;

  padding:70px 60px;
}


/* ================= TITLE ================= */

.presence-section h1{
  text-align:center;

  font-size:70px;

  color:#042f3c;

  margin-bottom:50px;

  font-weight:700;

  text-shadow:0 4px 4px rgba(0,0,0,0.15);
}


/* ================= GALLERY ================= */

.presence-gallery{
  display:flex;

  justify-content:center;

  align-items:center;

  gap:20px;

  flex-wrap:nowrap;      /* IMPORTANT */
}

/* IMAGES */

.presence-gallery img{
  width:300px;
  height:220px;

  object-fit:cover;

  display:block;
}


/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

  .best-sellers{
    flex-direction:column;
    align-items:center;
  }

  .seller-left{
    width:100%;
    text-align:center;
    padding-top:0;
  }

  .seller-cards{
    flex-wrap:wrap;
    justify-content:center;
  }

  .presence-gallery{
    flex-wrap:wrap;
  }

}

@media(max-width:768px){

  .best-sellers{
    padding:50px 20px;
  }

  .seller-left h1{
    font-size:42px;
  }

  .presence-section{
    padding:50px 20px;
  }

  .presence-section h1{
    font-size:42px;
  }

  .food-card{
    width:100%;
    max-width:320px;
  }

  .presence-gallery img{
    width:100%;
    max-width:320px;
  }

}/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

  .seller-left h1 {
    font-size: 52px;
  }

  .presence-section h1 {
    font-size: 56px;
  }

}

@media (max-width: 768px) {

  .best-sellers {
    padding: 50px 20px;
  }

  .seller-left {
    width: 100%;
    text-align: center;
  }

  .seller-left h1 {
    font-size: 42px;
  }

  .seller-left p {
    font-size: 16px;
  }

  .food-card {
    width: 100%;
  }

  .presence-section {
    padding: 50px 20px;
  }

  .presence-section h1 {
    font-size: 42px;
  }

  .presence-gallery img {
    width: 100%;
    height: auto;
  }

}
/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

  .top-section,
  .bottom-section {
    flex-direction: column;

    text-align: center;
  }

  .left-text,
  .text-block {
    flex: unset;

    width: 100%;
  }

  .cards {
    justify-content: center;
  }

  .slider {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .burger-container {
    padding: 40px 20px;
  }

  .left-text h1 {
    font-size: 34px;
  }

  .text-block h2 {
    font-size: 28px;
  }

  .cards {
    gap: 20px;
  }

  .burger-card {
    width: 160px;
  }

  .slider img {
    width: 130px;
    height: 130px;
  }

  .arrow {
    width: 38px;
    height: 38px;

    font-size: 16px;
  }

  .arrow.left {
    left: 8px;
  }

  .arrow.right {
    right: 8px;
  }
}

@media (max-width: 500px) {

  .burger-card {
    width: 100%;
    max-width: 250px;
  }

  .cards {
    justify-content: center;
  }

  .slider-track {
    gap: 12px;
  }

  .slider img {
    width: 110px;
    height: 110px;
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

  .top-section,
  .bottom-section {
    flex-direction: column;

    text-align: center;
  }

  .left-text,
  .text-block {
    flex: unset;

    width: 100%;
  }

  .cards {
    justify-content: center;
  }

  .slider {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .burger-container {
    padding: 40px 20px;
  }

  .left-text h1 {
    font-size: 34px;
  }

  .text-block h2 {
    font-size: 28px;
  }

  .cards {
    gap: 20px;
  }

  .burger-card {
    width: 160px;
  }

  .slider img {
    width: 130px;
    height: 130px;
  }

  .arrow {
    width: 38px;
    height: 38px;

    font-size: 16px;
  }

  .arrow.left {
    left: 8px;
  }

  .arrow.right {
    right: 8px;
  }
}

@media (max-width: 500px) {

  .burger-card {
    width: 100%;
    max-width: 250px;
  }

  .cards {
    justify-content: center;
  }

  .slider-track {
    gap: 12px;
  }

  .slider img {
    width: 110px;
    height: 110px;
  }
}

/* ================= FOOTER ================= */
.footer {
  padding: 50px 60px;
  background: #f5f2ee;
}

/* MAIN CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 50px;

  flex-wrap: wrap;
}

/* LOGO */
.footer-logo img {
  width: 140px;
}

/* EACH COLUMN */
.footer-col {
  min-width: 180px;
}

/* TITLES */
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;

  color: #f7f4f4;
}

/* REMOVE BULLETS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEMS */
.footer-col ul li {
  margin-bottom: 10px;

  font-size: 14px;
  line-height: 1.6;

  color: #444;
}

/* LINKS */
.footer-col ul li a {
  text-decoration: none;
  color: #444;
}

.footer-col ul li a:hover {
  color: #000;
}
/* ================= DN EXPRESS BANNER ================= */
/* ================= BANNER FIX ================= */

.banner-container{
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    line-height:0;   /* removes small white gaps */
}

.banner-container img{
    width:100%;
    height:auto;
    display:block;

    margin:0;
    padding:0;

    object-fit:cover;
}

/* ================= TIMELINE SECTION ================= */
.timeline-section {
  background: #2f3f4a;
  color: #ffffff;
  padding: 60px 20px;
}

.timeline-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.timeline-section h1 {
  font-size: 32px;
  font-weight: bold;
}

.timeline-section h1 span {
  color: #ff5a3c;
}

.timeline-section .timeline {
  position: relative;
  margin-top: 60px;
}

.timeline-section .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0.3;
}

.timeline-section .timeline-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.timeline-section .item {
  width: 120px;
  text-align: center;
}

.timeline-section .item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.timeline-section .year {
  font-size: 14px;
  color: #ffc107;
}

.timeline-section .text {
  font-size: 12px;
  color: #e0e0e0;
}


/* ================= SOCIALS FINAL FIX ================= */

.socials-section {
  text-align: center;
  padding: 70px 0;
  background-color: #cfc7be;
}

/* Tabs */
.tabs {
  width: 786px;
  height: 70px;
  background: #FAF8F8;

  border-radius: 0px 43px 0px 43px;

  margin: 0 auto 43px;

  display: flex;
  align-items: center;

  padding: 7px;

  box-sizing: border-box;

  overflow: hidden;   /* FIX */
}

/* active tab */


.tab {
  flex: 1;

  height: 56px;

  border: none;
  background: transparent;

  border-radius: 35px;

  font-size: 14px;
  font-weight: 700;

  color: #163a43;

  display: flex;
  align-items: center;
  justify-content: center;
}

.tab.active {
  background: #fad105;
  height: 35px;

  padding: 0 2px;   /* more reduced */
  margin: 0 10px;   /* more space from left-right */
}

/* Cards Layout */
.cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 0 40px;
  overflow-x: auto;
}

/* Hide scrollbar */
.cards-container::-webkit-scrollbar {
  display: none;
}

/* PERFECT CARD SIZE (like your image) */
.social-card {
  width: 180px;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
  transition: 0.3s ease;
}

/* Image fit */
.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover */
.social-card:hover {
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 768px) {
  .cards-container {
    justify-content: flex-start;
  }

  .social-card {
    width: 150px;
    height: 260px;
  }
}

/* ================= CUSTOMERS ================= */
.customers-section {
  background-color: #f3eee8;   /* ✅ FIXED */
  padding: 70px 20px;
  text-align: center;
}

.customers-section .title {
  font-size: 36px;
  font-weight: 600;
  color: #0f3d3e;
  margin-bottom: 8px;
}

.customers-section .subtitle {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 50px;
}

.customers-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}


.customer-card {
  background: #ffffff;
  width: 220px;
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
}


.customer-card:hover {
  transform: translateY(-5px);
}

.image-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.image-wrapper img {
  width: 90px;              /* ✅ smaller image */
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #d9d9d9; /* ✅ grey ring */
}


.stars {
  color: #f4b400;
  font-size: 16px;
  margin: 10px 0;
}


.customer-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.customer-card p {
  font-size: 12px;
  color: #777;
}
/* Responsive */
@media (max-width: 600px) {
  .customer-card {
    width: 100%;
    max-width: 300px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .customers-container {
    overflow-x: auto;
  }
}
/* ================= BENEFITS SECTION ================= */

/* ================= BENEFITS SECTION ================= */

.benefits-section {
  background-color: #d8d2c8;
  padding: 70px 40px;
  text-align: center;
}

/* ================= TITLE ================= */

.benefits-title {
  font-size: 28px;
  font-weight: 600;
  color: #1e4b4b;
  margin-bottom: 50px;
}

/* ================= CONTAINER ================= */

.benefits-container {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 40px;

  align-items: stretch;   /* FIX */

  width: 100%;
}

/* ================= CARD ================= */

.benefit-card {
  width: 100%;

  min-width: 0;

  display: flex;          /* FIX */
  flex-direction: column; /* FIX */

  height: 100%;           /* FIX */
}

/* ================= TOP ICON/TEXT ================= */

.big-text {
  font-size: 28px;
  font-weight: 600;
  color: #1e4b4b;

  margin-bottom: 18px;

  height: 45px;           /* FIX */

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= HEADING ================= */

.heading {
  font-size: 13px;
  font-weight: 600;
  color: #2f2f2f;

  line-height: 1.5;

  min-height: 42px;      /* FIX */

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 10px;
}

/* ================= LINE ================= */

.line {
  width: 100%;
  height: 1px;

  background: #9c9c9c;

  margin: 12px 0 18px;
}

/* ================= DESCRIPTION ================= */

.desc {
  font-size: 12px;
  color: #6e6e6e;

  line-height: 1.8;

  flex-grow: 1;          /* FIX */

  min-height: 150px;     /* FIX */
}

/* ================= BUTTON ================= */

.benefits-btn {
  margin-top: 50px;

  padding: 12px 28px;

  background: #f4b400;

  border: none;

  color: #000;

  font-size: 12px;
  font-weight: 600;

  border-radius: 4px;

  cursor: pointer;

  transition: 0.3s ease;
}

.benefits-btn:hover {
  background: #e0a800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .benefits-section {
    padding: 50px 20px;
  }

  .benefits-container {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 22px;
  }

}/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .benefits-container {
    justify-content: center;
  }

  .benefit-item {
    width: 45%;
  }
}

/* ================= INSTAGRAM SECTION ================= */

.instagram-section {
  background-color: #f3eee8;
  padding: 80px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Handle */
.insta-handle {
  font-size: 32px;
  font-weight: 600;
  color: #0d3442;
  margin-bottom: 12px;
}

/* Description */
.insta-text {
  font-size: 13px;
  color: #6f6f6f;
  font-style: italic;
  line-height: 1.6;

  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.social-icons a {
  text-decoration: none;
  font-size: 34px;
  transition: 0.3s ease;
}

/* YouTube */
.social-icons .fa-youtube {
  color: #ff0000;
}

/* Instagram */
.social-icons .fa-instagram {
  color: #e1306c;
}

/* Hover Effect */
.social-icons a:hover {
  transform: scale(1.12);
}
/* ================= FOOTER ================= */

.footer {
  background-color: #2f4756; /* dark blue */
  padding: 60px 40px;
  color: #ffffff;
}

/* Container */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* Logo */
.footer-logo img {
  width: 140px;
}

/* Column */
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 12px;
  margin-bottom: 8px;
  color: #dcdcdc;
}

/* Links */
.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .benefit-item {
    width: 100%;
  }
}



/* ================= ANIMATIONS ================= */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-45%); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left p {
    font-size: 20px;
    margin: auto;
    margin-bottom: 30px;
  }

  nav ul {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .top-section,
  .bottom-section {
    flex-direction: column;
    text-align: center;
  }

  .cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 350px;
  }
}


/* =========================
   About Us Section
========================= */



body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
}

/* HERO SECTION */

.hero-section {
  position: relative;
  width: 100%;
   max-width: 1920px;
  height: 552px;
  overflow: hidden;
    margin: 0 auto;
}

/* Background Banner Image */

.banner-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.03);
}

/* Overlay */

.overlay {
  position: absolute;
  inset: 0;

  background: rgba(245, 245, 245, 0.82);
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 2;

  min-height: 552px;

  padding: 70px 90px 120px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

/* LEFT CONTENT */

.content {
  max-width: 620px;
}

.title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 700;
  color: #eeebeb;

  letter-spacing: -1px;
  margin-bottom: 18px;
}

.description{
  font-size:18px;
  line-height:1.5;
  color:#ffffff !important;
  max-width:600px;
}
/* BUTTONS */

.button-group {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;

  flex-wrap: nowrap;   /* Important */

  position: relative;
  top: 150px;
}

.hero-btn {
  width: 300px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 8px 0 34px;

  border-radius: 999px;

  background: #2d3e58;

  text-decoration: none;

  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #24334b;
  transform: translateY(-2px);
}

.hero-btn span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* ICON CIRCLE */

.icon-circle {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #f5f5f5;
  border: 3px solid #2d3e58;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: #1f2937;
}

/* YELLOW BOTTOM BAR */

.bottom-border {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 50px;

  background: #f4b400;

  z-index: 5;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 60px 30px 140px;
  }

  .button-group {
    top: 40px;
    gap: 18px;
  }

  .title {
    font-size: 42px;
  }

  .description {
    font-size: 16px;
  }
}

@media (max-width: 520px) {

  .title {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }

  .button-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    width: 100%;
    max-width: 260px;
  }
}


/* =========================
   OBSESSION SECTION
========================= */

.obsession-section {
  width: 100%;
  padding: 48px;
  background: #f5f5f5;
}

.obsession-container {
  position: relative;

  max-width: 1760px;
  min-height: 920px;

  margin: auto;

  background: #d4cec6;

  border-radius: 26px;

  padding: 70px 60px;

  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* TOP BADGE */

.top-badge {
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  margin-top: 10px;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: #b056c7;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 700;

  z-index: 10;

  border: 5px solid white;

  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* LEFT CONTENT */

/* LEFT CONTENT */

.obsession-content {
  width: 48%;
  padding-top: 40px;
}

/* SMALL TITLE */

.obsession-content h4 {
  font-family: 'Lato', sans-serif;

  font-size: 34px;
  font-weight: 700;

  color: #0b0101;

  margin-bottom: 10px;
}

/* MAIN TITLE */

.obsession-content h2 {
  font-family: 'Lato', sans-serif;

  font-size: 55px;
  line-height: 1.1;
  font-weight: 900;

  color: #222;

  margin-bottom: 28px;
}

/* DESCRIPTION */

.obsession-content p {
  font-family: 'Poppins', sans-serif;

  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;

  color: #222;

  max-width: 760px;
}

/* IMAGE COLUMN */

.image-column {
  width: 48%;

  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* IMAGE CARD */

.image-card {
  position: relative;

  width: 100%;
  height: 360px;

  border-radius: 34px;

  overflow: hidden;

  background: #eaeaea;
}

/* IMAGE */

.image-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}



/* BUTTON */

.story-btn {
  position: absolute;

  right: 24px;
  bottom: 24px;

  width: 210px;
  height: 52px;

  background: #304560;
  color: white;

  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 0.5px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .obsession-container {
    flex-direction: column;
  }

  .obsession-content,
  .image-column {
    width: 100%;
  }

  .obsession-content h2 {
    font-size: 48px;
  }

  .obsession-content p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

  .obsession-section {
    padding: 20px;
  }

  .obsession-container {
    padding: 40px 24px;
  }

  .image-card {
    height: 250px;
  }

  .obsession-content h2 {
    font-size: 38px;
  }

  .obsession-content p {
    font-size: 18px;
    line-height: 1.5;
  }
}


/* =========================
   VALUES SECTION
========================= */

.values-section {
  width: 100%;
  padding: 50px 48px;
  background: #f5f5f5;
}

/* HEADER */

.values-header {
  margin-bottom: 28px;
}

.values-header h5 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;

  margin-bottom: 10px;
}

.values-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;

  color: #111;
}

/* GRID */

.values-grid {
  display: grid;

  grid-template-columns: 1.1fr 1.3fr 1.3fr;
  grid-template-rows: 250px 250px;

  gap: 22px;
}

/* CARD */

.value-card {
  position: relative;

  overflow: hidden;
  background: #d9d9d9;
}

/* IMAGES */

.value-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* LEFT LARGE CARD */

.large-card {
  grid-row: span 2;

  border: 4px solid #1796ff;
}

/* TOP CARDS */

.top-card {
  height: 100%;
}

/* SMALL CARD */

.small-card {
  width: 100%;
}

/* WIDE CARD */

.wide-card {
  width: 100%;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .values-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .large-card {
    grid-row: auto;
    height: 350px;
  }

  .top-card,
  .small-card,
  .wide-card {
    height: 240px;
  }

  .values-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {

  .values-section {
    padding: 30px 20px;
  }

  .values-header h2 {
    font-size: 32px;
  }

  .values-header h5 {
    font-size: 14px;
  }
}

/* =========================
   COMPARISON SECTION
========================= */

.comparison-section {
  width: 100%;
  padding: 50px 40px;
  background: #f5f5f5;
}

/* HEADER */

.comparison-header {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-header h2 {
  font-family: 'Lato', sans-serif;

  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;

  color: #111;
}

/* GRID */

.comparison-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* CARD */

.comparison-card {
  position: relative;

  width: 925px;
  height: 393px;

  overflow: hidden;

  background: #d9d9d9;
}

/* IMAGE */

.comparison-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* BADGE */

.comparison-badge {
  position: absolute;

  left: 50%;
  bottom: -24px;

  transform: translateX(-50%);

  width: 76px;
  height: 76px;

  border-radius: 50%;

  background: #b44ac0;
  color: white;

  border: 6px solid white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Lato', sans-serif;
  font-size: 34px;
  font-weight: 700;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .comparison-grid {
    flex-direction: column;
    align-items: center;
  }

  .comparison-card {
    width: 100%;
    max-width: 925px;
  }

  .comparison-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {

  .comparison-section {
    padding: 30px 20px;
  }

  .comparison-card {
    height: 260px;
  }

  .comparison-header h2 {
    font-size: 28px;
  }

  .comparison-badge {
    width: 62px;
    height: 62px;

    font-size: 28px;
  }
}

/* =========================
   PARTNER WITH US
========================= */

/* =========================
   ONLINE ORDERS SECTION
========================= */

.orders-section {
  position: relative;

  width: 100%;
  height: 470px;

  overflow: hidden;
}

/* BACKGROUND IMAGE */

.orders-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* OVERLAY */

.orders-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.45);
}

/* CONTAINER */

.orders-container {
  position: relative;
  z-index: 2;

  max-width: 1700px;
  height: 100%;

  margin: auto;
  padding: 0 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT CONTENT */

.orders-content h5 {
  font-family: 'Poppins', sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 2px;

  color: white;

  margin-bottom: 18px;
}

.orders-content h2 {
  font-family: 'Lato', sans-serif;

  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;

  color: white;
}

/* CENTER BOX */

.logo-box {
  position: relative;

  width: 210px;
  height: 210px;

  background: #dedede;
}

/* BADGE */

.logo-badge {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #b44ac0;
  color: white;

  border: 5px solid white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 700;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* LOGIN CARD */

.login-card {
  width: 390px;

  background: white;
  padding: 28px;

  border-radius: 6px;
}

/* TITLE */

.login-card h3 {
  font-family: 'Lato', sans-serif;

  font-size: 42px;
  font-weight: 800;

  color: #304560;

  margin-bottom: 16px;
}

/* SUB TEXT */

.sub-text {
  font-family: 'Poppins', sans-serif;

  font-size: 14px;
  line-height: 1.5;

  color: #6b7280;

  margin-bottom: 18px;
}

/* INPUT */

.input-box {
  position: relative;

  margin-bottom: 16px;
}

.input-box input {
  width: 100%;
  height: 56px;

  border: 1px solid #d1d5db;
  border-radius: 14px;

  padding: 0 48px 0 18px;

  font-family: 'Poppins', sans-serif;
  font-size: 14px;

  outline: none;
}

.input-box i {
  position: absolute;

  right: 16px;
  top: 50%;

  transform: translateY(-50%);

  color: #6b7280;
}

/* BUTTON */

.login-card button {
  width: 100%;
  height: 54px;

  border: none;
  border-radius: 6px;

  background: #d1d5db;
  color: white;

  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;

  cursor: pointer;

  margin-bottom: 16px;
}

/* BOTTOM TEXT */

.bottom-text {
  display: flex;
  justify-content: space-between;
  gap: 12px;

  font-family: 'Poppins', sans-serif;
  font-size: 11px;

  color: #6b7280;
}

.bottom-text a {
  color: #222;
  text-decoration: none;

  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .orders-container {
    flex-direction: column;
    justify-content: center;

    gap: 40px;

    padding: 50px 20px;
  }

  .orders-section {
    height: auto;
    padding: 60px 0;
  }

  .orders-content {
    text-align: center;
  }
}

@media (max-width: 768px) {

  .orders-content h2 {
    font-size: 40px;
  }

  .login-card {
    width: 100%;
    max-width: 390px;
  }

  .logo-box {
    width: 180px;
    height: 180px;
  }
}

/* =========================
   EASY STEPS SECTION
========================= */

.steps-section {
  width: 100%;
  padding: 60px 70px;
  background: #f7f7f7;
}

/* CONTAINER */

.steps-container {
  max-width: 1700px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;

  align-items: center;
}

/* LEFT CONTENT */

.steps-content h5 {
  font-family: 'Poppins', sans-serif;

  font-size: 16px;
  font-weight: 500;

  color: #7a7a7a;

  margin-bottom: 8px;
}



.steps-content h2 {
  font-family: 'Lato', sans-serif;

  font-size: 34px;   /* Smaller */
  line-height: 1.2;
  font-weight: 800;

  color: #444;

  margin-bottom: 28px;

  position: relative;

  white-space: nowrap;   /* One line */
}

/* ORANGE LINE */

.steps-content h2::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -12px;

  width: 90px;
  height: 6px;

  border-radius: 20px;

  background: #ff6a00;
}

/* STEPS CARD */

.steps-card {
  width: 100%;
  max-width: 620px;

  background: #ececf1;

  border-radius: 20px;

  padding: 28px 28px;
}
/* VERTICAL LINE */

.steps-card::before {
  content: "";

  position: absolute;

  left: 52px;
  top: 52px;
  bottom: 52px;

  width: 2px;

  border-left: 2px dashed #cfcfd6;
}

/* STEP ITEM */

.step-item {
  display: flex;
  align-items: flex-start;

  gap: 22px;

  position: relative;

  margin-bottom: 42px;
}

.step-item:last-child {
  margin-bottom: 0;
}

/* PURPLE DOT */

.step-dot {
  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #6b46ff;

  margin-top: 10px;

  position: relative;
  z-index: 2;
}

/* TEXT */

.step-text span {
  font-size: 12px;
}


.step-text h3 {
  font-family: 'Lato', sans-serif;

  font-size: 22px;   /* Smaller */
  line-height: 1.4;
  font-weight: 700;

  color: #444;
}


/* TOP IMAGE */

.top-image {
  text-align: center;
}

.top-image img {
  width: 100%;
  max-width: 360px;   /* Smaller image */
}


/* BOTTOM IMAGE */

.bottom-image {
  text-align: center;
}

.bottom-image img {
  width: 100%;
  max-width: 340px;   /* Smaller image */
}

/* DOCUMENTS */

.documents-box {
  max-width: 420px;
}
.documents-box h4 {
  font-size: 16px;
}

.documents-box p {
  font-size: 13px;
}
/* LIST */


/* LIST */

.documents-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.documents-box li {
  position: relative;

  padding-left: 22px;

  margin-bottom: 18px;

  font-family: 'Poppins', sans-serif;

  font-size: 15px;
  font-weight: 500;

  color: #444;
}

/* BULLET */

.documents-box li::before {
  content: "•";

  position: absolute;

  left: 0;
  top: 0;

  color: #ffb400;

  font-size: 18px;
  line-height: 1;
}

/* LINKS */

.documents-box a {
  color: #ffb400;

  text-decoration: none;

  margin-left: 8px;

  font-size: 14px;
  font-weight: 500;
}

/* DOCUMENTS TOP LINE */

.documents-box {
  max-width: 420px;
}

.documents-box p {
  position: relative;

  padding-bottom: 18px;
  margin-bottom: 22px;
}

/* LINE */

.documents-box p::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: #d6d6d6;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .steps-container {
    grid-template-columns: 1fr;
  }

  .steps-content h2 {
    font-size: 40px;
  }

  .step-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .steps-section {
    padding: 40px 20px;
  }

  .steps-card {
    padding: 30px 24px;
  }

  .steps-content h2 {
    font-size: 30px;
  }

  .step-text h3 {
    font-size: 20px;
  }
}


/* REMOVE DEFAULT PAGE SPACE */


/* ================= CONTACT BANNER ================= */

.contact-banner {
  position: relative;

  width: 100%;
  height: 307px;

  overflow: hidden;

  display: flex;
  align-items: center;

  padding-left: 90px;

  font-family: Arial, sans-serif;
}

/* BACKGROUND IMAGE */
.banner-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);
}

/* TEXT CONTENT */
.banner-content {
  position: relative;
  z-index: 2;

  color: #fff;
}

/* HEADING */
.banner-content h1 {
  font-size:30px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.1;
}

/* SUBTEXT */
.banner-content p {
  font-size: 15px;
  margin: 0;
  color: #f5f5f5;
}



/* CONTACT US SECTION*/



body{
  background:#f5f5f5;
}

/* =========================
   MOVING STRIP
========================= */

.moving-strip{
  width:100%;
  overflow:hidden;
  background:#FCB903;
  padding:18px 0;
}

.strip-track{
  width:100%;
  overflow:hidden;
}

.strip-content{
  display:flex;
  width:max-content;
  animation:scrollStrip 18s linear infinite;
}

.strip-content span{
  color:#050505;
  font-size:26px;
  font-weight:700;
  margin-right:80px;
  white-space:nowrap;
  letter-spacing:2px;
}

@keyframes scrollStrip{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

/* =========================
   CONTACT SECTION
========================= */

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  width:100%;
  min-height:100vh;
  display:flex;
  overflow:hidden;
  border-top:5px solid #f4b400;
}

/* =========================
   LEFT SIDE
========================= */

.contact-left{
  width:50%;
  position:relative;
  color:#fff;
  padding:60px 50px;
  display:flex;
  align-items:flex-start;
  overflow:hidden;
}

/* FOOD IMAGE */

.bg-food-image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* DARK OVERLAY */

.contact-left::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

/* CONTENT */

.left-content{
  position:relative;
  z-index:2;
  max-width:480px;
}

/* SMALL TEXT */

.small-text{
  color:#ff7b39;
  font-size:12px;
  margin-bottom:8px;
}

/* HEADING */

.left-content h1{
  font-size:36px;
  line-height:1.1;
  margin-bottom:14px;
  font-weight:700;
}

/* PARAGRAPH */

.left-content p{
  font-size:14px;
  line-height:1.6;
  color:#f2f2f2;
  margin-bottom:38px;
}

/* INFO BOX */

.info-box{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:24px;
}

/* ICON */

.icon{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  flex-shrink:0;
  margin-top:2px;
}

/* INFO TEXT */

.info-text h4{
  font-size:14px;
  font-weight:500;
  margin-bottom:3px;
}

.info-text span{
  font-size:11px;
  color:#ddd;
  line-height:1.5;
}

/* =========================
   RIGHT SIDE
========================= */

.contact-right{
  width:50%;
  background:#f7f7f7;
  padding:55px 60px;
}

.contact-right h2{
  font-size:34px;
  color:#24364b;
  margin-bottom:8px;
  font-weight:700;
}

.contact-right p{
  color:#5f6b7a;
  margin-bottom:25px;
  font-size:14px;
}

/* =========================
   FORM
========================= */

.form-row{
  display:flex;
  gap:18px;
  margin-bottom:20px;
}

.input-group{
  width:100%;
}

.input-group label{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:600;
  color:#24364b;
}

.input-group input,
.input-group textarea{
  width:100%;
  border:none;
  background:#fff;
  border-radius:10px;
  padding:14px;
  font-size:13px;
  outline:none;
  box-shadow:0 0 0 1px rgba(0,0,0,0.05);
}

textarea{
  height:110px;
  resize:none;
}

/* =========================
   TOPIC BUTTONS
========================= */

.topic-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.topic-buttons button{
  border:none;
  background:#fff;
  padding:9px 16px;
  border-radius:30px;
  cursor:pointer;
  font-size:12px;
  font-weight:500;
  color:#444;
  box-shadow:0 0 0 1px rgba(0,0,0,0.08);
  transition:0.3s;
}

.topic-buttons button.active,
.topic-buttons button:hover{
  background:#ff6b2c;
  color:#fff;
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn{
  margin-top:22px;
  border:none;
  background:#24364b;
  color:#fff;
  padding:13px 30px;
  border-radius:8px;
  font-size:13px;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#ff6b2c;
}

/* EXTRA SPACING */

.margin-bottom{
  margin-bottom:20px;
}

.top-space{
  margin-top:22px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .contact-section{
    flex-direction:column;
  }

  .contact-left,
  .contact-right{
    width:100%;
  }

  .contact-left{
    min-height:550px;
  }

  .left-content h1,
  .contact-right h2{
    font-size:30px;
  }
}

@media(max-width:600px){

  .contact-left,
  .contact-right{
    padding:40px 25px;
  }

  .form-row{
    flex-direction:column;
  }

  .left-content h1,
  .contact-right h2{
    font-size:24px;
  }

  .strip-content span{
    font-size:18px;
    margin-right:30px;
  }
}

/* =========================
   GOOGLE MAP SECTION
========================= */

/* =========================
   MAP IMAGE SECTION
========================= */

.map-section{
  width:100%;
  padding:0;
  margin:0;
}

.map-container{
  width:100%;
  height:420px;
  overflow:hidden;
}

.map-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* =========================
   PRIVACY POLICY BANNER
========================= */

.privacy-banner{
  width:100%;
  height:135px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:0 60px;
}

/* BACKGROUND IMAGE */

.privacy-banner-img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* OVERLAY */

.privacy-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

/* CONTENT */

.privacy-content{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:700px;
}

.privacy-content h1{
  font-size:28px;
  font-weight:700;
  margin-bottom:8px;
}

.privacy-content p{
  font-size:14px;
  line-height:1.6;
  color:#f1f1f1;
}

/* RESPONSIVE */

@media(max-width:768px){

  .privacy-banner{
    height:160px;
    padding:0 25px;
  }

  .privacy-content h1{
    font-size:22px;
  }

  .privacy-content p{
    font-size:13px;
  }
}

/* =========================
   PRIVACY CARDS SECTION
========================= */

.privacy-cards-section{
  width:100%;
  padding:10px 18px;
  background:#f3efea;
}

/* CARD */

.privacy-card{
  width:100%;
  background:#d9d4ce;
  border-radius:5px;
  padding:28px 22px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:18px;
}

/* ACTIVE CARD */

.active-card{
  background:#003847;
}

/* ICON */

.privacy-icon{
  width:35px;
  height:35px;
  min-width:35px;
  border-radius:50%;
  background:#2c4565;
  margin-top:5px;
}

/* ACTIVE ICON */

.active-card .privacy-icon{
  background:#e5e5e5;
}

/* TEXT */

.privacy-text{
  width:100%;
}

.privacy-text h2{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
  color:#002c3a;
}

/* ACTIVE TEXT */

.active-card .privacy-text h2{
  color:#fff;
}

.privacy-text p{
  font-size:12px;
  line-height:1.7;
  color:#163847;
}

/* ACTIVE PARAGRAPH */

.active-card .privacy-text p{
  color:#f1f1f1;
}

/* LINK */

.privacy-text a{
  color:inherit;
}

/* RESPONSIVE */

@media(max-width:768px){

  .privacy-card{
    padding:22px 18px;
    gap:14px;
  }

  .privacy-text h2{
    font-size:17px;
  }

  .privacy-text p{
    font-size:11px;
  }

  .privacy-icon{
    width:30px;
    height:30px;
    min-width:30px;
  }
}


/* EVENTS SECTION*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #111;
}

/* EVENTS SECTION */
.events-banner{
    width: 100%;
    min-height: 300px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 40px 60px;
}

/* IMAGE */
.banner-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    top: 0;
    left: 0;
}

/* OVERLAY */
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* CONTENT */
.events-content{
    position: relative;
    z-index: 2;
    width: 100%;
}

.events-content h1{
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* SEARCH BAR */
.search-box{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* INPUTS */
.search-box input,
.search-box select{
    height: 48px;
    min-width: 150px;

    padding: 0 15px;

    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;

    color: white;
    outline: none;

    border-radius: 3px;
}

/* PLACEHOLDER */
.search-box input::placeholder{
    color: rgba(255,255,255,0.8);
}

/* SELECT OPTIONS */
.search-box select option{
    color: black;
}

/* DATE FIELD */
input[type="date"]{
    color: rgba(255,255,255,0.8);
}

/* BUTTON */
.search-box button{
    height: 48px;
    padding: 0 35px;

    border: none;
    background: #f4b400;

    color: white;
    font-weight: 600;

    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover{
    background: #d89b00;
}

/* RESPONSIVE */
@media(max-width: 992px){

    .events-banner{
        padding: 30px 20px;
    }

    .search-box input,
    .search-box select,
    .search-box button{
        width: 100%;
    }

}

/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f3efea;
  color:#111;
}

img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ================= SECTION ================= */

.vision-mission-section{
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:40px 30px 60px;
}

/* ================= TOP & BOTTOM ================= */

.top-section,
.bottom-section{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  margin-bottom:45px;
}

/* ================= TEXT CONTENT ================= */

.text-content{
  width:34%;
  padding-top:10px;
}

.text-content h2{
  font-size:52px;
  font-weight:600;
  margin-bottom:18px;
  color:#111;
}

.text-content p{
  font-size:18px;
  line-height:1.8;
  color:#333;
  margin-bottom:35px;
}

/* ================= BUTTONS ================= */

.buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  background:#2d4259;
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  border-radius:40px;
  font-size:13px;
  font-weight:600;

  display:flex;
  align-items:center;
  gap:10px;

  transition:0.3s;
}

.btn span{
  width:28px;
  height:28px;
  background:#fff;
  color:#2d4259;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
}

.btn:hover{
  transform:translateY(-3px);
}

/* ================= IMAGE GRID ================= */

.image-grid{
  width:66%;
  display:flex;
  flex-direction:column;
}

.top-images{
  display:flex;
  gap:18px;
  margin-bottom:18px;
}

.img-box{
  position:relative;
  height:220px;
  overflow:hidden;
}

.top-images .img-box{
  width:50%;
}

.bottom-image{
  width:100%;
  height:230px;
  overflow:hidden;
}

.bottom-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ================= CIRCLE LOGO ================= */

.circle-logo{
  position:absolute;
  top:-22px;
  left:-22px;

  width:95px;
  height:95px;

  background:#fff;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#b04cc7;
  font-size:38px;
  font-weight:600;

  box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

/* ================= LEFT GALLERY ================= */

.left-gallery{
  width:58%;
}

.small-images{
  display:flex;
  gap:18px;
  margin-bottom:18px;
}

.small-images img{
  width:50%;
  height:170px;
}

.large-image{
  height:250px;
}

/* ================= MISSION ================= */

.mission{
  width:38%;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .top-section,
  .bottom-section{
    flex-direction:column;
  }

  .text-content,
  .image-grid,
  .left-gallery,
  .mission{
    width:100%;
  }

  .text-content h2{
    font-size:42px;
  }
}

@media(max-width:768px){

  .vision-mission-section{
    padding:30px 20px 50px;
  }

  .top-images,
  .small-images{
    flex-direction:column;
  }

  .top-images .img-box,
  .small-images img{
    width:100%;
  }

  .text-content h2{
    font-size:34px;
  }

  .text-content p{
    font-size:16px;
    line-height:1.7;
  }

  .img-box,
  .bottom-image,
  .large-image{
    height:auto;
  }
}