



/* PAGE BASELINE */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

main {
    padding-top: var(--header-height, 120px);
}

/* HERO SECTION */
.hero {
    background: #f4cc00;
    padding: clamp(60px,8vw,110px) clamp(18px,5vw,60px);
    position: relative;
    transition: background 0.6s ease-in-out;
    border-radius: 18px;
    margin: clamp(12px,3vw,24px) clamp(12px,3vw,24px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 70vh;
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(12px,3vw,24px);
    text-align: center;
    padding: clamp(24px,4vw,40px) 0;
}

.hero-text h1 {
     font-size: clamp(28px,5.5vw,56px); 
     font-weight: 800; 
    line-height: 1.1;
    margin: 0 auto;
    display: block;
    max-width: 960px;
}

.hero-text h2 {
    font-size: clamp(20px,4.8vw,30px);
    margin: 10px auto 0;
    font-weight: 500;
    display: block;
    max-width: 960px;
}

@media (max-width: 600px) {
  .hero {
    padding: clamp(40px,12vw,64px) clamp(12px,6vw,22px) !important;
    margin: clamp(8px,3vw,14px) clamp(10px,4vw,18px) clamp(14px,4vw,22px) !important;
    min-height: auto !important;
  }
  .hero-text h1 {
    font-size: clamp(26px,7vw,40px);
  }
  .hero-text h2 {
    font-size: clamp(17px,6.5vw,24px);
  }
  .contenttext {
    font-size: clamp(24px,6.5vw,36px);
  }
  .hero-gun {
    top: 44%;
    width: clamp(84px,16vw,120px);
  }
  .hero-coffee {
    width: clamp(84px,16vw,120px);
    bottom: clamp(8px,7vw,24px);
  }
}

.hero-text span,
.hero-text strong {
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: clamp(30px,5.8vw,60px);
}

/* Underline effect */
.hero-text span:hover,
.hero-text strong:hover {
    text-decoration: underline;
}

/* GUN POSITION */
.hero-gun {
    width: clamp(98px,13vw,150px);
    position: absolute;
    top: 46%;
    left: clamp(12px,5vw,70px);
    transform: translateY(-50%) rotate(-12deg);
}

/* COFFEE POSITION */
.hero-coffee {
    width: clamp(98px,12vw,150px);
    position: absolute;
    bottom: clamp(16px,6vw,60px);
    right: clamp(14px,5.5vw,70px);
}

/* Hover animations */
.hero:hover .hero-gun {
    animation: gun-shot 0.4s ease-out;
}

.hero:hover .hero-coffee {
    animation: coffee-steam 1.2s ease-in-out infinite alternate;
}

@keyframes gun-shot {
    0% { transform: translateY(-50%) rotate(-12deg); }
    35% { transform: translate(12px, -56%) rotate(-6deg) scale(1.02); }
    70% { transform: translate(-6px, -50%) rotate(-14deg); }
    100% { transform: translateY(-50%) rotate(-12deg); }
}

@keyframes coffee-steam {
    0% { transform: translateY(0); filter: brightness(1); }
    100% { transform: translateY(-6px); filter: brightness(1.08); }
}

/* Smooth background fade */
.hero.hovered {
    background-size: cover;
    background-position: center;
}
/* Default text */
.hover-change {
    cursor: pointer;
    font-weight: 900;
    transition: .3s ease-in-out;
    position: relative;
}

/* Yellow highlight box on hover */
.hover-change.active {
    background: #ffe600;
    padding: 8px 16px;
    border-radius: 6px;
    /* z-index: 3; */
}

/* Keep only the hovered word visible */
.hover-change.active {
    opacity: 1 !important;
    background: #ffec00;
    padding: 8px 16px;
    border-radius: 6px;
    color: #000;
    z-index: 3;
}
/* .hero.hero-hover:has(.hero-gun:hover) .hero-text {
    opacity: 0; 
    pointer-events: none;
} */

 
/* When hero-hover is active, hide everything */
.hero.hero-hover .contenttext,
.hero.hero-hover .hover-change {
    opacity: 0;
}

/* Keep the hovered element visible */
.hero .hover-change.active {
    opacity: 1;
}

.contenttext {
    margin-right: 16px;
    font-weight: 200;
    font-size: clamp(26px,5.8vw,52px);
}


/* Hide all images during hover */
.hero.hero-hover img {
    opacity: 0;
    transition: .3s;
}

/* Section Background */
/* Container */
.case-section {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  font-family: Arial, sans-serif;
  gap: clamp(18px,3vw,28px);
  margin: clamp(24px,4vw,48px) clamp(12px,3vw,32px);
  padding-top: clamp(20px,3vw,36px);
  scroll-margin-top: calc(var(--header-height, 118px) + 12px);
}

/* Left side */
.case-left {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-radius: 14px;
}

/* Background area that changes */
.case-left-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(40%);
}

.case-title {
  position: absolute;
  top: 24px;
  left: 32px;
  color: #fff;
  font-size: clamp(22px,3vw,32px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

/* List over the background */
.case-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: clamp(70px,7vw,120px) clamp(32px,6vw,80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(8px,1.8vw,14px);
  width: 100%;
  box-sizing: border-box;
}

.case-item {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(22px,4vw,38px);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease, transform 0.2s ease;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.case-item:hover {
  color: #ffd800;
  transform: translateX(5px);
}

.case-item.active {
  color: #ffd800;
}

/* Right side */
.case-right {
  flex: 1;
  padding: clamp(40px,6vw,80px) clamp(24px,5vw,60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  gap: 20px;
  border-radius: 14px;
}

.case-right-title {
  color: #ffcc00;
  font-size: clamp(24px,3vw,32px);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.case-right-img-wrap {
  width: clamp(240px,40vw,340px);
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.case-right-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.case-right-img-wrap img:hover {
  transform: scale(1.03);
}

.case-right-caption {
  margin-top: 6px;
  font-size: 15px;
  color: #444;
  text-align: center;
  max-width: 360px;
}

/* Basic responsiveness */
@media (max-width: 1024px) {
  .case-section {
    flex-direction: column;
  }
  .case-left,
  .case-right {
    min-height: 360px;
  }
  .case-list {
    padding-top: clamp(40px,8vw,80px);
  }
}

@media (max-width: 640px) {
  .case-section {
    margin: 16px 10px;
  }
  .case-list {
    padding: 40px 18px;
  }
  .case-item {
    font-size: clamp(18px,5vw,28px);
  }
}

.cta-cards {
    display: flex;
    justify-content: center;
    gap: clamp(16px,3vw,30px);
    padding: clamp(40px,6vw,80px) clamp(20px,5vw,60px);
    flex-wrap: wrap;
    scroll-margin-top: calc(var(--header-height, 118px) + 12px);
}

.cta-cards .card {
    width: clamp(260px,32vw,320px);
    min-height: 360px;
    padding: 32px 28px;
    color: white;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.cta-cards .card h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: bold;
}

.cta-cards .card p {
    margin-top: 10px;
    font-size: 16px;
    opacity: .9;
}

.cta-cards .card img {
    width: 160px;
    position: absolute;
    bottom: -5px;
    right: -10px;
    transition: .3s ease;
}

/* Colors */
.card.red {
    background: #b51d1d;
}
.card.blue {
    background: #016fb9;
}
.card.purple {
    background: #5c2b8e;
}

/* Hover Effects */
.cta-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0,0,0,.25);
}

.cta-cards .card:hover img {
    transform: scale(1.1) translateY(-5px);
}
@media(max-width: 900px) {
    .cta-cards {
        justify-content: flex-start;
    }
}
.boat{
    margin-top: 2px;
    height:110px;
    width:100%;
}
.boat1{
    
    height:120px;
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 66vw;
    z-index: -1;

}

/* SECTION CONTAINER */
.awards-frame {
  padding: 90px 0 80px;
  background-color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  scroll-margin-top: calc(var(--header-height, 118px) + 12px);
}

.awards-frame__border {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 60px 60px 70px;
  border: 4px solid #000;
  border-radius: 6px;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
}

.awards-frame__corner-left,
.awards-frame__corner-right {
  position: absolute;
  width: 180px;
  max-width: 22%;
  z-index: 1;
}

.awards-frame__corner-left {
  left: -4px;
  top: -31px;
}

.awards-frame__corner-right {
  right: -1px;
  bottom: -30px;
}

.awards-frame__inner {
  position: relative;
  z-index: 2;
}

.awards-frame__top {
  display: grid;
  grid-template-columns: auto 1.2fr 1fr auto;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 36px;
}

.awards-frame__headline {
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  color: #000;
}

.awards-frame__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #f4cc00;
  background: #fff;
  color: #f4cc00;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.awards-frame__arrow:hover {
  background: #f4cc00;
  color: #000;
  transform: translateY(-2px);
}

.awards-frame__hero {
  position: relative;
  justify-self: center;
  width: 420px;
  max-width: 100%;
}

.awards-frame__hero::before {
  content: "";
  position: absolute;
  inset: 14% 10%;
  background: #ffd800;
  border-radius: 50%;
  z-index: 0;
}

.awards-frame__hero-img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  z-index: 1;
}

.awards-frame__slider {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.awards-frame__slide {
  display: none;
}

.awards-frame__slide--active {
  display: block;
}

.awards-frame__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  row-gap: 18px;
}

.awards-frame__slide-heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.awards-frame__col p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 6px;
  color: #222;
}

.awards-frame__brand {
  color: #0099ff;
  font-weight: 700;
}

@media (max-width: 992px) {
  .awards-frame {
    padding: 50px 0;
  }
  .awards-frame__border {
    padding: 40px 24px 50px;
  }
  .awards-frame__top {
    grid-template-columns: 1fr;
    row-gap: 24px;
    text-align: left;
  }
  .awards-frame__headline {
    font-size: 32px;
  }
  .awards-frame__hero {
    width: 320px;
  }
  .awards-frame__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .awards-frame__headline {
    font-size: 26px;
  }
  .awards-frame__arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 12px 0;
    gap: 10px;
  }
  .contenttext {
    font-size: clamp(22px,7vw,34px);
    margin-right: 0;
  }
  .hero-text span,
  .hero-text strong {
    font-size: clamp(22px,6vw,34px);
  }
  .hero-gun,
  .hero-coffee {
    position: absolute;
    width: clamp(74px,18vw,110px);
  }
  .hero-gun { left: -22px; top: 12%; }
  .hero-coffee { right: -21px; bottom: -36px; }

  .case-section {
    padding-top: 12px;
    gap: 12px;
  }
  .case-left,
  .case-right {
    min-height: 320px;
    padding: 12px;
  }
  .case-right {
    padding: 22px 16px;
    gap: 12px;
  }
  .case-right-title {
    font-size: 20px;
  }
  .case-right-img-wrap {
    width: 100%;
    max-width: 260px;
  }
  .case-list {
    padding: 30px 16px;
    gap: 8px;
  }
  .case-item {
    font-size: 18px;
  }

  .cta-cards {
    padding: 32px 12px;
    gap: 12px;
  }
  .cta-cards .card {
    width: 100%;
    min-height: 0;
  }

  .awards-frame {
    padding: 40px 0;
  }
  .awards-frame__border {
    padding: 28px 16px 34px;
  }
  .awards-frame__top {
    row-gap: 12px;
  }
  .awards-frame__headline {
    text-align: center;
  }
  .awards-frame__hero {
    width: 220px;
  }
  .awards-frame__cols {
    grid-template-columns: 1fr;
  }
  .awards-frame__slide-heading {
    text-align: center;
  }
}

/* Yellow Bubble Hover Animation */
.bubble-hover {
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 1;
  transition: color 0.3s ease;
}

/* The bubble */
.bubble-hover::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%) scale(0);
  width: 55px;
  height: 55px;
  background: #ffe588;
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.35s cubic-bezier(.75,-0.5,0,1.75);
  opacity: 0;
}

/* Hover effect */
.bubble-hover:hover {
  color: #000;  /* text turns black on hover */
}

.bubble-hover:hover::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
