/* ===== THEME VARIABLES ===== */

/* Light Theme */
:root {
  --bg-main: #ffffff;
  --bg-section: #f9fafb;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.7);

  --text-main: #111111;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --border-soft: rgba(0, 0, 0, 0.08);

  --accent: #ff4ecd;
  --accent-2: #9b5dcd;

  /* Button / UI colors (merged) */
  --bg-color: #ffffff;
  --text-color: #111111;
  --btn-bg: #f0f0f0;

  /* header sizing used to offset page content when headers are fixed */
  --top-header-height: 50px; /* height reserved for .top-header (approx) */
  --navbar-height: 75px; /* height of .navbar-custom */
}

/* Dark Theme */
.dark-theme {
  --bg-main: #000000;
  --bg-section: #050505;
  --bg-card: #0f172a;
  --bg-glass: rgba(0, 0, 0, 0.65);

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-light: #9ca3af;

  --border-soft: rgba(255, 255, 255, 0.08);

  --accent: #ff4ecd;
  --accent-2: #aa42ff;

  /* Button / UI colors (merged) */
  --bg-color: #0f172a;
  --text-color: #f8fafc;
  --btn-bg: #1e293b;
}

/* Apply VARIABLES to BODY (GLOBAL) */
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  transition:
    background 0.35s ease,
    color 0.35s ease;

  /* ensure page content starts below fixed headers */
  padding-top: calc(var(--top-header-height) + var(--navbar-height));
}

/* =========================================================== */
/* Navbar CSS moved to navbar.css */

/* ========================================================== */
.hero-right .card,
.industry-card,
.why-card {
  background: var(--bg-card);
  color: var(--text-main);
}

.hero-right .card-title,
.industry-card h3,
.why-card h3 {
  color: var(--text-main);
}

.hero-right .card-text,
.why-card p {
  color: var(--text-muted);
}
.feature-section,
.why-bellflower {
  background: var(--bg-section);
  color: var(--text-main);
}

.intro,
.feature,
.whatToDo,
.WhyBellFlower,
.OurPortfolio,
.contact {
  /* height: 45rem; */
  width: 100%;
}
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
}
.img-one {
  transform: translateY(30px);
}

.img-two {
  transform: translateY(-10px);
}

.img-three {
  transform: translateY(40px);
}

.hero-right {
  display: flex;
  gap: 25px;
  align-items: center; /* ✅ vertical alignment */
  justify-content: flex-start;
}

.hero-right .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.hero-right .card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.hero-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(155, 93, 205, 0.25));
  transition: transform 0.4s ease;
  border-radius: 25px;
}
.hero-img:hover {
  transform: translateY(-10px) scale(1.04);
}

.hero-right .card:hover::after {
  opacity: 0.7;
}

.hero-right .card .btn {
  background: #9b5dcd;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-right .card .btn:hover {
  background: #ff00ea;
  transform: scale(1.05);
}

.hero-left {
  padding-left: 10%;
  /* width: fit-content; */
}

/* Content on top */
.content {
  position: relative;

  z-index: 10;
  text-align: left;
  font-size: 5rem;
  top: 20%;
  left: 12%;
}
.head {
  color: #9b5dcd;
  margin-bottom: 0px;
}
.con {
  margin-top: 0px;
  line-height: 0;
  font-weight: lighter;
  position: relative;
  font-size: 45%;
}
#para {
  font-family:
    lato, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 300;
  line-height: normal;
  font-size: 20px;
  width: 70%;
  margin-top: 50px;
  text-align: justify;
}
.material-symbols-outlined {
  position: relative;
  top: 20%;
}

.button .btn {
  border-radius: 25px;
  padding: 10px;
  height: 3.5rem;
  width: 10rem;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
}

.text_btn {
  position: relative;
  display: inline-block;
}

.text_btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s ease-in-out;
}

.btn:hover .text_btn::after {
  width: 100%;
}

.hero {
  /* Consolidated hero rule */
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  height: 45rem;
  background: var(--bg-section);
  overflow: hidden;
}

/* Common blob */
.blob {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.7;
  top: 50%;
  left: 50%;
  transform-origin: center;
  will-change: transform;
}
.hero-right,
.content {
  z-index: 10;
  position: relative;
}
/* Individual orbits */
.pink {
  background: #ff4ecd;
  animation: orbit1 8s linear infinite;
}

.blue {
  background: #aa42ff;
  animation: orbit2 10s linear infinite;
}

.green {
  background: #990059;
  animation: orbit3 13s linear infinite;
}

/* ==================feature=================== */
.feature-section {
  background: var(--bg-section);
  overflow: visible;
  padding: clamp(40px, 6vw, 100px) 60px;
  text-align: center;
}

.featured-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.featured-subtitle {
  max-width: 800px;
  margin: auto;
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
}
/* Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 121px;
  overflow: visible; /* IMPORTANT */
  align-items: center;
  justify-items: center;
}

/* Main card */
.industry-card {
  position: relative;
  background: transparent; /* remove card background */
  border-radius: 0; /* remove rounded corners */
  padding: 0; /* remove padding */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none; /* remove shadow */
  transition: transform 0.35s ease;
}
.theme-img {
  width: 250px; /* ⬅️ main fix */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.dark-theme .theme-img {
  filter: brightness(1.15) contrast(1.1);
}
.industry-card:hover .theme-img {
  transform: scale(1.08);
  filter: drop-shadow(0 18px 40px rgba(155, 93, 205, 0.45));
}

.industry-card:hover {
  transform: none; /* remove translateY */
  z-index: auto;
}
.industry-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Popup */

.industry-card img,
.theme-img {
  object-fit: contain;
  margin-bottom: 0; /* optional, remove spacing */
  padding: 0; /* remove background padding */
  background: none; /* remove background */
  border-radius: 0; /* remove rounded shape */
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 18px 40px rgba(155, 93, 205, 0.45));
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

/* ++===============================================++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ================= WHY BELLFLOWER ================= */
.why-bellflower {
  background: var(--bg-section);
  padding: 120px 80px;
}

.why-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.why-subtitle {
  font-size: 1.05rem;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 90px;
  line-height: 1.7;
}

/* Grid */
.why-grid {
  display: flex;
  gap: 30px;
  padding: 20px 10px 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.why-grid::-webkit-scrollbar {
  display: none;
}
.why-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card */
.why-card .why-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps the full image visible without cropping */
  border-radius: 0; /* Removes the circular clipping */
  background: transparent !important;
  padding: 0 !important;
}
.why-logo {
  width: 100%; /* Take full width of the card */
  height: 200px; /* Set a clear, tall height for the image area */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important; /* Forces removal of any background */
  padding: 0 !important; /* Removes the squeezed look */
}

.why-card .why-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.why-card {
  background: var(--bg-card);
  border-radius: 22px;
  padding: 20px 25px 35px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  text-align: center;
  overflow: hidden;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  flex: 0 0 320px;
  scroll-snap-align: center;
}
.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(189, 20, 241, 0.3);
}

/* Icon */
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(150, 67, 201, 0.18);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Card content */
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}
.why-card.optional {
  display: block;
}

/* ===== Swipe Slider ===== */

.why-slider {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Active dragging */
.why-grid.active {
  cursor: grabbing;
}
.why-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--btn-bg);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.why-slider .slider-btn:hover {
  background: #bd14f1;
  color: white;
}

.why-slider .slider-btn.left {
  left: -25px;
}
.why-slider .slider-btn.right {
  right: -25px;
}

/* ++++++++++++++++++=============================== */

/* ===================================================== */
/* Container for the slider and buttons */
/* ===== Portfolio Section ===== */
.portfolio-section {
  padding: 100px 0;
  background: var(--bg-main, #fafafa);
}

.portfolio-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
}

/* Header */
.portfolio-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.portfolio-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

.portfolio-header h2 span {
  color: var(--accent);
}

.portfolio-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===== Slider Wrapper ===== */
.portfolio-slider-outer {
  position: relative;
  overflow: visible; /* allow inner scroll */
}

/* Slider Grid: make scrollable like why-grid */
.portfolio-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for portfolio grid (cross-browser) */
.portfolio-grid::-webkit-scrollbar {
  display: none;
}
.portfolio-grid {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Allow horizontal drag on portfolio while preserving vertical page scroll */
.portfolio-slider-outer,
.portfolio-grid {
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}

.portfolio-grid.active {
  cursor: grabbing;
  user-select: none;
}

/* ===== Card ===== */
.portfolio-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--bg-card);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  scroll-snap-align: start;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* Image */
.portfolio-card img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  margin-bottom: 25px;
}

/* Title */
.portfolio-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Scope */
.portfolio-card .scope {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

/* Description */
.portfolio-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-main);
}

/* ===== Slider Buttons ===== */
.portfolio-slider-outer .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--btn-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: 0.3s ease;
}

.portfolio-slider-outer .slider-btn:hover {
  background: var(--accent);
  color: var(--btn-bg);
}

.portfolio-slider-outer .slider-btn.prev {
  left: -15px;
}

.portfolio-slider-outer .slider-btn.next {
  right: -15px;
}

/* ===== Dots ===== */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  background: var(--bg-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots span.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ====================================================== */
/* Circular paths */
@keyframes orbit1 {
  from {
    transform: rotate(0deg) translateX(220px);
  }
  to {
    transform: rotate(360deg) translateX(220px);
  }
}

@keyframes orbit2 {
  from {
    transform: rotate(0deg) translateX(300px);
  }
  to {
    transform: rotate(-360deg) translateX(300px);
  }
}

@keyframes orbit3 {
  from {
    transform: rotate(0deg) translateX(180px);
  }
  to {
    transform: rotate(360deg) translateX(180px);
  }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blob,
  .pink,
  .blue,
  .green,
  .hero-img,
  .why-card,
  .portfolio-card {
    animation: none !important;
    transition: none !important;
  }
}

/* FOOTER */
.footer {
  background: #000000f1;
  color: #ffffff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 40px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
  justify-items: start;
}

/* Brand */
.footer-brand h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  color: var(--accent);
  margin-bottom: 10px;
  text-align: left;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  word-wrap: break-word;
  line-height: 1.6;
  text-align: left;
  max-width: 360px;
}

/* Contact */
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer a {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #f0f0f0;
  word-break: break-word;
}
.footer .policies a,
.footer .services a {
  color: var(--accent-2);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer .policies a::after,
.footer .services a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* move indicator further below text */
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: center;
  transform: scaleX(0);
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.3, 1),
    background 200ms;
  border-radius: 2px;
  opacity: 0.9;
}

.footer .policies a:hover::after {
  transform: scaleX(1);
}
.footer .services a:hover::after {
  transform: scaleX(1);
}
.footer .policies a:hover,
.footer .services a:hover {
  color: var(--accent);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
}

.contact-text {
  word-wrap: break-word;
  white-space: normal;
  display: inline;
}

.contact-right h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  display: none;
}
/* Social */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ff4ecd;
  transform: translateY(-4px);
}

/* Bottom bar */
.footer-bottom,
.footer-bottom a {
  /* margin-top: 50px; */
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  word-wrap: break-word;
}

/* Hero Section */
.wel-section {
  width: 100%;
  padding: 80px 5%;
}

/* Container */
.wel-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side */
.wel-left {
  flex: 1;
}

.wel-left h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wel-left h1 span {
  color: var(--accent-2);
}

.wel-left h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.wel-left p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 25px;
}

/* Button */
.wel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.wel-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Right Side */
.wel-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.wel-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
}

.contact-section {
  padding: 80px 5%;
  background: var(--bg-section);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 25px;
  color: var(--text-color);
}

.contact-item .icon {
  font-size: 22px;
  color: var(--accent-2);
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

/* RIGHT */
.contact-right {
  flex: 1;
}

.contact-form {
  background: var(--bg-main);
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 35px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-color);
}

.contact-form label span {
  color: rgb(255, 0, 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #d4d4d4;
  border: none;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  background: var(--accent-2);
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  color: var(--text-color);
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: var(--accent);
}

/* RESPONSIVE */

/* --- Base Styles for .nav-links (Initial Hidden State) --- */
/* If these are already set, ensure they are compatible with the .active state */
.nav-links {
  position: fixed; /* Ensures it's positioned relative to the viewport */
  top: 0;
  left: -100%; /* Initially hide it off-screen to the left */
  height: 100vh; /* Full viewport height */
  width: 100%; /* Or a specific width for a side menu, e.g., 80% or 300px */
  background-color: #f8f8f8; /* Choose a background color */
  visibility: hidden; /* Makes it truly inaccessible when hidden */
  opacity: 0; /* For a fade-in effect when revealed */
  transition: all 0.3s ease-in-out; /* Smooth transition for property changes */
  z-index: 998; /* Ensure it appears above most content */
  display: flex; /* As per your current computed style */
  flex-direction: column; /* Common for mobile menus */
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  overflow-y: auto; /* Allow scrolling if content is too long */
}

/* --- Styles for .nav-links when it has the 'active' class (Visible State) --- */
/* This is the key part to make it visible */
.nav-links.active {
  left: 0; /* Bring it into view */
  visibility: visible; /* Make it visible and interactable */
  opacity: 1; /* Fully opaque */
  /* You can also use transform: translateX(0); here for potentially smoother animation */
}

/* --- Optional: Hamburger Icon Animation (when active) --- */
/* This provides visual feedback for the hamburger icon itself */
#hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- IMPORTANT: Media Queries for Mobile/Desktop behavior --- */
/* Ensure the hamburger and mobile menu styles ONLY apply on smaller screens */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* responsive with size sequence */
/* Tablet and below */
@media (max-width: 1370px) {
  .hero {
    grid-template-columns: 47% 53%;
    height: 35rem;
  }
  .hero-right {
    right: 35;
  }
  .content {
    top: 5%;
    left: 5%;
    max-width: 85%;
  }
  .top-header {
    display: none;
  }
  .navbar-custom {
    top: 0px;
  }
  body {
    padding-top: var(--navbar-height);
  }
}

/* Responsive Hero */
@media (max-width: 1200px) {
  .hero-right img {
    width: 180px;
  }
}
/* Responsive */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    padding: 30px 40px;
    justify-items: center;
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 1110px) {
  .hero-right img {
    width: 150px;
  }
  .hero-right {
    justify-content: center;
  }
}
/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 50% 50%;
  }
  .hero-left {
    padding-left: 5%;
  }
  .content {
    font-size: 4rem;
    left: 10%;
  }
}

@media (max-width: 925px) {
  /* Example breakpoint, adjust as needed */
  #hamburger {
    display: flex;
    z-index: 9999; /* Show hamburger button on mobile */
    /* Add other hamburger specific styles here */
  }
}

@media (min-width: 925px) {
  /* Example breakpoint */
  #hamburger {
    display: none; /* Hide hamburger button on larger screens */
  }
  .nav-links {
    position: static; /* Reset positioning for desktop nav */
    left: auto; /* Reset left property */
    height: auto; /* Reset height */
    width: auto; /* Reset width */
    background-color: transparent; /* Or your desktop nav background */
    visibility: visible; /* Always visible on desktop */
    opacity: 1; /* Always opaque */
    z-index: auto; /* Reset z-index */
    flex-direction: row; /* Typical desktop nav layout */
    justify-content: flex-start; /* Adjust as per your design */
    align-items: center; /* Adjust as per your design */
    overflow-y: visible; /* Reset overflow */
    transition: none; /* No transition needed for desktop nav */
  }
}
@media (max-width: 925px) {
  .hero-right img {
    width: 130px;
  }
}

@media (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 50px 20px;
    text-align: center;
  }
  #para {
    text-align: center;
  }
  .hero-left {
    padding-left: 0;
    order: 1;
  }
  .hero-right {
    order: 2;
    justify-content: center;
    margin-top: 20px;
  }
  .content {
    font-size: 3rem;
    /* left: 0; */
    top: 0;
    text-align: center;
  }
  .contact-right h2 {
    display: contents;
  }
  .contact-left {
    display: none;
  }
  .head {
    font-size: 2.5rem;
  }
  .con {
    font-size: 1.5rem;
  }
  #para {
    width: 100%;
    font-size: 16px;
    margin-top: 20px;
  }
  .button .btn {
    width: 10rem;
    height: 3rem;
    font-size: 0.9rem;
  }
  .hero-right img {
    width: 150px;
  }
  .blob {
    width: 200px;
    height: 200px;
    filter: blur(70px);
  }
}

@media (max-width: 900px) {
  .why-card.optional {
    display: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .wel-container {
    flex-direction: column;
    text-align: center;
  }

  .wel-left p {
    margin: auto auto 25px;
  }

  .wel-right img {
    max-width: 90%;
  }
}

@media (max-width: 900px) {
  .contact-section h2 {
    text-align: center;
    padding-bottom: 1rem;
  }
  .contact-section h2 span {
    color: var(--accent-2);
    font-weight: 700;
  }
  .contact-container {
    flex-direction: column-reverse;
  }
  .contact-left {
    width: 0px;
    height: 0px;
    display: none;
  }
  .contact-right {
    width: 100%;
    align-items: center;
  }
  .contact-form button {
    width: 100%;
    font-weight: 500;
  }
  .contact-right h2 {
    display: block;
  }
  .footer {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    justify-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer {
    padding-top: 40px;
    margin-top: 50px;
  }

  .footer a {
    font-size: 0.9rem;
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
  }

  .footer-contact h4,
  .footer-social h4 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .portfolio-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    display: none;
  }
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .why-bellflower {
    padding: 60px 20px;
  }
  .slider-btn {
    display: none;
  } /* Hide buttons on mobile, use touch swipe */
  .why-card {
    flex: 0 0 85%;
  } /* Show most of the card on mobile */
}
/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: #f8f9fa;
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    visibility: hidden;
    transition: left 0.3s ease;
    border-right: 1px solid var(--border-soft);
    z-index: 999;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    left: 0;
    visibility: visible;
  }
  .nav-links li {
    text-align: left;
    padding: 10px 0;
  }
  .nav-links li a {
    font-size: 1rem;
    padding: 10px 0;
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mega-menu {
    position: static;
    width: 100%;
    padding: 20px 0;
    box-shadow: none;
    background: #f8f9fa;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.3s ease;
  }
  .nav-item.active .mega-menu {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
  }
}

/* Responsive Feature Section */

@media (max-width: 768px) {
  .feature-section {
    padding: 50px 20px;
  }
  .featured-title {
    font-size: 2rem;
  }
  .featured-subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }
}

/* Responsive Industry Grid */
@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
  .theme-img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .content {
    font-size: 2.5rem;
  }
  .head {
    font-size: 2rem;
  }
  .con {
    font-size: 1.2rem;
  }
  #para {
    font-size: 14px;
  }
  .hero-right img {
    width: 100px;
  }
  .intro,
  .feature,
  .whatToDo,
  .WhyBellFlower,
  .OurPortfolio,
  .contact {
    min-height: 0rem;
  }
}

@media (max-width: 480px) {
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .theme-img {
    width: 150px;
  }
}
