@charset "UTF-8";
/* CSS Document */

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

:root {
  --black: #000;
  --white: #fff;
  --red: #ff3c38;
  --peach: #ffc1a1;
  --gray: #f5f5f5;
  --light-gray: #e5e5e5;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

p {
  font-weight: 300;
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, #ff1612 0%, #ff3c38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

section:nth-child(odd) {
  background: var(--white);
}

section:nth-child(even) {
  background: var(--gray);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: "Inter", sans-serif;
  font-size: 0rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
}

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--red);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  background: var(--white);
}

.hero-content {
  max-width: 900px;
}

.subheading {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Section text alignment */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #000;
  font-weight: 300;
  line-height: 1.8;
}

/* Beliefs Grid */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.belief-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.belief-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.belief-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--light-gray);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--peach);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-color: transparent;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--gray) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.member-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 60, 56, 0.1) 0%,
    rgba(255, 193, 161, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-photo::before {
  opacity: 1;
}

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.member-role {
  font-size: 0.95rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.6;
}

/* CTA Button */
.cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0.5rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.cta:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cta-2 {
  display: inline-block;
  padding: 1rem 2.5rem;
  /* background: var(--black); */
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0.5rem;
  font-size: 0.95rem;
}

.cta-2:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--white);
  color: var(--black);
  font-weight: 500;
}
.cta-3 {
  display: inline-block;
  padding: 1rem 2.5rem;
  /* background: var(--black); */
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0.5rem;
  font-size: 0.95rem;
}

.cta-3:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--white);
  color: var(--white);
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-content {
  /* max-width: 800px;
            margin: 0 auto; */
}

.footer-logo {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.social-links {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--peach);
}

.social-links svg {
  fill: currentColor;
  stroke: currentColor;
}

/* Newsletter */
.newsletter {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: 300px;
  font-size: 0.95rem;
  background: transparent;
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter button {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.newsletter button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 60, 56, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  
   .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
 }
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .beliefs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter {
    flex-direction: column;
    align-items: center;
  }

  .newsletter input {
    width: 100%;
    max-width: 300px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animation Delays */
section:nth-child(2) {
  animation-delay: 0.1s;
}
section:nth-child(3) {
  animation-delay: 0.2s;
}
section:nth-child(4) {
  animation-delay: 0.3s;
}
section:nth-child(5) {
  animation-delay: 0.4s;
}
section:nth-child(6) {
  animation-delay: 0.5s;
}
section:nth-child(7) {
  animation-delay: 0.6s;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.belief-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.belief-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.belief-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--gray) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.member-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 60, 56, 0.1) 0%,
    rgba(255, 193, 161, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-photo::before {
  opacity: 1;
}

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.member-role {
  font-size: 0.95rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.6;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.col-item {
  text-align: center;
  padding: 2rem;
}

.col-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.col-item:hover .col-icon {
  background: var(--black);
  transform: scale(1.1);
}

.col-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.col-item:hover .col-icon svg {
  stroke: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  transform: scale(1.1);
}

.why-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon svg {
  stroke: var(--white);
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cta-block {
  background: var(--white);
  border: 2px solid var(--light-gray);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-block:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 60, 56, 0.1);
}

.cta-block h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
}

.cta-block p {
  color: #000;
  font-size: 0.95rem;
}

/* Additional CSS for Contact Page - Add this to your styles.css */

/* Contact Details Grid */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-detail-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--light-gray);
}

.contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--peach);
}

.contact-detail-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-detail-icon {
  transform: scale(1.1);
}

.contact-detail-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

.contact-info-link {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.6;
}

.contact-info-link:hover {
  color: var(--red);
}

/* Social Contact Links */
.social-contact-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  color: var(--black);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Who Should Connect Grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.who-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.who-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--peach);
}

.who-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.who-item:hover .who-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  transform: scale(1.1);
}

.who-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.who-item p {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.5;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-detail-card {
    padding: 2rem 1.5rem;
  }

  .who-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .who-item {
    padding: 1.5rem 1rem;
  }

  .social-contact-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    justify-content: center;
    width: 100%;
    max-width: 150px;
  }
}
/* Additional CSS for Contact Page - Add this to your styles.css */

/* Contact Rows Layout */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-detail-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--light-gray);
}

.contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--peach);
}

.contact-detail-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-detail-icon {
  transform: scale(1.1);
}

.contact-detail-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

.contact-info-link {
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  display: block;
}

.email-link {
  font-weight: 500;
  color: var(--red);
  font-size: 1.1rem;
}

.email-link:hover {
  text-decoration: underline;
}

.phone-number {
  color: var(--red);
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Social Contact Links */
.social-contact-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.social-link svg {
  stroke: currentColor;
  fill: none;
}

/* Who Should Connect Grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.who-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.who-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--peach);
}

.who-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.who-item:hover .who-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  transform: scale(1.1);
}

.who-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.who-item p {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.5;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-detail-card {
    padding: 2rem 1.5rem;
  }

  .who-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .who-item {
    padding: 1.5rem 1rem;
  }

  .social-contact-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }
}

/* Service page */
/* Additional styles for detailed services */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-detailed-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.service-detailed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--peach);
}

.service-detailed-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-detailed-card:hover .service-detailed-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-color: transparent;
}

.service-detailed-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.service-detailed-card:hover .service-detailed-icon svg {
  stroke: var(--white);
}

.service-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-offerings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.service-offerings span {
  background: var(--gray);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.3s ease;
}

.service-detailed-card:hover .service-offerings span {
  background: var(--peach);
  color: var(--white);
}

.cta-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  margin-top: 1.5rem;
}

.cta-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* Tech Stack Grid */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--peach);
}

.tech-category h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.tech-category p {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detailed-card {
    padding: 2rem 1.5rem;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* add by Mahesh sharma */

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1f1f1f;
  padding-top: 1.5rem;
}

.footer-links .nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
}
.content-area {
  display: block;
  text-align: left;
  max-width: 979px;
  margin: 0 auto 3rem;
}
.section-para {
  font-size: 1.1rem;
  color: #000;
  font-weight: 300;
  line-height: 1.8;
  padding-bottom: 1rem;
}
ul.list {
  display: block;
  margin-bottom: 1.5rem;
}
ul.list li {
  font-size: 1.1rem;
  color: #000;
  font-weight: 300;
  line-height: 1.8;
}
.pvc-hdn h3 {
  text-align: left;
}
.ml-1 {
  margin-left: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.pb-1 {
  padding-bottom: 1rem;
}
.fw-500 {
  font-weight: 500;
}

.subheading {
  font-size: 18px;
  color: #000;
  margin-bottom: 30px;
}

.last-updated {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

ul,
ol {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

li {
  font-size: 1.1rem;
  color: #000;
  font-weight: 300;
  line-height: 1.8;
}

.sub-list {
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

.privacy-hero-bg {
  background: linear-gradient(135deg, #fbd0b1, #fca07c);
}

.belief-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white) !important;
  stroke-width: 2;
  fill: none !important;
  transition: all 0.3s ease;
}

/* Newsletter */
.newsletter {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.newsletter input {
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: 300px;
  font-size: 0.95rem;
  background: transparent;
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter button {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.newsletter button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 60, 56, 0.3);
}

.form-message {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 400px;
  text-align: center;
}

.form-message.success {
  background-color: rgba(76, 175, 80, 0.2);
  color: var(--success);
  border: 1px solid var(--success);
  opacity: 1;
}

.form-message.error {
  background-color: rgba(244, 67, 54, 0.2);
  color: var(--error);
  border: 1px solid var(--error);
  opacity: 1;
}

.footer-links .nav-menu {
  margin-bottom: 0px;
}

/* Dark theme styles following technology.html pattern */
.fourth-space-hero {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1a1a1a 50%,
    #333333 100%
  ) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fourth-space-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 80%,
      rgba(255, 60, 56, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 193, 161, 0.15) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

.fourth-space-hero .container {
  position: relative;
  z-index: 2;
}

/* .fourth-space-hero h1 {
            color: white !important;
            font-size: clamp(3rem, 8vw, 5rem) !important;
            margin-bottom: 2rem !important;
            background: linear-gradient(135deg, #ffffff 30%, #FFC1A1 70%, #FF3C38 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: 400 !important;
            text-align: center !important;
            line-height: 1.2 !important;
        } */

.fourth-space-hero .subheading {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center !important;
}

.hero-content {
  text-align: center !important;
}

.hero-content h1 {
  text-align: center !important;
}

.hero-content p {
  text-align: center !important;
}

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

.floating-icon {
  position: absolute;
  opacity: 0.2;
  animation: float-icons 15s ease-in-out infinite;
}

.floating-icon svg {
  stroke: rgba(255, 255, 255, 0.4) !important;
  stroke-width: 1.5;
  fill: none;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}
.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
}
.floating-icon:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 9s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-icons {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-30px);
    opacity: 0.3;
  }
}

/* Article-style sections */
.article-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.article-section:nth-child(even) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.article-section:nth-child(odd) {
  background: white;
}

/* Dark section like technology page */
.dark-section {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1a1a1a 50%,
    #333333 100%
  ) !important;
  color: white;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 60, 56, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 193, 161, 0.2) 0%,
      transparent 40%
    );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dark-section .container {
  position: relative;
  z-index: 2;
}

/* .dark-section h2 {
            color: white !important;
            background: linear-gradient(135deg, #FF3C38 0%, #FFC1A1 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        } */

.dark-section .section-intro {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Media placeholders */
.media-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 3rem 0; */
  position: relative;
  overflow: hidden;
  /* border: 2px dashed #ddd; */
  cursor: pointer;
 transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.media-placeholder:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

.media-placeholder.video {
  background: linear-gradient(135deg, #ff3c38 0%, #ff6b47 50%, #ff8a56 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.media-placeholder.plc-1 {
  background: url(/images/recording-setup.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder.plc-2 {
  background: url(/images/collaborative-space.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder.plc-3 {
  background: url(/images/chroma-wall.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder.plc-4 {
  background: url(/images/review-corner.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder.plc-5 {
  background: url(/images/table.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder.plc-6 {
  background: url(/images/gray-area.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}

.media-placeholder.plc-7 {
  background: url(/images/make-up-room.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder.plc-8 {
  background: url(/images/podcast-3.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.media-placeholder-content {
  text-align: center;
  color: #fff;
  position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    padding: 5px;
}

.media-placeholder.video .media-placeholder-content {
  color: white;
}
.media-placeholder-content img {
  width: 100%;
}

.media-placeholder-content svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.video-container {
  position: relative;
  max-width: 100%;
  margin: 2rem auto 0 auto;

}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}
.video-container.fade-in-up video {
  height: 640px !important;
  border-radius: 1rem!important;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Custom video controls styling */
/* video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.3);
} */


/* Parallax elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FF3C38" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23FFC1A1" opacity="0.1"/><circle cx="50" cy="80" r="2" fill="%23FF3C38" opacity="0.1"/></svg>');
  animation: parallax-float 20s ease-in-out infinite;
}

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

/* Features grid - 3x3 layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 60, 56, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  border-color: var(--peach);
  background: rgba(255, 193, 161, 0.2);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.feature-card h3 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.1rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Community section alignment */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.community-item {
  text-align: center;
  padding: 2rem 1rem;
}

.community-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.community-item:hover .community-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--peach) 100%);
  border-color: var(--peach);
  transform: scale(1.1);
}

.community-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}
.content-flow {
  text-align: center;
}

.content-flow h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  /* margin: 3rem 0 2rem; */
  /* text-align: left; */
}

.content-flow h3 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin: 2rem 0 1rem;
  text-align: center;
  color: var(--white);
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(255, 60, 56, 0.1) 0%,
    rgba(255, 193, 161, 0.1) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--red);
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
}

.location-banner {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.location-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 60, 56, 0.2) 0%,
    transparent 40%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.location-banner .container {
  position: relative;
  z-index: 2;
}
.location-banner-subtitle {
  color: #000;
  margin-bottom: 1rem;
}
#newsletterForm {
  display: flex;
  gap: 1rem;
}

/* Responsive design */
@media (max-width: 1024px) {
      .video-container.fade-in-up video {
        height: auto !important;
    }
  }
@media (max-width: 768px) {
  .video-container.fade-in-up video {
  height: auto !important;
}
  #newsletterForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .fourth-space-hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .article-section {
    padding: 3rem 0;
  }

  .media-placeholder {
    height: 250px;
    margin: 2rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .floating-elements {
    display: none;
  }
}

/* Enhanced animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Book Space Form css */
.open-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* The popup (initially hidden) */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 470px;
  border-radius: 20px;
  max-width: 90vw;
  box-sizing: border-box;
}

.popup h2 {
  font-size: 34px;
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Overlay */
.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Close button */
.close-btn {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #333;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #007bff;
}

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



/* ✅ Responsive Design */
@media screen and (max-width: 600px) {
  .popup {
    width: 90vw;
    padding: 20px;
  }

  .popup h2 {
    font-size: 24px;
    text-align: center;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 13px;
    padding: 0.6rem 0.9rem;
  }

  .close-btn {
    font-size: 1.2rem;
    top: 0.7rem;
    right: 0.7rem;
  }
}




/* feature popup */

 /* Popup Styles */
    .ftrpopup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .ftrpopup img {
      max-width: 80%;
      max-height: 80%;
      border: 5px solid white;
      border-radius: 8px;
    }

    .ftrpopup.active {
      display: flex;
    }

    .ftrpopup-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 2rem;
      cursor: pointer;
    }