/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

nav{ top:0px;}

.main-slider-image{ position: relative;}
.main-slider-image .hero-btn{ ;position: absolute;  bottom:15%; left: 50%; transform: translateX(-50%)}
.services-parallax {
  background: linear-gradient(
    180deg,
    #FBF7F3 0%,
    #F4ECE6 100%
  );
}


.services-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero.png") center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.services-parallax > * {
  position: relative;
  z-index: 1;
}

/* =========================
   SUGAR COMMS HERO
========================= */



.comms-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.comms-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem,6vw,5rem);
  color: #7c5a60;
}

/* =========================
   CONTENT HERO
========================= */


/* =========================
   DIGIVERSE HERO
========================= */


.digiverse-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,241,234,.65);
}

.digiverse-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
/* ================================
   SUGAR EDGE – FIXED LAYOUT
================================ */
/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: serif;
  font-size: 22px;
  color: #4b3a3a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #4b3a3a;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav-btn {
  padding: 10px 18px;
  border: 1px solid #4b3a3a;
  border-radius: 999px;
}

/* ===============================
   HERO – FADE IMAGE BANNER
================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px; /* navbar space */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* BACKGROUNDS */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
   background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 9s infinite;
}



/* CHANGE THESE IMAGES */
.bg1 {
  background-image: url("../images/HOMEBANNER3SBBBB.png");
  animation-delay: 0s;
}
.bg2 {
  background-image: url("../images/HOMEBANNER2SB.png");
  animation-delay: 3s;
}
.bg3 {
  background-image: url("../images/HOMEBANNER3SB.png");
  animation-delay: 6s;
}

/* FADE ANIMATION */
@keyframes heroFade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin-top: 0;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #4a3a34;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #6a5b55;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 14px 38px;
  background: #6b4b5a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: all 0.3s ease;
	white-space:nowrap
}

.hero-btn:hover {
  background: #533845;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #7a6a63;
}
/* ==============================
   SUGAR EDGE – SPLIT SECTION
================================ */

/* ===============================
   SUGAR EDGE – FULL SPLIT SECTION
   =============================== */

.sugar-edge {
  width: 100%;
  min-height: auto;        /* ❌ 100vh hatao */
  margin: 0;
  padding: 0;
}


.sugar-edge-grid {
 width: 100%; display: flex;
}


/* LEFT IMAGE */
.sugar-edge-image {flex:0 0 50%; padding:8rem; background-image: url("../images/veed-bg.jpg"); background-repeat: no-repeat; background-size: cover;}
.sugar-edge-image video{ width: 100%;}

/* RIGHT CONTENT */
.sugar-edge-content {
 flex:0 0 50%;
  background: #E6D6CB;
  padding: 48px 56px;   /* ❌ 60px kam */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.sugar-edge-content .eyebrow {
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 16px;
  color: #6b4a3a;
}

.sugar-edge-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #050505;
}

.sugar-edge-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 14px;
  color: #5c4033;
}

.edge-btn {
  margin-top: 24px;
  display: inline-block;
  padding: 14px 32px;
  background: #2f2f2f;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}
/* ===============================
   SERVICES SECTION (SHOWCASE)
================================ */

.services-section {
  background: #F5EFE6;
  padding: 72px 0;
}

.services-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-eyebrow {
  display: block;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #8D6E63;
  margin-bottom: 12px;
}

.services-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 500;
  color: #3E2723;
  margin-bottom: 40px;
}

/* Grid */
.services-grid {
	 width: 100%;
  display:flex;
 flex-wrap: wrap;
  gap: 48px 40px;
}

/* Card */
.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
	flex:0 0 48.55%;
}
.service-card  a{ display: inline-block}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;   /* ✨ MAGIC LINE */
  overflow: hidden;
  background: #E6DDD3;
}


.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

/* Text */
.service-card h3 {
  margin-top: 28px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #3E2723;
}

.service-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #6D5C53;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
 
    gap: 70px;
  }

  .service-image {
    height: auto;
  }

  .services-header h2 {
    font-size: 40px;
  }
}
/* =========================
   WORK / TRUSTED BY SECTION
========================= */

.work-section {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* LEFT IMAGE */
.work-image {
  flex: 1;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT: no cutting line */
  display: block;
}

/* RIGHT CONTENT */
.work-content {
  flex: 1;
  background-color: #EADAD0; /* same beige as reference */
  padding: 6rem;
	 display: flex; align-items: center; justify-content: center;
}

/* TRUSTED BY */
.work-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #3E2723;
  margin-bottom: 2rem;
 text-align: center;
}

/* BRAND NAMES */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 logos per row */
  gap: 40px 50px; /* row gap | column gap */
  align-items: center;
  justify-items: center;
  margin-top: 40px;
	 margin: 0 auto;
}

.brand-grid img {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.brand-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .work-section {
    flex-direction: column;
  }

  .work-image,
  .work-content {
    width: 100%;
    min-height: 50vh;
  }

  .work-content {
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
  }

  .brand-list {
    justify-content: center;
  }
}
/* FORCE RESET */
section.sugar-edge {
  margin: 0 !important;
  padding: 0 !important;
  min-height: unset !important;
}

.sugar-edge-content {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}
.brand-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 560px;   /* 👈 keeps it elegant, not stretched */
}

.brand-grid img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brand-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===============================
   SUGAR COMMS PAGE
================================ */
/* ===========================
 /* =========================
   SUGAR COMMS — EDITORIAL
========================= */

/* SECTION 1 */
.editorial-hero {
  min-height: 25vh;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  background: #F5EFE6;
}

.editorial-title {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-title span {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: #6b4a3a;
}

.editorial-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  letter-spacing: 4px;
  writing-mode: vertical-rl;   /* 👈 MAGIC */
  text-orientation: mixed;
  transform: rotate(180deg);   /* 👈 makes it read bottom-up */
}


.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION 2 */
.editorial-content {
  background: #E6D6CB;
  padding: 120px 160px;
}

.editorial-content .lead {
  font-size: 20px;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 40px;
}

.editorial-content p {
  font-size: 16px;
  line-height: 1.9;
  max-width: 720px;
  margin-bottom: 24px;
  color: #5c4033;
}

/* SECTION 3 */
.editorial-contact {
  background: #2f2f2f;
  color: #fff;
  padding: 120px 160px;
}

.editorial-contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.editorial-contact p {
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  font-size: 14px;
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #fff;
  color: #2f2f2f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  text-decoration: none;
}
.hero-content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centers text vertically */
  padding-left: 6rem;
}




/* Move scroll indicator to bottom */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 2px;
  font-size: 12px;
  opacity: 0.7;
}

@media ( max-width: 1920px) {

}

@media only screen and (min-width : 1824px){
.container {max-width:93rem;}
	
}	

@media ( max-width: 768px) {
		.main-slider-image .hero-btn{ bottom: 5%;}
	.sugar-edge-grid { width: 100%;display: flex;flex-wrap: wrap;}
	.sugar-edge-image{flex: 0 0 100%; padding: 1rem;}
	.sugar-edge-content{flex: 0 0 100%;}
	.services-wrapper{max-width: 100%;}
	.services-grid{ display: inherit;}
	.service-card{ flex: 0 0 100%}
	.service-card h3{ margin-top: 10px;}
	.cont-service{ width: 100%; padding: 0 15px 20px;}
	.sugar-edge-content h2{ font-size: 35px;}
	.sugar-edge-content{padding: 30px 15px;}
	.sugar-edge-content p{text-align:justify;}

}

@media (max-width: 480px){
	.main-slider-image .hero-btn{ bottom: 5%;}
	.sugar-edge-grid { width: 100%;display: flex;flex-wrap: wrap;}
	.sugar-edge-image{flex: 0 0 100%; padding: 1rem;}
	.sugar-edge-content{flex: 0 0 100%;}
	.services-wrapper{max-width: 100%;}
	.services-grid{ display: inherit;}
	.service-card{ flex: 0 0 100%}
	.service-card h3{ margin-top: 10px;}
	.cont-service{ width: 100%; padding: 0 15px 20px;}
	.sugar-edge-content h2{ font-size: 35px;}
	
	.sugar-edge-content{padding: 30px 15px;}
	.sugar-edge-content p{text-align:justify;}

	
}

