* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
}

body,
html {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: yellow;
  border-radius: 50%;
  border-color: black;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: background-color 0.2s ease;
}

@font-face {
  font-family: 'Newyork';
  src: url('newyork.otf') format('opentype');
  /* font-weight: 400;
    font-style: normal; */
}

/* Hide default cursor globally */
body,
* {
  cursor: none !important;
}

/* Default styles (optional fallback) */
body {
  background-color: black;
  color: black;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Responsive GIF size */
#preloader img {
  width: 20vw;
  /* 20% of viewport width */
  max-width: 150px;
  /* max size */
  min-width: 80px;
  /* min size */
  height: auto;
}

/* Fade out */
#preloader.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}



/* Header */
/* Dot */
.animated-text {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-left: -10px;
  position: relative;
  margin-top: 5px;
}

.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  margin-left: 0px;

  animation: blink 1.5s infinite;
  vertical-align: middle;
}

.changing-text {
  font-size: 18px;
  margin-left: 3px;

}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.main-header {
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.171);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  font-family: 'Raleway', sans-serif;
}

/* .left-section {
  display: flex;
  align-items: center;
   
} */

/* width: 100%;
  height: 80px; */
/* .logo-img {
  
  width: 200px;
  height: auto;
  object-fit: cover;
  margin-right: 10px;
} */
  /* .logo-img {
  width: 200px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  
} */
 
 .left-section {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-wrapper {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 25px;
  font-weight: 500;
}

.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

/* NavBar */
.navbar {
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
}

/* Wrapper for hover area */
.services-wrapper {
  position: relative;
}

/* Caret icon */
.services-link .caret {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Panel full width */
.services-panel {
  position: fixed;
  top: 55px;
  left: 0;

  width: 100vw;
  background: white;
  display: none;
  padding: 40px 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  justify-content: space-between;
}


/* Panel Layout */
.services-panel .left-content {
  width: 25%;
}

.services-panel .left-content ul {
  list-style: none;
  padding: 0;
}

.services-panel .left-content li {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

/* Right Content (Cards) */
.services-panel .right-content {
  width: 70%;
  display: flex;
  gap: 30px;
}

.services-panel .card {
  width: 50%;
  border-radius: 14px;
  overflow: hidden;
}

.services-panel .card img {
  width: 100%;
  height: 260px;
  display: block;
  border-radius: 14px;
}

.services-panel .card p {
  font-size: 14px;
  margin-top: 12px;
  color: #333;
}

.left-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  text-align: left;
  flex-direction: column;
  /* gap: 25px; */
}

.left-content li {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease;
}

.left-content li a {
  text-decoration: none;
  color: inherit;
}

/* When hovering on any li, others turn grey */
.left-content ul:hover li {
  color: black;
}

/* Keep the hovered one black */
.left-content ul li:hover {
  /* color: black; */
  color: blue;
}

.services-link {
  display: inline-flex;
  align-items: center;
  color: white;
  /* or your text color */
  text-decoration: none;
  gap: 4px;
  /* spacing between Services and ^ */
}

.services-link .caret {
  display: inline-block;
  font-size: 25px;
  line-height: 1;
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-top: 5px;
  /* optional fine-tuning */
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  /* ▼ default */
  transition: transform 0.3s ease;
  margin-left: 8px;
  font-size: 20px;
  color: white;
}


.services-link:hover .arrow {
  transform: rotate(-135deg);
}

/* MOBILE ONLY VISIBILITY */
.mobile-nav-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-wrapper {
    display: block;
  }
  #custom-cursor
  {
    display: none;
  }

  .main-header>.left-section,
  .main-header>.right-section {
    display: none;
  }

  .logo-img {
    width: 120px;
    height: auto;
    object-fit: cover;
    margin-right: 10px;
  }
}


.top-bar {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0);
  z-index: 1001;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* .left-section {
  display: flex;
  align-items: center;
} */

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hamburger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-menu.open {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.menu-header .left-section {
  flex-grow: 1;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list>li {
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
}

.menu-list a,
.menu-list button {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0;
}

.submenu {
  font-family: 'Raleway', sans-serif;
  display: none;
  list-style: none;
  padding-left: 16px;
  margin-top: 10px;
}

.submenu li {
  padding: 6px 0;
}

.contact-button {
  margin-top: 24px;
  text-align: center;
}

.contact-button a {
  display: inline-block;
  background: black;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px; /* Increase font size */
  text-align: left; /* Align content to the left */
}

.menu-list li {
  margin-bottom: 10px;
}

.menu-list li a,
.menu-list li button {
  text-decoration: none;
  font-size: 18px;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.submenu {
  display: none; /* Hidden by default */
  margin-left: 20px; /* Add left margin to submenu */
 
  padding-left: 20px;
}

.dropdown.active .submenu {
  display: block;
}


/* Video */
.video-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: left;
  justify-content: left;
  color: white;
  text-align: center;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5);  */
  z-index: 1;
}

.video-section video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}

.video-section .video-overlay {
  position: absolute; /* changed from relative */
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding-left: 2rem;
}

.video-section .video-overlay h2 {
  color: white;
  text-align: left;
  /* padding-top: 185px; */
  justify-content: center;
  margin-left: -20px;
  font-size: 45px;
  line-height: 1.2;
  font-family: 'Bebas Neue', serif;
  font-weight: bold;
}

.video-overlay strong {
  color: rgb(178, 227, 255)
}

@media (max-width: 768px) {
  .video-section {
    height: 80vh;
  }

  .video-section video.hero-video {
    object-fit: cover;
  }

  .video-section .video-overlay h2 {
    margin-top: 110px;
    margin-left: -30px;
    font-size: 30px;
    color: #000;
  }

  .video-overlay strong {
    color: rgb(32, 74, 99)
  }
}


/* Logo section */
.logo-carousel-section {
  overflow: hidden;
  background: black;
  position: relative;
  padding: 20px 0;
  width: 100%;
  margin: auto;
}

.logos p {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 50px;
  font-family: 'Playfair Display', sans-serif;
  font-size: 38px;
  font-weight: bold;
}

.logos {
  position: relative;
  max-width: 1400px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

.logo-slide {
  display: flex;
}

.logo-slide img {
  height: 100px;
  margin-right: 30px;
  user-select: none;
  pointer-events: none;
}

/* Animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Fade Shadows on Left and Right */
.logos::before,
.logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, black, rgba(255, 255, 255, 0));
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, black, rgba(255, 255, 255, 0));
}

/* About Us */
.card-front {
  display: none;
}

.card-back {
  position: relative;
  transform: none;
  backface-visibility: visible;
}

.profile-contact-section {
  scroll-margin-top: 100px;
  font-family: sans-serif;
  background: black;
  color: white;
  padding: 4rem 1rem;
}

.profile-contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: auto;
}

/* Card Styles */
.card-wrapper {
  perspective: 1000px;
  cursor: pointer;
  height: 550px;
  width: 500px;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card.flip {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 2px solid white;
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-front .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-face h3 {
  font-family: 'Playfair Display', sans-serif;
  margin-top: 20px;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-front .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
  z-index: 2;
}

.card-front .name {
  font-size: 35px;
  padding-bottom: 40px;
  font-weight: bold;
}

.card-front .info {
  font-size: 20px;
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  z-index: 3;
  color: white;
}

.card-back {
  background-color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  text-align: left;
  color: black;
  position: relative;
}

.card-back h3 {
  font-size: 26px;
  color: #0088FF;
  margin-bottom: 1rem;
  text-align: center;
}

.card-back strong,
h4 {
  color: #0088FF;
}

.scrollable-content {
  overflow-y: auto;
  max-height: 440px;
  /* Fits within card height */
  padding-right: 1rem;
  font-size: 16px;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: gray transparent;
}

/* WebKit scrollbar styling */
.scrollable-content::-webkit-scrollbar {
  width: 6px;
}

.scrollable-content::-webkit-scrollbar-thumb {
  background-color: #ffd700;
  border-radius: 4px;
}

.scrollable-content ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.scrollable-content ul li {
  margin-bottom: 0.4rem;
}

/* Contact Form Styles */
.contact-form1 {
  font-family: 'Montserrat', sans-serif;
  background: #f8fafc;
  color: black;
  padding: 2rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 8px 8px 0 #3b82f6;
  /* Blue shadow */
  width: 700px;
}

.contact-form1 h2 {
  font-family: 'Playfair Display', sans-serif;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.calendly-container {
  min-width: 100%;
  padding: 20px;
  background-color: #f5f5f5;
  /* Optional: subtle background */
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.calendly-inline-widget {
  min-width: 100% !important;
  height: 450px;
}

/* Responsive */
@media (max-width: 768px) {
  .calendly-inline-widget {
    height: 450px;
  }

  .calendly-container {
    padding: 10px;
    border-radius: 10px;
  }

  .calendly-inline-widget {
    height: 420px;
  }

  .card-wrapper {
    height: 450px;
    width: 300px;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Optional: keeps content stacked vertically */
  }

  .card-front .name {
    padding-bottom: 40px;
  }

  .profile-contact-section .container {
    grid-template-columns: 1fr;
  }

  .form-group {
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .card-wrapper {
    height: 450px;
    width: 300px;
  }

  .card-front .name {
    padding-bottom: 40px;
  }

  .profile-contact-section .container {
    grid-template-columns: 1fr;
  }

  .form-group {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .card-wrapper {
    max-width: 350px;
    height: 420px;
  }

  .contact-form1 {
    width: 95%;
  }

  .contact-form1 h2 {
    font-size: 24px;
  }

  .card-back h3 {
    font-size: 22px;
  }

  .card-face h3 {
    font-size: 20px;
  }

  .card-front .name {
    font-size: 28px;
  }

  .card-front .info {
    font-size: 16px;
  }
}

/* Hero section 1 */
.hero-section1 {
  position: relative;
  overflow: hidden;
  padding: 150px 20px;
  text-align: center;
  font-family: 'Playfair Display ', sans-serif;
  color: white;
  padding-top: 0;
  background-color: black;
  height: 300px;
  /* or set a fixed height that equals padding + content height */
}

.hero-section1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* this will crop and scale the image */
  z-index: 0;
  border-radius: 10px;
  /* optional, but may look weird with absolute positioning */
}

.hero-section1 h1 {
  position: relative;
  z-index: 1;
  font-size: 48px;
  color: white;
  font-family: 'Playfair Display', sans-serif;
  letter-spacing: 3px;
  line-height: 1.4;
  margin-bottom: 30px;
  margin-top: 80px;
  text-align: left;
  margin-left: 100px;
}

.hero-section1 p {
  color: white;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  margin-left: 100px;
  margin-top: 20px;
  text-align: left;
  z-index: 1;
  position: relative;
}

.hero-section1 button {
  background-color: #0088FF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-left: 0px;
  text-align: left;
  display: block;
  margin-left: 100px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px 40px 20px;
    height: 550px;
  }

  .hero-section h1 {
    font-size: 45px;
    text-align: left;
    margin-left: 0;
    margin-top: 20px;
  }

  .hero-section p {
    font-size: 16px;
    text-align: left;
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-section1 {
    padding: 100px 20px 40px 20px;
    height: 450px;
  }

  .hero-section1 h1 {
    font-size: 45px;
    text-align: left;
    margin-left: 0;
    margin-top: 5px;
  }

  .hero-section1 p {
    font-size: 16px;
    text-align: left;
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-section1 button {
    margin-left: 10px;
  }
}

/* Plots we have narrated*/
#carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  background-color: black;
}

#carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 106%;
  /* Hide scrollbar (cross-browser) */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

#carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.card1 {
  width: 380px;
  height: 80vh;
  padding: 2rem 1rem;
  background-color: #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #d1d5db;
}

.card1:last-child {
  border-right: none;
}

.card1 h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.card1 p {
  margin: 0;
}

#hover-text {
  position: absolute;
  display: none;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 1000;
  width: 100px;
  height: 30px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

#hover-text-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  #carousel {
    flex-direction: column !important;
    /* stack cards vertically */
    width: 100% !important;
    overflow-x: visible !important;
    /* no horizontal scroll */
    align-items: center;
  }

  .card1 {
    width: 80% !important;
    /* full container width */
    max-width: none !important;
    height: auto !important;
    /* auto height for content */
    margin-bottom: 1rem;
    /* spacing between cards */
    border-right: none !important;
    /* remove vertical borders */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
    transition: none !important;
    /* remove hover animations */
    cursor: default !important;
    border-radius: 16px;
  }

  .card1:hover {
    color: black !important;
    /* disable hover text color */
  }

  .thinknest {
    background-color: #008BC1;
    color: #FFFFFF;
  }

  .esmee-clinics {
    background-color: #FDD017;
    color: #FFFFFF;
  }

  .dolphin-group {
    background-color: #dc3131;
    color: #FFFFFF;
  }

  .picklex {
    background-color: #5ff700af;
    color: #FFFFFF;
  }

  .doctor’s-apothecary {
    background-color: #FF9FAE;
    color: #FFFFFF;
  }

  .vertexum-finance {
    background-color: #77c35f;
    color: #FFFFFF;
  }

  .abhay-fire-solutions {
    background-color: #dc3545;
    color: #FFFFFF;
  }

  .trinity-corp {
    background-color: #f3c11c;
    color: #FFFFFF;
  }

  #hover-text {
    display: none !important;
    /* disable hover text on small screens */
  }
}

/* Secret Sauce */
/* Our Secret Sauce */
.sauce-container {
  background-color: #000;
  padding: 2rem;
  max-width: 1500px;
  margin: auto;
  overflow: hidden;
}

.sauce-title {
  color: white;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.sauce-card-box {
  perspective: 1000px;
  height: 360px;
  transition: transform 0.3s ease;
}

.sauce-card-box:hover {
  transform: translateY(30px);
}

.sauce-card {
  width: 100%;
  height: 100%;
}

.sauce-card .sauce-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.sauce-card.flipped-sauce .sauce-card-inner {
  transform: rotateY(180deg);
}

.sauce-front,
.sauce-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.sauce-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sauce-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  font-size: 1.25rem;
  padding: 1rem;
  font-weight: bold;
}

.sauce-back {
  background: white;
  color: black;
  padding: 1.5rem;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.sauce-next-btn {
  background-color: #000;
  border-radius: 12px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.sauce-next-btn:hover {
  transform: translateY(10px);
}

.sauce-next-btn img {
  max-width: 70%;
  max-height: 70%;
}

@media (max-width: 768px) {
  .sauce-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sauce-card-box {
    height: 300px;
  }

  .sauce-title {
    font-size: 30px;
    text-align: center;
  }

  .sauce-next-btn {
    height: 300px;
  }

  .sauce-overlay {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .sauce-back {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* FOOTER */
/* ===== FOOTER BASE STYLING ===== */
.footer {
  background-color: #000;
  /* Black background */
  color: #fff;
  padding: 50px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1350px;
  width: 100%;
  gap: 200px;
}

/* ===== CONTACT FORM STYLING ===== */
.contact-form-wrapper {
  background-color: #fff5e9;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 5px 5px 0 #3b82f6;
  /* Blue shadow */
  max-width: 400px;
  flex: 1;
}

.contact-form h2 {
  color: #000;
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #ddd;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

/* ===== FOOTER LINKS SECTION ===== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 75px;
  flex: 2;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===== ICON STYLING ===== */
.icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

/* ===== BRANDING AND SOCIAL ICONS ===== */
.footer-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
}

.footer-brand p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a img {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    justify-items: center;
    gap: 30px 30px;
    /* row-gap: 15px, column-gap: 30px */
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }
}
