/* Inner wrapper */
/* Fork Image */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
.landing-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* Content wrapper */
.landing-page-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
}

/* H1 uppercase + max-width handled by parent */
.landing-page-inner h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase; /* your requirement */
  max-width: 600px; /* your requirement */
  margin: auto;
}

/* H3 also contained within max-width */
.landing-page-inner h3 {
  font-size: 20px;
  font-weight: 300;
  max-width: 400px; /* your requirement */
  margin: auto;
}

/* Move the years-of-experience badge to bottom-left */
.years-of-experience {
  position: absolute;
  bottom: 4.5rem; /* your requirement */
  left: 4.5rem; /* your requirement */
  width: 150px;
  z-index: 4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-page-inner h1 {
    font-size: 28px;
  }
  .landing-page-inner h3 {
    font-size: 16px;
  }
  .years-of-experience {
    width: 130px;
    bottom: 2.5rem;
    left: 2.5rem;
  }
}
.h1-animated {
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-block {
  color: #fff;
  padding: 120px 0;
}

.gallery-inner {
  width: 100%; /* content area = 100% - (20% + 20%) */
  margin: 0 auto; /* centers the block */
  max-width: 1600px; /* optional, prevents too wide */
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-inner {
    width: 80%;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Mobile */
@media (max-width: 600px) {
  .gallery-inner {
    width: 90%;
  }
  .gallery-title {
    font-size: 1.6rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Slider Images and transitions ------------------------------- */
.slider {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 400%;
  height: 80vh;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 25%;
  height: 100vh;
  transition: 1s;
  position: relative;
}

.hero-inner {
  border-radius: 15px;
}

.banner-hero {
  width: 300px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 4.5rem;
  top: 15%;
  z-index: 10;
}

/* Mobile Page Design ends here------------------------------- */
.navigation-unit {
  z-index: 10;
  position: absolute;
  top: 3.5rem;
  left: 4.5rem;
}

.navigation-manual {
  display: flex;
  width: 100%;
}

.manual-btn {
  background-color: #00AF79;
  padding: 8px;
  border-radius: 20px;
  transition: 1s;
  z-index: 4;
  cursor: pointer;
}

.manual-btn:not(:last-child) {
  margin-right: 15px;
}

.manual-btn:hover {
  background: blue;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -25%;
}

#radio3:checked ~ .first {
  margin-left: -50%;
}

#radio4:checked ~ .first {
  margin-left: -75%;
}

/* CSS for auto navigation ------------------------------- */
.navigation-auto {
  display: flex;
  width: 100%;
  z-index: 10;
  margin-bottom: 10px;
}

.navigation-auto div {
  padding: 1px 8px;
  transition: 1s;
  z-index: 5;
}

.navigation-unit .navigation-auto div:not(:last-child) {
  margin-right: 15px;
}

#radio1:checked ~ .navigation-unit .navigation-auto .auto-btn1 {
  background: #00AF79;
}

#radio2:checked ~ .navigation-unit .navigation-auto .auto-btn2 {
  background: #00AF79;
}

#radio3:checked ~ .navigation-unit .navigation-auto .auto-btn3 {
  background: #00AF79;
}

#radio4:checked ~ .navigation-unit .navigation-auto .auto-btn4 {
  background: #00AF79;
}

.hero-text {
  position: absolute;
  left: 4.5rem;
  top: 15%;
  color: white;
}
.hero-text h6 {
  padding-bottom: 0.4rem;
  line-height: 2rem;
  max-width: 330px;
}
.hero-text p {
  color: white;
}

@media only screen and (max-width: 700px) {
  .hero-text {
    display: none;
  }
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.banner-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  filter: grayscale(100%);
  position: relative;
  display: flex;
  justify-content: center;
}

.banner-image:hover, .contact-color {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

@media only screen and (max-width: 800px) {
  .banner-image {
    overflow: hidden;
    width: 100%;
  }
}
@font-face {
  font-family: Gilroy-Heavy;
  src: url(../fonts/Gilroy-Heavy.woff), url(../fonts/Gilroy-Heavy.woff2), url(../fonts/Gilroy-Heavy.eot), url(../fonts/Gilroy-Heavy.ttf);
}
@font-face {
  font-family: Gilroy-Light;
  src: url(../fonts/Gilroy-Light.woff), url(../fonts/Gilroy-Light.woff2), url(../fonts/Gilroy-Light.eot), url(../fonts/Gilroy-Light.ttf);
}
@font-face {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  src: url(../fonts/Gilroy-Heavy.woff), url(../fonts/Gilroy-Heavy.woff2), url(../fonts/Gilroy-Heavy.eot), url(../fonts/Gilroy-Heavy.ttf);
}
@font-face {
  font-family: "Gilroy-ExtraBold, Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  src: url(../fonts/Gilroy-ExtraBold.woff), url(../fonts/Gilroy-ExtraBold.woff2), url(../fonts/Gilroy-ExtraBold.eot), url(../fonts/Gilroy-ExtraBold.ttf);
}
@font-face {
  font-family: "Gilroy-Black, Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  src: url(../fonts/GilroyBlack.woff), url(../fonts/GilroyBlack.woff2), url(../fonts/GilroyBlack.eot), url(../fonts/GilroyBlack.ttf);
}
@font-face {
  font-family: "miradorbold";
  src: url("../fonts/miradorbold-webfont.woff2") format("woff2"), url("../fonts/miradorbold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Typography specifications*-----------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Big headline*-----------------*/
h1 {
  font-family: "Prata", serif;
  font-size: 3rem;
  line-height: 3.5rem;
  padding: 0 0 0.5em 0;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-family: "Gilroy-Heavy";
  font-size: 4.5rem;
  line-height: 5rem;
}

h3 {
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

h6 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  padding-top: 2rem;
  line-height: 2.5rem;
}

/* Paragraph-descriptions*-----------------*/
p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: 300;
  color: #3e3d41;
}

/* Buttons type*-----------------*/
h5 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 2rem;
}

@media only screen and (max-width: 1500px) {
  h1 {
    font-size: 4.5rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 1000px) {
  h1 {
    padding: 0.5em 0;
  }
  h4 {
    font-size: 1.3rem;
  }
  p {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 4.5rem;
    line-height: 3.5rem;
    padding: 0.5em 0;
  }
}
@media only screen and (max-width: 650px) {
  h1 {
    font-size: 3rem;
    line-height: 2.8rem;
    padding: 0.5em 0;
  }
}
@media only screen and (max-width: 1250px) {
  h2 {
    font-size: 4rem;
    line-height: 3.9rem;
    padding: 0.5em 0;
  }
}
@media only screen and (max-width: 850px) {
  h2 {
    font-size: 4rem;
    line-height: 4rem;
    padding: 0.5em 0;
  }
}
/* Type colors*-----------------*/
.typo-white {
  color: white;
}

.typo-blue {
  color: #3e3d41;
  line-height: 3.5rem;
  letter-spacing: 1px;
}

.typo-grey {
  color: rgb(81, 81, 88);
}

.typo-red {
  color: #00AF79;
}

#font-color-red {
  color: red;
}

#font-color-blue {
  color: blue;
}

button {
  margin-top: 5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: inherit;
  border-radius: 50px;
  background-color: transparent;
  color: white;
  padding: 8px 30px;
  background-color: #00AF79;
  border-radius: 50px;
}

button:hover {
  cursor: pointer;
  background-color: red;
}

#awardMove {
  position: absolute;
  width: 45px;
  height: 165px;
  right: 4.5rem;
  top: 55%;
  z-index: 2;
}
#awardMove .st0:hover {
  cursor: pointer;
  fill: red;
}

@media only screen and (max-width: 600px) {
  #awardMove {
    right: 2.5rem;
  }
}
.home-ribbon-outer {
  position: relative;
  position: fixed;
  width: 45px;
  height: 165px;
}

.home-ribbon-inner {
  position: absolute;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
}
.home-ribbon-inner img {
  width: 20px;
  margin: 10px 0;
}

.star-casing {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blue;
  margin-top: 10px;
}

.honour {
  transform: rotate(-90deg);
}
.honour p {
  font-size: 1rem;
  color: white;
  padding-right: 50px;
  letter-spacing: 1px;
  font-weight: bold;
}

.test {
  visibility: hidden;
}

.awa {
  display: flex;
  width: 35px;
  height: 35px;
  background-color: blue;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  animation: rotation 5s infinite linear;
  transform-origin: center;
  transform-box: fill-box;
  margin-left: 5px;
}

.awa-banner {
  fill: red;
}

.awa-banner:hover {
  fill: #00AF79;
}

#button2 {
  display: inline;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 4.5rem;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1200;
}
#button2 img {
  width: 20px;
  padding-top: 10px;
}

#button2:hover {
  cursor: pointer;
  background-color: blue;
}

#button2:active {
  background-color: #555;
}

#button2.show {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 700px) {
  #button2 {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

#button-unit {
  text-align: center;
  margin-top: 60px;
}

:root {
  --page-margin: 20vw; /* left & right margin on large screens */
  --content-width: 60vw; /* central content area (100% - 2 * page-margin) */
  --maroon:#9f2330;
  --maroon-darker:#8b1b28;
  --feature-grad-from:#c40b11;
  --feature-grad-to:#230007;
  --badge-green:#2f6d3a;
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

/* ---------- HERO (white background area with feature box + chili) ---------- */
.hero {
  position: relative;
  background: #ffffff; /* keep white for the hero zone (except the feature box) */
  padding: 120px 0 40px; /* generous top spacing so the box can float */
}

/* central layout: 20% margins left + right, content area = 60% */
.page {
  width: var(--content-width);
  margin: 0 var(--page-margin);
  position: relative;
  min-height: 260px;
}

/* feature (rounded) gradient box placed inside .page.
   width = 45% of the .page (as requested) */
.feature-box {
  position: absolute;
  top: 12px; /* pushed down from top of hero */
  left: 50%;
  transform: translateX(-50%);
  width: 45%; /* 45% of the 60% central area */
  background: linear-gradient(135deg, var(--feature-grad-from), var(--feature-grad-to));
  border-radius: 18px;
  padding: 60px 60px 66px;
  z-index: 10; /* ensure it sits above the group photo */
}

.feature-box h1 {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 700;
}

.feature-box p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

/* chili image overlapping left side of the feature box */
.chili {
  position: absolute;
  width: 220px;
  height: auto;
  left: calc(12.5% - 110px); /* place left of the feature box center (approx) */
  top: -8px;
  transform: rotate(-6deg);
  z-index: 12; /* on top of feature-box slightly */
  pointer-events: none;
}

/* ---------- Group photo (full width) ---------- */
.group-photo {
  width: 100%;
  margin-top: 40px; /* some breathing space before overlap adjustment */
  position: relative;
  z-index: 1;
}

.group-photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Move the group photo up so feature-box visually overlaps it */
.group-photo--overlap {
  margin-top: -80px; /* pulls the photo upward under the feature box */
}

/* ---------- Maroon block: Our story & commitments (same bg colour) ---------- */
.maroon-block {
  padding: 350px 20% 350px 20%;
}

.maroon-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.story h2 {
  font-family: "Prata", serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.story p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 600px;
}

.commit-title {
  margin: 120px 0 60px 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
.commit-title h3 {
  font-family: "Prata", serif;
  letter-spacing: 1px;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 40px;
}

.commit-card {
  background: #e9dfcf;
  padding: 40px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.commit-card h3 {
  font-family: "Prata", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  max-width: 150px;
}

.commit-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 200px;
}

/* Tablet */
@media (max-width: 1024px) {
  .maroon-block {
    padding: 250px 10% 250px 10%;
  }
  .commit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .maroon-block {
    padding: 150px 5% 150px 5%;
  }
  .story h2 {
    font-size: 1.6rem;
  }
  .story p {
    font-size: 0.95rem;
  }
  .commit-title {
    font-size: 1.4rem;
    margin: 80px 0 40px 0;
  }
  .commit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .commit-card {
    min-height: auto;
    padding: 18px;
  }
}
/* ---------- Closing (dark) with food illustration ---------- */
.closing {
  background: #0b0206;
  color: #fff; /* keep text white (user will change later) */
  text-align: center;
}

.closing .closing-text {
  width: var(--content-width);
  margin: 0 var(--page-margin);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 800px;
  margin: auto;
}
.closing .closing-text h3 {
  color: #4dd19e;
  font-weight: 100;
  padding-top: 5rem;
  font-family: "Prata", serif;
}

.food-illustration {
  width: 100%;
  margin-top: 36px;
}

.food-illustration img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------- Responsive: tablet & mobile ---------- */
@media (max-width: 1100px) {
  :root {
    --page-margin: 12vw;
    --content-width: 76vw;
  }
  .chili {
    width: 180px;
    left: calc(27.5% - 90px);
    top: -6px;
  }
}
@media (max-width: 900px) {
  :root {
    --page-margin: 5vw;
    --content-width: 90vw;
  }
  /* make central page full width with small side padding */
  .page, .maroon-inner, .closing .closing-text {
    width: calc(100% - 2 * var(--page-margin));
    margin: 0 var(--page-margin);
  }
  /* feature box becomes normal flow block on mobile */
  .feature-box {
    position: relative;
    width: 100%;
    left: auto;
    transform: none;
    top: 0;
    margin-top: 16px;
    padding: 20px;
    border-radius: 12px;
  }
  /* place Chili below the box on mobile (you can move it above by re-ordering) */
  .chili {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 140px;
    margin: 14px auto 8px;
    display: block;
  }
  .group-photo--overlap {
    margin-top: -30px;
  }
  .badge {
    margin-top: -40px;
    padding: 10px 18px;
  }
  .commit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commit-card:nth-child(4) {
    grid-column: auto;
  }
  .commit-card {
    min-height: 100px;
  }
}
@media (max-width: 480px) {
  .commit-grid {
    grid-template-columns: 1fr;
  }
  .feature-box h1 {
    font-size: 1.05rem;
  }
  .feature-box p {
    font-size: 0.95rem;
  }
  .story h2 {
    font-size: 1.25rem;
  }
  .closing .closing-text {
    font-size: 1rem;
  }
}
.project-headline {
  display: flex;
  justify-content: space-between;
}
.project-headline h2 {
  line-height: 3rem;
  letter-spacing: 1px;
  max-width: 600px;
  padding-bottom: 4rem;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
}

/* Ipad Page Design------------------------------- */
@media only screen and (max-width: 800px) {
  .project-headline h1 {
    margin-top: 100px;
    line-height: 3.8rem;
  }
}
@media only screen and (max-width: 700px) {
  .project-headline {
    left: 7%;
  }
  .project-headline h1 {
    margin-top: 100px;
    line-height: 2.5rem;
  }
  .project-headline h2 {
    max-width: 300px;
    line-height: 2.5rem;
    font-size: 2.3rem;
    margin-top: 4em;
  }
}
/* Ipad Design ends here------------------------------- */
.acd-casestudy {
  padding-bottom: 8rem;
  margin: 12%;
}
@media only screen and (max-width: 1400px) {
  .acd-casestudy {
    margin: 3rem;
  }
}

.workslide img {
  vertical-align: middle;
  padding: 3px;
}

.case-intro {
  display: flex;
  padding-bottom: 10rem;
  padding-top: 5rem;
  flex-wrap: wrap;
}
.case-intro .case-headline {
  width: 50%;
  color: grey;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  .case-intro .case-headline {
    width: 100%;
  }
}
.case-intro .case-discription {
  width: 50%;
  justify-content: flex-end;
  color: grey;
}
@media only screen and (max-width: 1200px) {
  .case-intro .case-discription {
    width: 100%;
  }
}

.text-highlight {
  font-size: 1.8rem;
  padding-bottom: 2rem;
  line-height: 2.2rem;
  font-weight: 400;
  max-width: 650px;
}

.text-highlight-below {
  font-size: 1.2rem;
  line-height: 1.7rem;
  max-width: 650px;
}

.double {
  display: flex;
}

@media only screen and (max-width: 1400px) {
  .acd-casestudy {
    margin: 10%;
    margin-top: 18%;
  }
}
@media only screen and (max-width: 700px) {
  .acd-casestudy {
    margin: 7%;
  }
}
.triple {
  display: flex;
  flex-wrap: wrap;
}
.triple .triple-inside {
  width: 33.33%;
}

.club-logo-animation {
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  vertical-align: bottom;
}

#myVideo {
  position: relative;
}

/* Project Banners----------------*/
.aura-banner {
  height: 90vh;
  background-image: url("../Image/works/aura/aura-logo.jpg");
  background-position: center;
}

.aurapack-banner {
  height: 90vh;
  background-image: url("../Image/works/aurapack/aura-cinemas-packaging-coffee-cup.jpg");
  background-position: center;
}

.clubw-banner {
  height: 90vh;
  background-image: url("../Image/works/clubw/clubw-wayanad-branding-stationery-design.jpg");
  background-position: center;
}

.glaana-banner {
  height: 90vh;
  background-image: url("../Image/works/glaana/glaana-packaging-design-product-catalogue.jpg");
  background-position: center;
}

.iampure-banner {
  height: 90vh;
  background-image: url("../Image/works/iampure/iampure-norway-packaging-design-2.jpg");
  background-position: center;
}

.lesapphire-banner {
  height: 90vh;
  background-image: url("../Image/works/lesapphire/lesapphire-hotel-wayanad-branding-brochure-design.jpg");
  background-position: center;
}

.nuetone-banner {
  height: 90vh;
  background-image: url("../Image/works/nuetone/nuetone-cgi-dubai-branding-typography.jpg");
  background-position: center;
}

.sankranty-banner {
  height: 90vh;
  background-image: url("../Image/works/sankranty/sanktanty-packaging-design-pulses.jpg");
  background-position: center;
}

.sc-banner {
  height: 90vh;
  background-image: url("../Image/works/sc/sandalocastle-resort-nilgiri-branding-brochure-design.jpg");
  background-position: center;
}

.silkroute-banner {
  height: 90vh;
  background-image: url("../Image/works/silkroute/silkroute_escapes-mysore-palace.jpg");
  background-position: center;
}

.splash-banner {
  height: 90vh;
  background-image: url("../Image/works/splash/splash-wayanad-monsoon-carniaval-event.jpg");
  background-position: center;
}

.sunntv-banner {
  height: 90vh;
  background-image: url("../Image/works/sunntv/sunntv-norway-branding-stationery-design.jpg");
  background-position: center;
}

.terrace-banner {
  height: 90vh;
  background-image: url("../Image/works/terrace/terrace-resorts-banasurasagar-wayanad-branding-coffee-cup-design.jpg");
  background-position: center;
}

.vacationclub-banner {
  height: 90vh;
  background-image: url("../Image/works/vacationclub/vacationclub-wayanad-branding-corp-brochure.jpg");
  background-position: center;
}

.vistara-banner {
  height: 90vh;
  background-image: url("../Image/works/vistara/vistara-resort-project-banner.jpg");
  background-position: center;
}

.embassy-banner {
  height: 90vh;
  background-image: url("../Image/works/embassy/embassy-services-newsletter-3.jpg");
  background-position: center;
}

.summitai-banner {
  height: 90vh;
  background-image: url("../Image/works/summitai/summitai-banner.jpg");
  background-position: center;
}

.anaqha-banner {
  height: 90vh;
  background-image: url("../Image/works/anaqha/anaqha-banner2.jpg");
  background-position: center;
}

#work-banner-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Individual project rightside go to work button----------------*/
.link-to-workpage {
  transform: rotate(90deg);
  transform-origin: left top;
  position: absolute;
  position: fixed;
  display: flex;
  top: 41%;
  left: 100%;
  white-space: nowrap;
  color: black;
  background-color: white;
  z-index: 6;
  width: 170px;
  height: 50px;
  align-items: center;
  justify-content: space-around;
}
.link-to-workpage .work-go-link p {
  font-size: 1rem;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  transform: rotate(-180deg);
  letter-spacing: 1px;
  color: blue;
  margin: 0;
}
.link-to-workpage:hover {
  background-color: lightgrey;
  color: red;
}
.link-to-workpage:hover .work-go {
  background-color: red;
  color: red;
}
.link-to-workpage .work-go {
  display: flex;
  width: 25px;
  height: 25px;
  background-color: blue;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  animation: rotation 5s infinite linear;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.link-to-workpage #workicon {
  text-align: center;
  margin-bottom: 2px;
}

/* Mobile Page Design------------------------------- */
@media only screen and (max-width: 600px) {
  .avcd-casestudy {
    margin: 4rem 7% 0 7%;
  }
  .link-to-workpage {
    display: none;
  }
  .case-intro {
    padding-top: 0;
    padding-bottom: 4rem;
  }
  .text-highlight {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
  .text-highlight-below {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
/* Mobile Page Design ends here------------------------------- */
/* Margin------------------------------- */
.content-group-inner {
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 10%;
}

.content-group-inner .introduction {
  width: 65%;
}
.content-group-inner .introduction h1 {
  max-width: 600px;
  color: rgb(167, 156, 156);
}
.content-group-inner .introduction p {
  max-width: 600px;
  color: rgb(204, 200, 200);
  padding-top: 1rem;
}

.content-group-inner .image-section {
  width: 35%;
}
.content-group-inner .image-section img {
  display: block;
}

.image-group-full-width {
  display: flex;
  overflow: hidden;
}
.image-group-full-width img {
  display: block;
}

.ingredients-group-inner {
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 15rem;
  padding-bottom: 15rem;
  text-align: center;
}

.services-group-inner {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonial-section-inner {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.footer-content {
  padding-top: 5%;
  padding-bottom: 10%;
}

.feature-headline {
  padding-top: 4em;
  text-align: center;
}

.feature-section {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.feature-section .feature-headline {
  color: black;
  padding: 10rem 0 0 0;
}
.feature-section hr {
  display: none;
  margin-bottom: 2rem;
}
.feature-section h2 {
  text-align: center;
}

.featured-discription a {
  font-size: 0.5rem;
}

/* Case studies ------------------------------- */
.featured-work {
  margin-bottom: 15rem;
}

.featured-work-outer {
  margin-top: 5rem;
}

.featured-work-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.featured-projects {
  width: 49%;
  margin-bottom: 8rem;
}
.featured-projects a {
  text-decoration: none;
}
.featured-projects h5 {
  font-weight: 800;
  color: #555454;
}

.featured-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.featured-image img {
  transition: 1s ease-out;
  vertical-align: middle;
  filter: grayscale(100%);
  image-rendering: auto;
}
.featured-image img:hover {
  transform: scale(1.2);
  filter: none;
}

.all-project h3 {
  padding-top: 1rem;
}

.featured-discription-line hr {
  height: 0.5;
  background-color: #a3a6a8;
  margin-top: 10px;
}

.all-work-link {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.all-work-link h5 {
  padding: 5px 25px;
  background-color: blue;
  color: white;
  border-radius: 50px;
  transition: 0.6s;
}

.all-work-link h5:hover {
  background-color: red;
  color: white;
}

/* for award projects.......................................... */
.ribbon {
  width: 50px;
  height: 70px;
  z-index: 8;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

#ribbonbase {
  position: absolute;
}

#star-rotate {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  margin-top: 15px;
}

.star-project {
  animation: rotation 5s infinite linear;
  transform-origin: center;
}

@media only screen and (max-width: 900px) {
  .featured-projects {
    width: 100%;
  }
}
/* Mobile Page Design------------------------------- */
@media only screen and (max-width: 700px) {
  .feature-section {
    padding-top: 0rem;
  }
  .feature-section .feature-headline {
    padding: 0;
  }
  .feature-section .feature-headline h2 {
    font-size: 2.5rem;
  }
  .feature-headline hr {
    display: block;
    border-top: 5px solid blue;
  }
  .featured-work-outer {
    margin-top: 2rem;
  }
  .featured-discription {
    padding-top: 0.5rem;
  }
  .featured-projects {
    margin-bottom: 4rem;
  }
  .featured-work-outer {
    margin-bottom: 2rem;
  }
  .featured-work .featured-image {
    margin-bottom: 0;
  }
  .featured-work {
    margin-bottom: 10rem;
  }
}
/* Mobile Page Design ends here------------------------------- */
/* Contact Banner Section */
.contact-banner {
  text-align: center;
  padding: 6rem 1rem 6rem 1rem;
}

.contact-banner h1 {
  font-size: 2.8rem;
  font-weight: 500;
  padding-top: 6rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-banner h1 {
    font-size: 2rem;
  }
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 8rem 2rem;
  flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
  max-width: 400px;
  font-size: 1rem;
}
.contact-info h4 {
  font-weight: 500;
}

.contact-wrapper {
  max-width: 900px;
  margin: 60px auto;
  background: #e9dfcf;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 16px;
  color: #444;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  gap: 20px;
}

.row input,
.row select {
  width: 100%;
}

input,
select,
textarea {
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 6px;
  outline: none;
}

textarea {
  height: 140px;
  resize: none;
}

.submit-row {
  display: flex;
  justify-content: flex-end;
}

button {
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background: #333;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #111;
}

.terms {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: #333;
  gap: 10px;
}

@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}
.contact-info {
  max-width: 900px;
  margin: 20px auto;
  background: #e9dfcf;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 10rem;
}

.outer-wrapper-service {
  background-color: blue;
  margin-top: 200px;
}

.inner-wrapper-blue-services {
  margin: 0 20%;
  padding: 10rem 0;
}
.inner-wrapper-blue-services p {
  max-width: 800px;
}

.acd-services {
  width: 100%;
  height: auto;
  justify-content: center;
  display: flex;
  background-color: white;
}

.acd-services-inner {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box_container {
  margin-top: 10px;
  width: 49%;
  height: auto;
  background-color: rgb(248, 226, 226);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
}

@media only screen and (max-width: 800px) {
  .box_container {
    margin-left: 0;
  }
}
.icon {
  width: 80%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro_header1 h1 {
  color: blue;
}

.text {
  width: 85%;
  display: flex;
  flex-direction: column;
}
.text h4 {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 700;
  padding-top: 1rem;
  font-family: "Inter", sans-serif;
  color: red;
}
.text p {
  color: #430AAC;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6rem;
  padding-top: 1rem;
  font-family: "Inter", sans-serif;
}
.text ul {
  padding: 0 0 2rem 0;
}
.text li {
  padding: 0;
  font-family: "heebo", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #430AAC;
  list-style: none;
}

@media only screen and (max-width: 1250px) {
  .box_container {
    width: 100%;
  }
}
.sub_container {
  width: 65%;
}

@media only screen and (max-width: 1200px) {
  .box_container {
    width: 100%;
  }
  .sub_container {
    width: 80%;
    padding: 5em 0;
  }
  .sub_container .text {
    padding-bottom: 5rem;
  }
  .inner-wrapper-blue-services {
    margin: 0 10%;
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 800px) {
  .box_container {
    width: 60%;
  }
  .sub_container {
    width: 70%;
  }
  .box_container {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  .sub_container {
    width: 90%;
  }
  .box_container {
    width: 100%;
  }
  .inner-wrapper-blue-services {
    margin: 0 7%;
    padding: 10rem 0;
  }
  .text {
    margin-bottom: 4em;
  }
  .main_container {
    background-color: white;
  }
}
#pack-design-section {
  padding-bottom: 12rem;
  margin-top: 0;
}

#pack-design-section .content-group-message {
  flex-direction: column;
  max-width: 600px;
}

.work {
  margin: 0 11.2%;
  padding-top: 10rem;
}
.work h1 {
  text-align: center;
  color: blue;
  box-sizing: border-box;
  display: inline;
}

.seperator-line-work {
  margin-left: 5%;
  margin-right: 5%;
}

.filter-controls {
  text-align: right;
  display: flex;
  align-items: center;
}

#seperator-line-2 {
  display: flex;
  justify-content: space-between;
}

.filter-btn {
  border: none;
  padding: 8px 16px;
  padding-block: 0;
  padding-inline: 0;
  margin: 0 10px;
  font-size: 0.85rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-controls #work_btn:nth-child(5n) {
  margin-right: -10px;
}

#work_btn {
  padding: 0 10px;
  margin: 0;
  background-color: white !important;
  color: #0000b9;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #0000b9;
  color: #ffffff;
}

.work-inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  margin-bottom: 10rem;
}

.case-study {
  width: 33.33%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 15px;
  position: relative;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .case-study {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .case-study {
    width: 100%;
    padding: 0;
  }
}
.case-study img {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
  vertical-align: bottom;
  image-rendering: auto;
  width: 100%;
}
.case-study img:hover {
  filter: none;
  transform: scale(1.1);
}
.case-study .case-image {
  overflow: hidden;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case1:hover {
  transform: scale(1.2);
  overflow: hidden;
}

.caseheading {
  display: flex;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.caseheading a {
  color: gray;
}

/* Ipad Page Design------------------------------- */
@media only screen and (max-width: 1180px) {
  .work {
    margin: 0 10% 0 10%;
  }
}
/* Ipad Design ends here------------------------------- */
/* Mobile Page Design------------------------------- */
@media only screen and (max-width: 700px) {
  .work {
    margin: 0 7% 0 7%;
  }
  .work-inner {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .caseheading {
    font-size: 1rem;
  }
  .caseheading a {
    color: grey;
    padding: 25px 0;
  }
  .case-study {
    margin-bottom: 1rem;
  }
  .case-study .case-image {
    margin-bottom: 0;
  }
}
/* Mobile Page Design ends here------------------------------- */
.stories-landingpage {
  width: 100%;
}

.story-mainhead {
  grid-column: 3/11;
  margin-top: 12rem;
  margin-bottom: 4rem;
  color: blue;
}

.storyheader {
  grid-template-columns: repeat(12, 1fr);
  display: grid;
  justify-content: center;
}

.stories {
  grid-column: 3/11;
  display: grid;
  padding-bottom: 15rem;
}

.blog {
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  display: grid;
  grid-gap: 30px;
}
@media only screen and (max-width: 700px) {
  .blog {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.essay {
  grid-template-rows: 2fr 1fr;
  display: grid;
  height: 400px;
}
.essay p {
  color: grey;
  padding-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.5rem;
  max-width: 350px;
  margin-block-start: 0;
  margin-block-end: 0;
}

.essayinner1 {
  background-image: url("../Image/stories/Iam_Global2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
.essayinner1:hover {
  filter: none;
}

.essayinner3 {
  background-image: url("../Image/stories/anoop_v_chalil.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  image-rendering: crisp-edges;
  filter: grayscale(100%);
}
.essayinner3:hover {
  filter: none;
}

.essayinner4 {
  background-image: url("../Image/stories/boxesandbeyond.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
.essayinner4:hover {
  filter: none;
}

.essayinner5 {
  background-image: url("../Image/stories/packagingadvice.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
.essayinner5:hover {
  filter: none;
}

.essayinner6 {
  background-image: url("../Image/stories/travel.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
.essayinner6:hover {
  filter: none;
}

/* Ipad Page Design------------------------------- */
@media only screen and (max-width: 1180px) {
  .essay {
    height: 500px;
  }
  .essay p {
    max-width: 500px;
  }
  .stories {
    padding-bottom: 2rem;
    grid-column: 2/12;
  }
  .story-mainhead {
    grid-column: 2/11;
  }
}
/* Ipad Design ends here------------------------------- */
/* Mobile Page Design------------------------------- */
@media only screen and (max-width: 700px) {
  .stories {
    grid-column: 3/12;
    padding-bottom: 2rem;
  }
  .story-mainhead {
    grid-column: 3/12;
  }
  .storyheader {
    grid-template-columns: repeat(13, 1fr);
  }
}
/* Mobile Page Design ends here------------------------------- */
.blog-outer-wrapper {
  width: 100%;
  margin-top: 200px;
  display: flex;
  justify-content: center;
}

.blog-outer {
  width: 900px;
  margin: 100px 0;
}

.gotostory a {
  color: blue;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}
.gotostory a:hover {
  color: red;
}

.storytext h1 {
  color: blue;
  font-size: 4rem;
  line-height: 4rem;
  max-width: 700px;
}
.storytext p {
  color: grey;
  padding: 20px 0 100px 0;
  line-height: 1.8rem;
}
.storytext .blog-inner-img {
  margin: 50px 0;
}
.storytext h6 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
}

@media only screen and (max-width: 1000px) {
  .blog-outer {
    width: 80%;
    margin: 100px 0;
  }
}
@media only screen and (max-width: 700px) {
  .blog-outer {
    width: 85%;
    margin: 100px 0;
  }
  .storytext p {
    font-size: 1.4rem;
    font-weight: 300;
    padding-top: 0;
  }
  .storytext h6 {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
}
#blue {
  height: 500px;
}

.menu-icon {
  z-index: 300;
}

.menu-btn-outer {
  width: 20%;
  display: flex;
  justify-content: flex-end;
}

.menu-btn {
  width: 20%;
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  right: 0;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  /* border: 3px solid #fff; */
}

.menu-btn__burger {
  width: 32px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

/* ANIMATION */
#menu-btn.open #menu-btn__burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 3px;
  background: #35e9b0;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before {
  transform: translateY(-10px);
}

.menu-btn__burger::after {
  transform: translateY(10px);
}

/* ANIMATION */
.menu-btn.open .menu-btn__burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
  transform: rotate(45deg) translate(35px, -35px);
  background: rgb(77, 228, 8);
}

.menu-btn.open .menu-btn__burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
  background: rgb(51, 236, 34);
}

#menu-btn-innerpages {
  background-color: blue;
}

.menu-btn.open #menu-btn-innerpages::before {
  transform: rotate(45deg) translate(35px, -35px);
  background: white;
}

.menu-btn.open #menu-btn-innerpages::after {
  transform: rotate(-45deg) translate(35px, 35px);
  background: white;
}

#menu-btn-innerpages::before,
#menu-btn-innerpages::after {
  background: blue;
}

.menu-btn.open #menu-btn-innerpages {
  background: transparent;
  transform: translateX(-50px);
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  background-color: #00AF79;
  right: 0;
  top: 0;
  height: 100vh;
  width: 500px;
  right: -500px;
  transition: 1s;
  z-index: 100;
}

@media only screen and (max-width: 700px) {
  .menu {
    width: 100%;
    right: -100%;
  }
}
.awards {
  width: 70px;
  height: 70px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%; /* distance from bottom */
  right: 5%; /* 5% margin from right edge */
  color: white;
  background-color: black;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}

.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  aspect-ratio: 16/9; /* Keeps the background/hen proportions responsive */
  overflow: hidden;
}

/* Background fills banner */
.banner img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Hen positioned relative to banner */
.hen {
  position: absolute;
  bottom: 22%; /* Relative to banner height */
  left: 50%;
  transform: translateX(-50%);
  width: 50%; /* Hen width relative to banner width */
}

.hen img {
  width: 100%;
  height: auto;
  display: block;
}

.packdesignpage-section {
  width: 100%;
}

.packdesignpage-section-inner {
  margin-top: 12rem;
  margin-bottom: 8rem;
}
.packdesignpage-section-inner h1 {
  color: red;
}
.packdesignpage-section-inner h4 {
  padding-bottom: 2rem;
}
.packdesignpage-section-inner p {
  padding-bottom: 2rem;
}

.pack-offers {
  margin-left: 10%;
  margin-right: 10%;
}

.pack-offers-startup {
  display: flex;
}
.pack-offers-startup p {
  padding-left: 3rem;
}

.startup-howitworks {
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 20px;
}

.startup-howitworks-inner {
  margin-top: 8rem;
  padding: 12rem 8rem;
}
.startup-howitworks-inner p {
  padding-bottom: 20px;
}

.limited-offer-icon {
  display: flex;
  justify-content: flex-end;
}

#packdesign_header_text {
  color: red;
}

@media only screen and (max-width: 1024px) {
  .startup-howitworks-inner {
    margin-top: 5rem;
    padding: 6rem 3rem;
  }
  .startup-howitworks-inner p {
    padding-bottom: 20px;
  }
}
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.5s ease;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 40%;
  margin: 0 auto;
  padding: 5px 40px;
  margin-top: 40px;
  background-color: aquamarine;
  border-radius: 50px;
  font-family: "Barlow", sans-serif;
}

.logo {
  display: flex;
  align-items: center;
}
.logo p {
  font-size: 0.9rem;
  line-height: 1rem;
  color: white;
  padding-left: 10px;
}

.logo img {
  height: 60px; /* Change logo height */
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 40%;
  margin: 0 auto;
  padding: 5px 40px;
  margin-top: 40px;
  background-color: black;
  border-radius: 50px;
  position: relative;
  z-index: 1001; /* stays above menu */
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001; /* stays above menu */
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgb(250, 250, 250);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger active state -> X 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(5px, -5px);
}

/* Mobile menu fullscreen */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ac273f;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 20px;
  z-index: 1000; /* lower than nav-container */
}

.mobile-menu a {
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding-top: 200px;
  margin: 0 5%;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    max-width: 50%;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* Landing Page Ends Here*/
#white {
  background-color: #ffffff;
}

#maroon {
  background-color: #ac273f;
}

#green-grey {
  background-color: #44493f;
}

#light-green {
  background-color: #dbf5c1;
}

/* chef Image - Introduction section*/
/* Inner wrapper */
.content-group-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Text Section */
.content-group-inner .introduction {
  flex: 2;
}

.content-group-inner .introduction h1 {
  max-width: 550px;
  color: #ac273f;
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.content-group-inner .introduction p {
  max-width: 550px;
  color: #696060;
  line-height: 1.6;
  padding-bottom: 8rem;
}

/* Image Section */
.content-group-inner .image-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.content-group-inner .image-section img {
  max-width: 150%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .content-group-inner {
    flex-direction: column;
    text-align: center;
  }
  .content-group-inner .introduction,
  .content-group-inner .image-section {
    width: 100%;
  }
  .content-group-inner .introduction h1 {
    font-size: 1.8rem;
    margin: auto;
    padding: 0 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .content-group-inner .introduction p {
    font-size: 0.95rem;
    margin: auto;
    padding: 0 3rem;
  }
}
@media (max-width: 576px) {
  .content-group-inner .introduction h1 {
    font-size: 1.6rem;
  }
  .content-group-inner .introduction p {
    font-size: 0.9rem;
  }
}
/* Image section grid */
.image-grid {
  display: flex;
  height: 100vh; /* adjust as needed */
  gap: 3px;
  padding: 3px 0;
}

/* Left column (big image) */
.left {
  flex: 1; /* takes 50% */
}

/* Right column */
.right {
  flex: 1; /* takes 50% */
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Top row of right column */
.top {
  display: flex;
  flex: 1;
  gap: 3px;
}

.top div {
  flex: 1; /* each half */
  display: flex;
}

.top div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Bottom image of right column */
.bottom {
  flex: 1;
  display: flex;
}

.bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Images style */
.image-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Responsive: make all images equal height */
@media (max-width: 768px) {
  .image-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    grid-auto-rows: 1fr; /* equal height rows */
    gap: 3px;
    height: auto;
  }
  .left, .right, .top, .top div, .bottom {
    flex: none;
    width: 100%;
    height: auto;
    display: contents; /* let grid handle layout */
  }
  .image-grid img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* chef Image - Introduction section*/
.ingredients-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.ingredients-icon-content {
  width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ingredients-icon-content p {
  color: grey;
  text-align: center;
  font-family: "Barlow", sans-serif;
  line-height: 24px;
  font-weight: 400;
  padding-top: 20px;
  font-size: 1.2rem;
}
.ingredients-icon-content img {
  width: 300px;
  border-radius: 50%;
}
.ingredients-icon-content hr {
  width: 60%;
  margin-top: 3rem;
}

#icon-dark {
  width: 200px;
}

.ingredients-group-inner h1 {
  max-width: 600px;
  padding: 6rem 0;
  margin: auto;
}

.our-services-icon {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  padding-top: 6rem;
}

.services-group-inner h1 {
  margin: auto;
  text-align: center;
  padding-top: 12rem;
}
.services-group-inner button {
  margin-top: 4rem;
}

.services-icon-content {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-icon-content p {
  color: grey;
  text-align: center;
  font-family: "Barlow", sans-serif;
  line-height: 24px;
  font-weight: 400;
  padding-top: 20px;
  font-size: 1.2rem;
}
.services-icon-content img {
  width: 250px;
  border-radius: 50%;
}
.services-icon-content hr {
  width: 60%;
  margin-top: 3rem;
}

.content-group-sub h1 {
  max-width: 750px;
  text-align: center;
  margin: auto;
  padding-top: 4rem;
}

.discription {
  max-width: 900px;
  text-align: center;
  margin: auto;
  padding-top: 1rem;
}

#maroon .ingredients-icon-content h3 {
  padding-bottom: 4rem;
}
#maroon .ingredients-icon-content p {
  color: white;
  padding-top: 20px;
}
#maroon .ingredients-icon-content img {
  width: 150px;
}

.show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  gap: 40px 2%; /* row gap: 40px, column gap: 2% */
  padding: 10rem 20%;
  align-items: center;
}

.left, .right {
  width: 100%;
}

.grid-item {
  width: 100%;
  height: auto;
  display: block;
}

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

.emoji-img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .show-grid {
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    gap: 20px;
  }
  .emoji-img {
    max-width: 80px;
    margin: 0 auto;
  }
  .grid-item {
    width: 100%;
    height: auto;
  }
}
.testimonial-section {
  text-align: center;
  background-color: rgb(38, 90, 81);
  background: url("../Images/home_page/veg2.jpg") no-repeat center center;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  background-blend-mode: multiply;
  color: rgb(26, 23, 23);
}

.testimonial-section h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: white;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}

.testimonial {
  background: url("../Images/home_page/plate.svg") no-repeat center center;
  background-size: contain; /* Makes the plate fit nicely */
  width: 400px;
  height: 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.customer-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.stars {
  color: red;
  font-size: 18px;
}

.footer-outer {
  width: 100%;
  background-color: #271919; /* dark background */
  text-align: center;
  position: relative;
}

.years-logo-outer {
  position: relative; /* important for absolute positioning */
  z-index: 100;
  width: 100%;
  height: 75px;
  background-color: #271919; /* dark background */
}

.circle-logo {
  width: 150px;
  height: 150px;
  background-color: #271919; /* black background */
  background-image: url("../Images/home_page/22-years.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%; /* adjust as needed */
  border-radius: 50%;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-inner {
  background-color: #271919; /* dark background */
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-content {
  text-align: center;
}
.footer-content img {
  width: 150px;
}
.footer-content p {
  color: rgb(173, 163, 163);
  padding: 20px 0 40px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons img {
  width: 40px;
}

.address-footer hr {
  width: 25%;
  margin-top: 50px;
}

@media only screen and (max-width: 1000px) {
  .featured-project {
    width: 49.7%;
    margin-top: 100px;
  }
}
@media only screen and (max-width: 650px) {
  .featured {
    flex-direction: column;
  }
  .featured-project {
    width: 100%;
    margin-top: 30px;
  }
  .contet-group-idea-image {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */