@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Design System Variables */
:root {
  /* Dark Agency Theme */
  --background: hsl(222, 84%, 4.9%);
  --foreground: hsl(210, 40%, 98%);

  --card: hsl(217, 32.6%, 8%);
  --card-foreground: hsl(210, 40%, 98%);

  --primary: hsl(271, 91%, 65%);
  --primary-foreground: hsl(210, 40%, 98%);
  --primary-glow: hsl(271, 81%, 75%);

  --secondary: hsl(217, 32.6%, 12%);
  --secondary-foreground: hsl(210, 40%, 98%);

  --muted: hsl(217, 32.6%, 15%);
  --muted-foreground: hsl(215, 20.2%, 65.1%);

  --accent: hsl(187, 86%, 55%);
  --accent-foreground: hsl(217, 32.6%, 8%);
  --accent-glow: hsl(187, 76%, 65%);

  --border: hsl(217, 32.6%, 15%);
  --input: hsl(217, 32.6%, 12%);
  --ring: hsl(271, 91%, 65%);

  --radius: 0.75rem;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(271, 91%, 65%) 0%, hsl(187, 86%, 55%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(217, 32.6%, 10%) 0%, hsl(217, 32.6%, 8%) 100%);
  --gradient-border: linear-gradient(90deg, hsl(271, 91%, 65%) 0%, hsl(187, 86%, 55%) 100%);
  --gradient-text: linear-gradient(135deg, hsl(271, 91%, 65%) 0%, hsl(187, 86%, 55%) 100%);

  /* Shadows */
  --shadow-glow: 0 0 40px hsl(271, 91%, 65%, 0.3);
  --shadow-card: 0 20px 25px -5px hsl(222, 84%, 4.9%, 0.3);
  --shadow-accent: 0 0 30px hsl(187, 86%, 55%, 0.2);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-top: 7.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.py-4 {
  padding: 1rem 0;
}

.py-8 {
  padding: 2rem 0;
}

.py-16 {
  padding: 4rem 0;
}

.py-24 {
  padding: 6rem 0;
}

.px-4 {
  padding: 0 1rem;
}

.px-6 {
  padding: 0 1.5rem;
}

.px-8 {
  padding: 0 2rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

/* Gradient Text */
.gradient-text {
  background: #ff9939;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Effect */
.glass {
  background: rgba(13, 15, 23, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(63, 73, 96, 0.3);
  border-radius: var(--radius);
}

/* Glow Effects */
.glow-primary {
  box-shadow: var(--shadow-glow);
}

.glow-accent {
  box-shadow: var(--shadow-accent);
}

/* Animated Background */
.animated-bg {
  background: var(--gradient-hero);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

/* Hover Effects */
.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.hover-glow {
  transition: var(--transition-smooth);
}

.hover-glow:hover {
  box-shadow: var(--shadow-glow);
}

.transition-smooth {
  transition: var(--transition-smooth);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  width: 10rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ff9939;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(13, 15, 23, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: #bc7532f6;
  color: white;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Cards */
.card {
  border-radius: 0.8rem;
  overflow: hidden;
  border: solid .7px #ff9939;
}

.card:hover {
  transform: translateY(-4px);
}

.card-content {
  padding: 1.5rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  filter: blur(2.5px);
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 14, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  padding-top: 5rem;
  font-size: 3rem;
  font-family: 'Inter', sans-serif;
  color: #ff9939;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}


.underline-red {
  text-decoration: underline;
  text-decoration-color: red;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(to right, #ffcc00, #ff6600);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fill-text 2s forwards;
}

@keyframes fill-text {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0% 0;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--input);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Grid Layouts */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px hsl(271, 91%, 65%, 0.3);
  }

  50% {
    box-shadow: 0 0 40px hsl(271, 91%, 65%, 0.6);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .text-white {
    font-size: 2rem;
  }

  .text-5xl {
    font-size: 2.5rem;
  }

  .text-6xl {
    font-size: 3rem;
  }
}

/* Section Backgrounds */
.section-secondary {
  background: rgba(63, 73, 96, 0.1);
}

/* Portfolio specific styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--muted-foreground);
}

.badge-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
}

/* Contact info cards */
.contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

/* Footer Styles */
.footer {
  background: var(--background);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a,
.footer-social a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--primary);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

/* Utility classes for spacing and layout */
.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-white {
  color: white;
  /* font-size: 3rem; */
}

.text-foreground {
  color: var(--foreground);
}

.text-primary {
  color: var(--primary);
}

.h-48 {
  height: 12rem;
}

.object-cover {
  object-fit: cover;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

/* Services Grid styles */
.services-grid {
  align-items: stretch;
}

.services-grid .card {
  height: 100%;
  background: transparent !important;
  border: none !important;
  position: relative;
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

.services-grid .card::before {
  content: none;
}

.services-grid .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-grid .card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.4s ease;
}

.services-grid .card:hover img {
  transform: scale(1.03);
}

.services-grid h3 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.services-grid p {
  color: var(--muted-foreground);
}

.services-grid .card-content .flex:last-child {
  margin-top: auto;
}

.services-grid .btn.btn-outline {
  border-color: rgba(255, 153, 57, 0.5);
  color: #ff9939;
}

.services-grid .btn.btn-outline:hover {
  background: rgba(255, 153, 57, 0.08);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
  border-color: #ff9939;
}

.services-grid .card:hover {
  box-shadow: none;
  transform: none;
}

/* Top marquee bar and navbar offset */
.top-marquee-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  background: black;
  border-bottom: 1px solid rgba(255, 153, 57, 0.3);
  z-index: 1100;
  overflow: hidden;
}

.top-marquee {
  display: block;
  width: 100%;
  line-height: 40px;
  color: var(--foreground);
  font-size: 0.9rem;
  white-space: nowrap;
}

.top-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 153, 57, 0.5);
  border-radius: 9999px;
  color: #ff9939;
  text-decoration: none;
}

.top-apply-btn:hover {
  background: rgba(255, 153, 57, 0.08);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

/* Push navbar below marquee */
.navbar {
  top: 40px;
}

@media (max-width: 767px) {
  .top-marquee-bar {
    height: 36px;
  }

  .top-marquee {
    line-height: 36px;
    font-size: 0.82rem;
  }

  .navbar {
    top: 36px;
  }
}

/* Contact page: Get in Touch styles */
.get-in-touch .subtitle {
  color: var(--muted-foreground);
}

.get-in-touch .panel {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 57, 0.25);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1rem;
}

.get-in-touch .panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-glow);
}

.get-in-touch .items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.get-in-touch .item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.get-in-touch .item:last-child {
  border-bottom: none;
}

.get-in-touch .icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-glow);
  font-size: 1rem;
  flex-shrink: 0;
}

.get-in-touch .label {
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

.get-in-touch .value {
  color: var(--foreground);
  font-weight: 600;
  text-decoration: none;
}

.get-in-touch .cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.get-in-touch .btn-outline {
  border-color: rgba(255, 153, 57, 0.5);
  color: #ff9939;
}

.get-in-touch .btn-outline:hover {
  background: rgba(255, 153, 57, 0.08);
  border-color: #ff9939;
}

.get-in-touch .note {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

@media (min-width: 1024px) {
  .get-in-touch .panel {
    padding: 1.5rem 1.75rem 1.25rem;
  }
}

/* About page styles: founder and values */
.founder-media {
  text-align: center;
}

.founder-img {
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founder-media {
    text-align: left;
  }

  .founder-img {
    margin: 0;
  }

  .founder-col {
    padding-left: 2rem;
  }
}

/* Values section styles */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.values-grid>.card {
  height: 100%;
  background: rgba(13, 15, 23, 0.5);
  border: 1px solid rgba(255, 153, 57, 0.25);
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.values-grid>.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: #ff9939;
}

.values-grid .card-content {
  display: block;
}

.values-grid .contact-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.values-grid h3 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.values-grid p {
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* Stack icon above text inside each values card */
.values-grid .card-content .flex {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.values-grid .card-content .flex>div:last-child {
  text-align: center;
}

.values-grid .contact-icon {
  margin: 0 auto 0.75rem auto;
}


/* .whatsapp-float  */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
  transform: scale(1.08);
}