* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.section-separator {
  text-align: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}

#how-we-work + .section-separator {
  margin: 0;
  padding: 0;
}

/* How We Work Section */
#how-we-work {
  padding: 0;
  margin: 0;
}

#how-we-work .section-heading {
  margin-bottom: 1rem;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  background: url('./assets/bg-colour.jpg') no-repeat center center fixed;
  background-size: cover;
  overscroll-behavior: none;
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
  user-select: none;         
}

input, textarea, select, textarea *, input * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1000;
}

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; 
  max-width: 100%;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo img {
    max-width: 300px;
  }
}


body {
  font-family: 'Montserrat', sans-serif;
  background: #4a0000;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4a0000 url('./assets/red.jpeg') center/cover no-repeat fixed;
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  color: #ffcc00;
}



section h2, .section-heading {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  display: inline-block;
}



.company-name {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #FFD700;
  font-weight: 800;
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

.flow-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: min(92%, 1100px);
  margin: 0 auto;
  padding: 0;
}

:root {
  --box-size: clamp(110px, 13vw, 150px);
  --box-color: rgba(40, 40, 40, 0.95);
  --accent-color: #FFD700;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --rotate-angle: -12deg;
  --font-primary: 'Poppins', sans-serif;
  --heading-size: clamp(1.8rem, 4vw, 2.5rem);
  --heading-color: #FFD700;
  --heading-border: rgba(255, 215, 0, 0.3);
  --heading-glow: rgba(255, 215, 0, 0.15);
}

body {
  font-family: var(--font-primary);
}

.stat-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border-left: 3px solid #FFD700;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.stat-bullet:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-bullet i {
  color: #FFD700;
  font-size: 1.25rem;
  min-width: 1.25rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.stat-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stat-number {
  font-weight: bold;
  font-size: 1.25rem;
  color: #FFD700;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.9;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0.3rem;
  opacity: 0.5;
  line-height: 0.5;
  height: 2px;
  overflow: hidden;
}

.section-divider span {
  color: #FFD700;
  font-size: 0.75rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
}

.circle {
  width: var(--box-size);
  height: var(--box-size);
  background: var(--box-color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.circle i,
.circle span {
  color: var(--accent-color);
  text-shadow: 2px 2px 4px var(--shadow-color);
}

.circle i {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.circle span {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 0 0.8rem;
  white-space: nowrap;
  font-family: var(--font-primary);
}

.strategy-line {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #FFD700;
  margin: 2rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.section {
  padding: 0.25rem 1rem 0; 
  margin: 0;
  text-align: center;
  flex: 1;
  min-height: auto;
}

.section.our-expertise {
  padding: 0.5rem 1rem;
}

.site-nav {
  margin-left: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
}

.nav-trigger {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.nav-trigger + label {
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  position: fixed;
  top: 10px;
  left: 20px;
  border-radius: 50%;
  z-index: 1200;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-trigger + label:hover {
  background: rgba(74, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.nav-trigger + label span {
  background: #FFD700;
  content: '';
  height: 2px;
  position: relative;
  width: 24px;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  display: block;
}

.nav-trigger:checked + label {
  background: rgba(74, 0, 0, 0.8);
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.nav-trigger:checked + label span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 24px;
}

.nav-trigger:checked + label span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.nav-trigger:checked + label span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 24px;
}

.nav-trigger:checked + label:hover {
  background: rgba(74, 0, 0, 1);
  border-color: rgba(255, 215, 0, 1);
  transform: scale(1.05);
}

.nav-trigger:checked + label:hover span {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links {
  background: linear-gradient(to bottom, rgba(74, 0, 0, 0.95), rgba(40, 0, 0, 0.95));
  height: 100vh;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 6rem 0 2rem;
  position: fixed;
  top: 0;
  width: 280px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1100;
}

.nav-trigger:checked ~ .nav-links {
  transform: translateX(0);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

.nav-links li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-trigger:checked ~ .nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.nav-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-links li:nth-child(2) { transition-delay: 0.2s; }
.nav-links li:nth-child(3) { transition-delay: 0.3s; }
.nav-links li:nth-child(4) { transition-delay: 0.4s; }
.nav-links li:nth-child(5) { transition-delay: 0.5s; }
.nav-links li:nth-child(6) { transition-delay: 0.6s; }

.nav-links a {
  color: #FFD700;
  display: block;
  font-size: 1.1rem;
  padding: 1rem 1.8rem;
  margin: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-left: 2px solid rgba(255, 215, 0, 0.05);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 215, 0, 0.1);
  padding-left: 2.2rem;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 2px solid rgba(255, 215, 0, 0.5);
}

.nav-links a.active {
  color: #fff;
  background: rgba(255, 215, 0, 0.15);
  padding-left: 2.2rem;
  font-weight: 600;
  border-left: 2px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 5px rgba(255, 215, 0, 0.05);
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to right, rgba(74, 0, 0, 0.95), rgba(40, 0, 0, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  z-index: 1100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.3s ease-in-out;
}

/* Header hide/show animation */
.custom-header.hide-header {
  transform: translateY(-100%);
}

.custom-header.show-header {
  transform: translateY(0);
}

.brand-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.benefits, .services, .reasons, .process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.custom-header .brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.custom-header .brand-logo img {
  max-width: 200px;
  height: auto;
  font-family: var(--font-primary);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.who-we-are-section {
  padding: 1rem 1rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}



.who-we-are-section .section-heading {
  font-size: var(--heading-size);
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 0.75rem;
  background: transparent;
}

.who-we-are-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--heading-color);
  border-radius: 2px;
}

.who-we-are-section .sub-heading {
  font-size: calc(var(--heading-size) * 0.7);
  color: var(--heading-color);
  margin: 2rem 0 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  background: transparent;
}

.stat {
  text-align: center;
  padding: 0;
  background: transparent;
  position: relative;
  box-shadow: none;
  border: none;
}

.stat::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2px;
  height: 40%;
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-50%);
}

.stat:last-child::after {
  display: none;
}

.stat-title {
  color: var(--heading-color);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .stat {
    padding: 1.5rem 1rem;
  }

  .stat-title {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.3rem 0;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
  }
}

.stat-value.yellow {
  color: var(--heading-color);
  text-shadow: 0 0 10px var(--heading-glow);
}

.stat-value.white {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.expertise-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
}

@media (max-width: 768px) {
  .expertise-stats {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  .stat::after {
    display: block;
  }

  .who-we-are-section {
    padding: 2rem 1rem;
  }

  .who-we-are-section .section-heading {
    font-size: var(--heading-size);
    margin-bottom: 2rem;
    letter-spacing: 2px;
  }

  .who-we-are-section .sub-heading {
    font-size: calc(var(--heading-size) * 0.8);
    margin: 2.5rem 0 2rem;
    letter-spacing: 1.5px;
  }

  .stat-title {
    font-size: 1.2rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .stat-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .expertise-stats {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  .stat {
    position: relative;
    padding-bottom: 2rem;
  }

  .stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--heading-color);
    opacity: 0.3;
  }

  .stat:last-child::after {
    display: none;
  }

  .stat-title {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: var(--heading-color);
    opacity: 0.9;
    margin-bottom: 0.5rem;
  }

  .stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0.8rem 0;
  }

  .stat-value.yellow {
    background: linear-gradient(135deg, var(--heading-color), #FFF5D4);
    -webkit-background-clip: text;
  background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }

  .stat-value.white {
    background: linear-gradient(135deg, #FFFFFF, #D4D4D4);
    -webkit-background-clip: text;
  background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }

  .stat-desc {
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .who-we-are-section {
    padding-top: 0.75rem;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact input, .contact textarea {
  padding: 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.contact input:focus, .contact textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact button {
  padding: 1.2rem 2rem;
  background-color: yellow;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.contact button:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .contact form {
    padding: 0 1rem;
  }
}

.process {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  text-align: center;
  flex-direction: row;
}

.step {
  background-color: black;
  color: yellow;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 2px solid yellow;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}

.arrow {
  color: yellow;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  :root {
    --rotate-angle: -10deg;
    --heading-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  section {
    padding: 0.5rem 1rem;
  }

  section h2 {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1.5px;
  }
  
  .section-heading, .who-we-are-heading, .offer-heading {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .section-heading .highlight-text, 
  .who-we-are-heading .highlight-text, 
  .offer-heading .highlight-text {
    display: inline-block;
  }
}

section h2::after {
  width: 60px;
  height: 2px;
}

#introduction {
  padding: 0.5rem;
}

.flow-content {
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: 98%;
}

.circle {
  width: 120px;
  height: 120px;
}

.circle i {
  font-size: 1.8rem;
}

.company-name {
  top: 0.8rem;
  right: 0.8rem;
}

.flow-arrow {
  font-size: 1.5rem;
  margin: 0 -1rem;
}

@media (max-width: 480px) {
  :root {
    --rotate-angle: -10deg;
    --heading-size: clamp(1.2rem, 3vw, 1.5rem);
  }

  .section-heading {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    letter-spacing: 1px;
  }

  .section-heading::after {
    width: 40px;
  }

  .sub-heading {
    font-size: calc(var(--heading-size) * 0.55);
    margin: 0.5rem 0 0.25rem;
    letter-spacing: 0.8px;
  }

  .expertise-stats {
    padding: 0.25rem;
  }

  .stat {
    padding: 0.25rem;
  }

  .stat-value {
    font-size: 1.8rem;
    margin: 0.8rem 0;
  }

  .stat-title, .stat-desc {
    font-size: 0.8rem;
    letter-spacing: 0.8px;
  }

  #introduction {
    padding: 0.5rem;
  }

  .flow-content {
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  .circle {
    width: 110px;
    height: 110px;
    gap: 0.7rem;
  }

  .circle i {
    font-size: 1.6rem;
  }

  .circle span {
    font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    padding: 0 0.5rem;
  }

  .company-name {
    top: 0.6rem;
    right: 0.6rem;
  }

  .flow-arrow {
    font-size: 1.2rem;
    margin: 0 -1rem;
  }
}

@media (max-width: 480px) {
  .process {
    flex-direction: column;
    gap: 0.5rem;
  }

  .arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
  
  .expertise-section {
    padding: 0.5rem;
    text-align: center;
  }
  
  .expertise-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px #ff0000;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
  }
  
  .expertise-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    padding: 0.5rem;
  }
  
  .stat-title,
  .stat-desc {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px #ff0000;
    font-family: 'Montserrat', sans-serif;
  }
  
  .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.25rem 0;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px #000;
  }
  
  .stat-value.yellow {
    color: #FFD700;
  }
  
  .stat-value.white {
    color: white;
  }
  
  .custom-header {
    padding: 0.5rem 1rem;
  }
  
  .custom-header .brand-logo img {
    max-width: 200px;
  }
  
  .nav-toggle {
    top: 15px;
    left: 15px;
  }
  
  .nav-menu {
    width: 95%;
    padding: 1.5rem 1rem;
  }
  
  .nav-menu ul li a {
    font-size: 1.3rem;
    padding: 1.2rem 1.5rem;
  }
  
  .benefit, .service, .reason, .step {
    width: 100%;
    padding: 0.5rem;
    margin: 0.25rem 0;
  }
  
  .contact form {
    padding: 1rem;
  }
  
  .contact input, .contact textarea {
    padding: 0.8rem;
  }
  
  .contact button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}  
#contact {
  background: transparent;
  padding: 0;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFD700;
  text-shadow: 2px 2px #ff0000;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
}

.sub-heading {
  font-size: 1.3rem;
  color: white;
  text-shadow: 1px 1px #ff0000;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-info {
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.contact-description {
  color: white;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: rgba(255, 215, 0, 0.15);
}

.contact-icon {
  background: rgba(255, 215, 0, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-text p {
  margin: 0;
  padding: 0;
  color: white;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
}

.contact-form-container {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0.5px rgba(255, 255, 255, 0.3),
              inset 0 0 10px rgba(255, 255, 255, 0.1),
              0 8px 24px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
  margin: 15px 0;
  box-sizing: border-box;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #FFD700;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0.5px rgba(255, 255, 255, 0.3),
              inset 0 0 10px rgba(255, 255, 255, 0.08),
              0 4px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: inset 0 0 0.5px rgba(255, 215, 0, 0.3),
              inset 0 0 10px rgba(255, 215, 0, 0.1),
              0 4px 12px rgba(0, 0, 0, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 10px 0 10px;
  flex-wrap: wrap;
}

.submit-button {
  background: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  font-weight: 600;
  padding: 12px 20px;
  font-size: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 5px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.submit-button.primary {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #4a0000;
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.submit-button i {
  font-size: 16px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
  color: #FFE066;
}

.submit-button.primary:hover {
  background: linear-gradient(135deg, #FFE066, #FFB700);
  color: #4a0000;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #FFE066, #FFB700);
}

.submit-button i {
  transition: transform 0.3s ease;
}

.submit-button:hover i {
  transform: translateX(5px);
}

.popup-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none;
}

.popup-content {
  background: rgba(26, 0, 0, 0.9);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  position: relative;
  animation: popIn 0.3s ease-out;
  transform: translateY(0);
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-icon {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.popup-content h3 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 24px;
}

.popup-content p {
  color: white;
  margin-bottom: 20px;
  line-height: 1.5;
  margin: 0;
}

.close-popup {
  background: linear-gradient(135deg, #FFD700, #FFB700);
  color: #1a0000;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  margin-top: 25px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.close-popup:hover {
  background: linear-gradient(135deg, #FFE44D, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@media (min-width: 768px) {
  .contact-details {
    justify-content: center;
    gap: 25px;
  }
}

@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .contact-info {
    width: 30%;
    max-width: 350px;
  }
  
  .contact-form-container {
    width: 65% !important;
    max-width: 800px !important;
    margin-left: auto !important;
  }
}

@media (max-width: 767px) {
  .contact-info {
    padding: 0 15px;
    width: 100%;
  }
  
  .contact-details {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .contact-item {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .contact-text p {
    white-space: normal;
    font-size: 0.9rem;
  }
  
  .contact-form-container {
    padding: 25px;
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 15px;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    font-size: 1.1rem;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 5px;
  }
  
  .submit-button {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  #contact {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .contact-form-container {
    padding: 25px !important;
    width: 95% !important;
    max-width: 95% !important;
    border-radius: 20px !important;
    margin: 10px auto !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .contact-form {
    gap: 20px !important;
  }

  .form-group {
    margin-bottom: 5px !important;
  }
  
  .contact-text p {
    font-size: 0.8rem;
  }
  
  .contact-item {
    padding: 8px 12px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

.custom-intro-bar.vertical {
  background-color: transparent;
  border: 2px solid #FFD700;
  border-radius: 30px;
  padding: 25px;
  margin: 100px auto 20px;
  width: fit-content;
  max-width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bar-text-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #FFD700;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.bar-item {
  white-space: nowrap;
}

.bar-arrow-img {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  filter: drop-shadow(0 0 1px #FFD700);
}


.intro-summary {
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  margin: 10px auto 20px;
  max-width: 90%;
  padding: 5px 10px;
  font-family: 'Montserrat', sans-serif;
}

#how-we-work {
  padding: 2rem 0 0;
  text-align: center;
  color: #fff;
}

#how-we-work h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px #a00;
  font-family: 'Montserrat', sans-serif;
}

.work-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-box {
  width: 310px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
  color: #FFD700;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1),
              0 8px 16px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2),
              0 12px 24px rgba(0, 0, 0, 0.5);
}

.down-arrow {
  font-size: 1.8rem;
  color: #FFD700;
  text-shadow: 1px 1px #a00;
}

.strategy-line {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 10px auto 20px;
  max-width: 90%;
  line-height: 1.5;
}

.section-divider {
  text-align: center;
  font-size: 2rem;
  color: #FFD700;
  margin: 0;
  letter-spacing: 5px;
}

.offer-section {
  text-align: center;
  padding: 0;
}

.offer-heading {
  font-size: 2rem;
  color: #FFD700;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px #ff0000;
  margin-bottom: 1.5rem;
}

.offer-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 350px;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0.5px rgba(255, 255, 255, 0.2),
              inset 0 0 10px rgba(255, 255, 255, 0.05),
              0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.2),
              inset 0 0 15px rgba(255, 255, 255, 0.05),
              0 10px 30px rgba(0, 0, 0, 0.5);
}

.offer-icon {
  width: 75%;
  max-width: 120px;
  height: auto;
  margin: 15px 0;
  border-radius: 5px;
}


.offer-title {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  text-shadow: 1px 1px red;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  display: table;
}

.offer-list li::before {
  content: "• ";
  color: #ffffff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}



@media (min-width: 768px) {
  .offer-cards {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.section {
  padding: 4rem 1rem;
}

.dark-red-gradient {
  background: linear-gradient(to right, #c21717, #7a0d0d);
}

.black-box {
  background-color: #000;
  color: #FFD700;
  padding: 3rem 1rem;
}

.yellow-text {
  color: #FFD700;
}

.expertise-grid {
  display: flex;
}
.who-we-are {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background: transparent;
}

.who-we-are h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: yellow;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.who-we-are h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, yellow, #ff4d4d);
  border-radius: 5px;
}

.content {
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.highlight {
  color: yellow;
  font-weight: 700;
}

@media (max-width: 768px) {
  .who-we-are h1 {
      font-size: 2rem;
  }

  .content {
      font-size: 1.2rem;
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .who-we-are h1 {
      font-size: 1.7rem;
  }

  .content {
      font-size: 1rem;
      padding: 10px;
  }
}

.why-choose-us-section {
  background: transparent;
  padding: 0;
  text-align: center;
}

.why-choose-us-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: yellow;
  margin-bottom: 1.5rem;
}

.why-choose-us-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.why-choose-us-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 350px;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0.5px rgba(255, 255, 255, 0.2),
              inset 0 0 10px rgba(255, 255, 255, 0.05),
              0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.2),
              inset 0 0 15px rgba(255, 255, 255, 0.05),
              0 10px 30px rgba(0, 0, 0, 0.5);
}


.card-heading {
  font-size: 1.8rem;
  font-weight: bold;
  color: yellow;
  margin-bottom: 20px;
}

.card-description {
  font-size: 1.1rem;
  color: white;
  margin-top: 15px;
}

.card-image {
  width: 55%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto;
  border-radius: 5px;
}


@media (max-width: 768px) {
  .why-choose-us-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .why-choose-us-card img {
    display: block;
    margin: 15px auto;
    max-width: 90%;
    height: auto;
  }
  
}

@media (max-width: 480px) {
  .why-choose-us-heading {
    font-size: 2rem;
  }

  .card-heading {
    font-size: 1.5rem;
  }

  .card-description {
    font-size: 1rem;
  }
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding-right: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.hero-title::after {
  content: none !important;
  display: none !important;
}

.highlight-text {
  color: #FFD700;
  position: relative;
  display: inline-block;
}

.highlight-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 215, 0, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #FFD700;
  color: #4a0000;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button.outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.cta-button.outline:hover {
  background: rgba(255, 215, 0, 0.1);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 450px;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
  animation: float 6s infinite ease-in-out;
}

.floating-element:hover {
  transform: translateY(-5px) scale(1.05) !important;
  border-color: rgba(255, 215, 0, 0.6);
  z-index: 10;
}

.floating-element i {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.floating-element span {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.floating-element.subscribers {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element.views {
  top: 20%;
  right: 5%;
  animation-delay: 1.5s;
}

.floating-element.revenue {
  bottom: 15%;
  left: 15%;
  animation-delay: 1s;
}

.floating-element.engagement {
  bottom: 25%;
  right: 10%;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.play-button-container {
  position: relative;
  z-index: 5;
}

.play-button-circle {
  width: 80px;
  height: 80px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.play-button-circle i {
  color: #4a0000;
  font-size: 1.8rem;
  margin-left: 5px;
}

.play-button-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #FFD700;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.scroll-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  transform: rotate(45deg);
  margin-top: 10px;
  animation: arrow 2s infinite;
}

@keyframes arrow {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/* Mobile-First Hero Section Styles */
.hero-section {
  min-height: 100vh;
  padding: 5rem 1rem 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero-content {
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  width: 100%;
  padding: 0 0.5rem;
}

.hero-text {
  padding: 0;
  max-width: 100%;
  order: 1;
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
  padding: 0 0.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
}

.hero-stat {
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.hero-cta {
  gap: 0.8rem;
  justify-content: center;
  width: 100%;
}

.cta-button {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  width: 100%;
  max-width: 200px;
}

.hero-visual {
  height: 240px;
  width: 100%;
  max-width: 300px;
  order: 0;
  margin-bottom: 1rem;
}

.floating-elements {
  transform: scale(0.85);
}

.floating-element {
  padding: 0.7rem;
  width: 80px;
  height: 80px;
}

.floating-element i {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.floating-element span {
  font-size: 0.7rem;
}

/* Mobile positioning - simplified to just two elements */
.floating-element.mobile-only-left {
  top: 15%;
  left: 5%;
}

.floating-element.mobile-only-right {
  top: 15%;
  right: 5%;
}

/* Hide desktop-only elements on mobile */
.desktop-only {
  display: none;
}

/* Original positioning for desktop */
.floating-element.subscribers {
  top: 5%;
  left: 5%;
}

.floating-element.views {
  top: 10%;
  right: 5%;
}

.floating-element.revenue {
  bottom: 10%;
  left: 10%;
}

.floating-element.engagement {
  bottom: 15%;
  right: 10%;
}

.play-button-circle {
  width: 60px;
  height: 60px;
}

.play-button-circle i {
  font-size: 1.4rem;
}

.hero-scroll-indicator {
  bottom: 20px;
}

.mouse {
  width: 24px;
  height: 40px;
}

/* Tablet and Desktop Overrides */
@media (min-width: 768px) {
  .hero-section {
    padding: 0;
    justify-content: center;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    max-width: 1200px;
  }
  
  .hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 0;
    order: 0;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
  }
  
  .hero-title::after {
    left: 0;
    transform: none;
    width: 80px;
    height: 4px;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 0.5rem;
    padding: 0;
    max-width: 90%;
  }
  
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 0;
    justify-content: flex-start;
  }
  
  .hero-stat {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    display: block;
    text-align: center;
  }
  
  .stat-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: flex-start;
  }
  
  .cta-button {
    width: auto;
    max-width: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .hero-visual {
    flex: 1;
    height: 450px;
    max-width: 500px;
    order: 1;
    margin-bottom: 0;
  }
  
  .floating-elements {
    transform: scale(1);
  }
  
  .floating-element {
    padding: 1rem;
    width: auto;
    height: auto;
  }
  
  .floating-element i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .floating-element span {
    font-size: 0.9rem;
  }
  
  /* Show desktop-only elements */
  .desktop-only {
    display: flex;
  }
  
  /* Reset positioning for desktop */
  .floating-element.mobile-only-left,
  .floating-element.mobile-only-right {
    position: absolute;
  }
  
  .floating-element.mobile-only-left {
    top: 5%;
    left: 5%;
  }
  
  .floating-element.mobile-only-right {
    top: 10%;
    right: 5%;
  }
  
  .play-button-circle {
    width: 80px;
    height: 80px;
  }
  
  .play-button-circle i {
    font-size: 1.8rem;
  }
}

/* Mobile layout adjustment for hero stats */
@media (max-width: 768px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .hero-stats .hero-stat:nth-child(3) {
    grid-column: 1 / -1; /* span both columns */
  }
}

/* WHY SOCIAL MEDIA Section - Modern Aesthetic Styling */
.why-social-section {
  padding: 0;
  background: transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.why-social-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Text section removed */

.why-social-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0 auto;
  max-width: 900px;
}

.feature-group {
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(20,20,20,0.3));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #FFD700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: fit-content;
}

.feature-pill i {
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1px;
  height: calc(100% - 0.5rem);
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0.1));
}

.feature-list li {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700;
  font-size: 1.2rem;
}

/* Responsive styles */
@media (min-width: 768px) {
  .why-social-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    justify-items: stretch;
    align-items: stretch;
  }
  /* Remove margin between items inside grid */
  .why-social-features .feature-group {
    margin-bottom: 0;
    padding-left: 0;
    width: 100%;
  }
  /* Center third card beneath first two */
  .why-social-features .feature-group:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 600px;
  }

  .feature-group {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-pill {
    font-size: 1.2rem;
  }
  
  .feature-list {
    margin-left: 2rem;
  }
  
  .feature-list li {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
}

/* Mobile optimization */
@media (max-width: 767px) {
  .why-social-features {
    gap: 2rem;
  }
  
  .feature-group {
    margin-bottom: 1rem;
  }
  
  .feature-pill {
    padding: 0.6rem 1.2rem;
  }
  
  .feature-list {
    margin-left: 0.5rem;
    padding-left: 1.2rem;
  }
  
  .feature-list li {
    font-size: 0.95rem;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }
}

/* Who We Are Section - Modern Styling */
.who-we-are-section {
  padding: 0;
  background: transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.who-we-are-heading {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  display: inline-block;
}

/* Underline removed from Who We Are heading */

.who-we-are-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.who-we-are-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.who-we-are-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.who-we-are-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Value Pills Styling */
.who-we-are-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.value-pill {
  background: rgba(74, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.value-pill:hover {
  transform: translateY(-3px);
  background: rgba(74, 0, 0, 0.8);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.value-pill i {
  color: #FFD700;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .who-we-are-values {
    justify-content: flex-start;
  }
  
  .value-pill {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
  }
  
  .value-pill i {
    font-size: 1.1rem;
  }
}

.highlight-text {
  color: #FFD700;
  font-weight: 700;
  position: relative;
  display: inline-block;
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
}

.expertise-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.expertise-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}

.stat-icon {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0.5rem 0;
  line-height: 1;
}

.gold-stat {
  color: #FFD700 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.gold-stat:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Favicon styling */
link[rel="icon"] {
  border-radius: 50% !important;
  border: 2px solid #FFD700 !important;
  overflow: hidden !important;
  object-fit: cover !important;
  width: 32px !important;
  height: 32px !important;
  background: white !important;
}

/* CTA button styles removed */

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .who-we-are-container {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 4rem;
  }
  
  /* Visual element media query styles removed */
  
  .who-we-are-text {
    flex: 1;
    order: 1;
    text-align: left;
    max-width: none;
  }
  
  .who-we-are-heading::after {
    left: 0;
    transform: none;
  }
  
  .expertise-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  /* CTA button media query styles removed */
  
  /* Floating badge media query styles removed */
}

.section-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 350px;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0.5px rgba(255, 255, 255, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 15px rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

.card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: yellow;
  margin-bottom: 20px;
}

.card p {
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
  margin-top: 15px;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
  display: block;
  text-align: center;
  width: 100%;
}
.personal-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .why-cards {
    flex-direction: row;
  }
}

/* Process Steps Styling */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0 0;
  padding: 0;
}

.process-step {
  text-align: center;
  padding: 1rem;
  position: relative;
  transition: transform 0.3s ease;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-step p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Show arrow between steps in How We Work section */
#how-we-work .process-step:not(:last-child)::after {
  content: '↓';
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFD700;
  font-size: 40px;
  line-height: 1;
  text-shadow: 1px 1px #a00;
}

/* ===== How We Work Enhancements ===== */

/* Smaller typography for step content */
#how-we-work .step-title {
  font-size: 1.25rem;
}
#how-we-work .process-step p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Bold step titles with unified gold color */
#how-we-work .step-title {
  font-weight: 700;
  color: #FFD700;
}

/* Circular numbered badges */
#how-we-work .step-number {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 215, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.10); /* subtle gold tint instead of dark */
  backdrop-filter: blur(4px);
  margin: 0 auto 1rem;
  line-height: 1;
}

/* Global header transparency override */
.custom-header {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
}

/* Glassmorphic hamburger menu button */
.nav-trigger + label {
  background: rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(12px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border-radius: 50% !important;
  padding: 10px !important;
  transition: all 0.3s ease !important;
}

/* Hover effect for hamburger button */
.nav-trigger + label:hover {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

/* Active state for hamburger button */
.nav-trigger:checked + label {
  background: rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
}

/* Mobile menu background */
.nav-container {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(15px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
  border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Menu links */
.nav-menu {
  background: transparent !important;
}

.nav-menu a {
  color: #fff !important;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 12px 20px !important;
}

.nav-menu a:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  color: #FFD700 !important;
  padding-left: 25px !important;
}

/* Mobile tweak */
@media (max-width: 480px) {
  #how-we-work .step-number {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
    border: 2px solid rgba(255, 215, 0, 0.8);
    background: rgba(255, 215, 0, 0.10);
    backdrop-filter: blur(4px);
  }
  #how-we-work .process-step:not(:last-child)::after {
    bottom: -25px; /* give extra space for larger arrow */
    font-size: 40px; /* larger, more visible arrow */
  }
}

/* Desktop grid layout */
@media (min-width: 768px) {
  /* right-pointing arrows between steps */
  #how-we-work .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    bottom: auto;
    transform: translateY(-50%);
    font-size: 48px;
    color: #FFD700;
    text-shadow: 1px 1px #a00;
    line-height: 1;
  }
}

/* Retains previous desktop grid rule */

/* ===== Why Choose Us Redesign ===== */
#why-choose-us {
  padding: 3rem 1rem;
  position: relative;
  background: transparent; /* match global background */
  overflow: hidden;
}

#why-choose-us h2,
.why-choose-us-heading {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #FFD700 0%, #FFAE00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.25);
  position: relative;
}
#why-choose-us h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FF4D4D);
  border-radius: 5px;
  opacity: 0.8;
}

#why-choose-us .why-choose-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#why-choose-us .why-choose-us-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
#why-choose-us .why-choose-us-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
}

#why-choose-us .why-choose-us-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.35));
}
#why-choose-us .why-choose-us-card .card-heading {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px #4a0000;
}
#why-choose-us .why-choose-us-card .card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 300px;
}

@media (max-width: 480px) {
  #why-choose-us {
    padding: 2rem 0.5rem;
  }
  #why-choose-us .why-choose-us-card {
    padding: 1.5rem 1rem;
  }
  #why-choose-us .why-choose-us-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #why-choose-us .why-choose-us-card img {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 768px) {
  #how-we-work .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
  }
}

/* ===== Contact Us Redesign ===== */
#contact {
  padding: 4rem 1rem;
  background: transparent; /* match global dark background */
}

#contact .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  #contact .contact-wrapper {
    flex-direction: row;
    width: 100%;
    max-width: none;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
  }
}


/* Info column */
#contact .contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

#contact .contact-details {
  flex: 1;
  width: 100%;
  max-width: 100% !important;
}
#contact .contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease;
  width: 100%;
}
#contact .contact-details .contact-item:hover {
  transform: translateX(5px);
}
#contact .contact-icon {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 1.2rem;
}
#contact .contact-text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* Form column */
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* existing spacing */
  align-items: stretch;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Center the send message button */
#contact .contact-form .submit-button {
  align-self: center;
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.8rem 2.5rem;
}

#contact .contact-form-container {
  flex: 1.2;
  width: 100%;
  max-width: 100% !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 25px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

#contact label {
  color: #FFD700;
  font-weight: 600;
  margin-left: 0.25rem;
  font-size: 0.9rem;
}

#contact input,
#contact textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  color: #fff;
  margin-top: 0.3rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

#contact .submit-button {
  background: linear-gradient(135deg, #FFD700, #FFB700);
  color: #4a0000;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#contact .submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

/* ===== Unified Section Headings ===== */
.who-we-are-heading,
.why-choose-us-heading,
.section-heading {
  font-family: 'Poppins', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
  margin: 0 auto 60px auto !important;
}

/* ===== Footer Styles ===== */
.site-footer {
  background: transparent !important;
  color: #fff;
  padding: 3rem 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  border: none !important;
  border-top: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.site-footer a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #fff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255,215,0,0.35));
}

.footer-links {
  display: flex;
  flex: 1;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-column h3 {
  color: #FFD700;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent !important;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 50%;
  color: #FFD700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
  background: transparent !important;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  box-shadow: none !important;
  outline: none !important;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-column {
    min-width: 140px;
  }

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