/* CSS Locations    
Design 1 CSS is here: esven-revamp/designs/design1/styles.css
Design 2 CSS is here: esven-revamp/designs/design2/styles.css
Design 3 CSS is here: esven-revamp/designs/design3/styles.css
Now we can use this schema for our css = .[page]-[section]-[item]-[originaldesign#] , 
this will keep all of our css from ever having a duplicate name */

/* Global styles for Esven Combined App */

.desktop-only { display: inline; }
.mobile-only { display: none; }

@media (max-width: 767px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline; }
}


/* Typography Utilities */
/* Typewriter font for all headings */
h1,
h2,
h3,
h4,
h5,
h6,
.typewriter,
.type-text-xl,
.type-text-lg,
.type-text-md,
.type-text-sm {
  font-family: "American Typewriter", "Courier New", "IBM Plex Mono", monospace;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #00274c;
}

/* Responsive Typewriter Text */
.type-text-xl {
  font-size: 2rem;
  line-height: 1.2;
}

.type-text-lg {
  font-size: 1.5rem;
  line-height: 1.3;
}

.type-text-md {
  font-size: 1.125rem;
  line-height: 1.4;
}

.type-text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Header and Navigation */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  padding: 1rem 0;
}

.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem; /* Larger font for desktop */
  transition: color 0.3s ease;
  font-family: "American Typewriter", "Courier New", "IBM Plex Mono", monospace;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .nav-links a {
    font-size: 1rem; /* Smaller font for mobile */
  }
}

.nav-links a:hover {
  color: #ccc;
}

/* Reset Bootstrap nav styles */
nav {
  display: block;
}

/* Body styles */
body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  background: #fff;
  color: #000;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .approach-timeline {
    gap: 2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 700px) {
  .hero-container {
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: inline-block;
  }
  .btn-primary {
    background: #fff;
    color: #00274c;
    border: 2px solid #fff;
  }
  .btn-primary:hover {
    background: #e0eaff;
    color: #00274c;
  }
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  .btn-outline:hover {
    background: #00274c;
    color: #fff;
  }

  .hero-visual {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
  }
  .home-hero-connection-network {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    background: rgba(
      255,
      0,
      0,
      0.1
    ); /* Debug: Red background to test visibility */
    border: 1px dashed red; /* Debug: Border to highlight container */
  }
  .home-hero-network-node {
    position: absolute !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    margin: 0 !important;
    padding: 0 !important;
  }
  .home-hero-network-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(51, 123, 231, 0.2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-hero-network-node.founder {
    top: 10%;
    left: 20%;
    animation-delay: -0.5s;
  }

  .home-hero-network-node.investor {
    top: 5%;
    right: 5%;
    animation-delay: -1s;
  }

  .home-hero-network-node.investor .home-hero-node-avatar {
    background: rgba(21, 83, 166, 0.5);
    border: 2px solid #00274c;
    box-shadow: 0 0 10px rgba(21, 83, 166, 0.8);
  }

  .home-hero-network-node.advisor {
    bottom: 20%;
    right: 20%;
    animation-delay: -1.5s;
  }

  .home-hero-network-node.talent {
    bottom: 10%;
    left: 10%;
    animation-delay: -2s;
  }

  .home-hero-node-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }

  .home-hero-central .home-hero-node-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
  }

  .home-hero-node-avatar:hover {
    transform: scale(1.1);
    background: rgba(247, 5, 33, 0.4);
  }

  .home-hero-node-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
  }

  @media (max-width: 900px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
      min-height: 360px;
    }
    .hero-content,
    .hero-visual {
      flex: 1 1 100%;
      margin-bottom: 2rem;
    }
    .connection-network {
      width: 220px;
      height: 220px;
    }
  }

  .approach-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  .approach-timeline::before {
    display: none;
  }
}

/* =============================
   Header/Nav Section | design1 (color), design2/design3 (sticky)
   ============================= */
.header {
  background: linear-gradient(90deg, #00274c 0%, #00274c 100%);
  color: #fff;
  position: relative;
  z-index: 100;
}
.navbar {
  background: #00274c;
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo img {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.2s;
  padding: 0.5rem 0;
}
.nav-links a:hover {
  color: #b8b8b8;
}
/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Active state for hamburger */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #1b6edc;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Add delay for each nav link */
  .nav-links.active a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active a:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active a:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active a:nth-child(4) {
    transition-delay: 0.4s;
  }
}

/* Ensure content isn't hidden behind the header */
main {
  padding-top: 0px; /* Adjust based on your header height */
}

.performance-banner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
}
.metric {
  text-align: center;
}
.metric-number {
  font-size: 1.3rem;
  font-weight: bold;
}
.metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =============================
   Footer Styles | Origin: design1 
   ============================= */

.footer {
  background: linear-gradient(90deg, #00274c 0%, #00274c 100%);
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-section h3,
.footer-section h4 {
  margin: 0 0 1rem 0;
}
.footer-section p,
.footer-section a {
  color: #fff;
  opacity: 0.92;
  text-decoration: none;
  font-size: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.97rem;
  opacity: 0.75;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
}

/* =============================
   Intro/Index  Page | Origin: design1 
   ============================= */

/* =============================
   Home/ Landing Page | Origin: design2/design3
   ============================= */

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00274c 0%, #1a72c8 100%);
  opacity: 0.95;
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 440px;
  padding: 3rem 2rem 2rem 2rem;
}
.hero-content {
  flex: 1 1 50%;
  text-align: left;
  color: #fff;
  z-index: 4;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: #00274c;
}
.hero-subtitle {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #00274c;
}
.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  opacity: 0.93;
  color: #00274c;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
}
.btn {
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  display: inline-block;
}
.btn-primary {
  background: #fff;
  color: #00274c;
  border: 2px solid #fff;
}
.btn-primary:hover {
  background: #e0eaff;
  color: #00274c;
}
.btn-outline {
  background: #00274c;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #1b6edc;
  color: #fff;
}

.hero-visual {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  min-height: 650px; /* Increased to fit larger network */
  position: relative;
  width: 100%;
  padding: 2rem 0;
  overflow: visible;
}

/* Network visualization styles */
.home-hero-connection-network {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  /* Debug styles - can be removed later */
  /* border: 1px dashed red; */
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-line {
  stroke: #888888; /* Grey color for lines */
  stroke-width: 1.5;
  stroke-dasharray: 4;
  animation: dash 20s linear infinite;
}

/* Circle around connection points */
.connection-point {
  position: absolute;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #888888;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

/* Logo styling */
.esalen-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15%;
  filter: brightness(0) invert(1); /* Make logo white */
}

/* Hide hero visual on mobile devices */
@media (max-width: 767px) {
  .hero-visual {
    display: none;
  }
}

.home-hero-network-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.home-hero-network-node.central {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #1a72c8;
  color: #fff;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(21, 83, 166, 0.15);
  z-index: 2;
}

.home-hero-network-node.founder {
  left: 10%;
  top: 20%;
  animation-delay: -0.5s;
}

.home-hero-network-node.investor {
  right: 5%;
  top: 10%;
  left: auto;
  animation-delay: -1s;
}

.home-hero-network-node.advisor {
  right: 10%;
  bottom: 20%;
  animation-delay: -1.5s;
}

.home-hero-network-node.talent {
  left: 10%;
  bottom: 20%;
  animation-delay: -2s;
}

.home-hero-node-avatar {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

/* Ensure the central node avatar is large enough */
.home-hero-network-node.central .home-hero-node-avatar {
  width: 100px;
  height: 100px;
  background: rgba(51, 123, 231, 0.3);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 15px;
  box-sizing: border-box;
}

/* Logo image styling */
.esalen-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(82%) sepia(98%) saturate(2647%)
    hue-rotate(359deg) brightness(104%) contrast(102%);
  /* This filter converts the logo to #FFCB05 color (bright yellow) */
}

.home-hero-node-avatar:hover {
  transform: scale(1.1);
  background: rgba(172, 196, 239, 0.8);
}

.home-hero-node-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00274c;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 0.75rem;
  text-align: center;
  opacity: 0.9;
}

/* Central node specific styles */
.home-hero-network-node.central .home-hero-node-avatar {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  background: #fff;
  color: #00274c;
}

.home-hero-network-node.central .home-hero-node-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.8rem;
}

/* Animation for network nodes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    min-height: 360px;
  }
  .hero-content,
  .hero-visual {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }
  .connection-network {
    width: 220px;
    height: 220px;
  }
  .home-hero-connection-network {
    width: 220px;
    height: 220px;
  }
  .home-hero-text {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
  }
}

/* Animation for network nodes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Approach Section | Origin: design2 */
.home-approach {
  padding: 5rem 0;
  background: #f8f9fa;
  color: #2c3e50;
}

.home-approach-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #2c3e50;
}

.home-approach-timeline {
  display: flex;
  justify-content: center;
  gap: 6rem;
  position: relative;
  padding: 1rem 0;
}

.home-approach-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
  margin-top: -1px; /* Half of height to center perfectly */
}

.home-timeline-item {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 200px;
  padding: 0 1rem;
}

.home-timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  border: 2px solid #3498db;
  color: #3498db;
  background: white;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  /* Position the icon to overlap the line */
  transform: translateY(-50%);
  top: 50%;
}

/* Remove the connecting lines between circles since we have one continuous line */
.home-timeline-item:not(:last-child)::after {
  display: none;
}

/* Adjust the content to account for the negative margin */
.home-timeline-content {
  margin-top: -20px; /* Half of icon height to compensate for the overlap */
}

/* Combined hover effect for timeline icons */
.home-timeline-item:hover .home-timeline-icon {
  transform: translateY(-60%) scale(1.1);
  background: #4da5e0;
  color: white;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.home-timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.home-timeline-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Add connecting lines between circles */
.home-timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -3rem;
  width: 6rem;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .home-approach-timeline {
    gap: 4rem;
  }

  .home-timeline-item:not(:last-child)::after {
    width: 4rem;
    right: -2rem;
  }
}

@media (max-width: 768px) {
  .home-approach-timeline {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
  }

  .home-approach-timeline::before {
    top: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: 100%;
    background: #e0e0e0;
  }

  .home-timeline-item {
    width: 100%;
    max-width: 300px;
    padding: 1.5rem 0;
  }

  .home-timeline-item:not(:last-child)::after {
    display: none;
  }

  .home-timeline-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .home-timeline-content h4 {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .home-section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .home-approach-timeline {
    gap: 2.5rem;
  }

  .home-timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .home-timeline-content h4 {
    font-size: 1.2rem;
  }

  .home-timeline-content p {
    font-size: 0.9rem;
  }
}

/* Testimonials Section */
.home-testimonials {
  padding: 4rem 0;
  background: #f8f9fa;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.home-testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.home-testimonial-card:hover {
  transform: translateY(-5px);
}

.home-quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
  position: relative;
  padding: 0 1.5rem;
}

.home-quote::before,
.home-quote::after {
  content: '"';
  font-size: 2.5rem;
  color: #1a1a2e;
  font-weight: bold;
  position: absolute;
  opacity: 0.2;
}

.home-quote::before {
  top: -15px;
  left: 0;
}

.home-quote::after {
  bottom: -30px;
  right: 0;
}

.home-author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.home-author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}

.home-author-title {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .home-testimonial-card {
    padding: 2rem 1.5rem;
  }

  .home-quote {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Contact Section */
.home-contact {
  padding: 6rem 0;
  text-align: center;
  background-color: #fff;
}

.home-contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-contact .home-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.home-contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.home-contact-actions {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
}

.home-contact-actions .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  background: #1a72c8;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.home-contact-actions .btn:hover {
  background: #3f84c9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-contact {
    padding: 4rem 0;
  }

  .home-contact .home-section-title {
    font-size: 2rem;
  }

  .home-contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .home-contact-actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}

/* =============================
   Portfolio Page | Origin: design1/design2/design3
   ============================= */

/* Portfolio Hero Section | Origin: design2 */

/* Portfolio Stats Section | Origin: design1 */

/* Portfolio Filters Section | Origin: design1 */

/* Portfolio Grid Section | Origin: design3 */

/* =============================
   Team Page | Origin: design2/design3
   ============================= */

/* Team Hero Section | Origin: design2 */

/* Team Principles Section | Origin: design3 */

/* Team Grid | Origin: design1 */

/* =============================
   Contact Page | Origin: Nonw
   ============================= */
