/* Base Variables */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --color-dark: #1a1a1a;
    --color-light: #f8f8f8;
    --color-accent: #3464e0;
    --color-secondary: #6e6e6e;
    --transition: all 0.3s ease;
  }
  
  /* Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1 0 auto;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
  }
  
  h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  /* Buttons */
/* inspired form gumroad website */
.button {
    --bg: #000;
    --hover-bg: #2764ff;
    --hover-text: #000;
    color: #fff;
    cursor: pointer;
    border: 1px solid var(--bg);
    border-radius: 4px;
    padding: 0.8em 2em;
    background: var(--bg);
    transition: 0.2s;
    font-weight: bold;
  }
  
  .button:hover {
    color: var(--hover-text);
    background: var(--hover-bg);
    font-weight: bold;
  }
  
  .button:active {
    transform: translate(0);
    box-shadow: none;

  }
  
  .button-primary:active {
    transform: translate(0);
    box-shadow: none;
  }
  
  .button-primary {
    --bg: #000;
    --hover-bg: #2764ff;
    --hover-text: #000;
    color: #fff;
    cursor: pointer;
    border: 1px solid var(--bg);
    border-radius: 4px;
    padding: 0.8em 2em;
    background: var(--bg);
    transition: 0.2s;
    font-weight: bold;

  }
  
  .button-primary:hover {
    color: var(--hover-text);
    background: var(--hover-bg);
    font-weight: bold;

  }
  
  .button-secondary {
    --bg: #000;
    --hover-bg: #2764ff;
    --hover-text: #000;
    color: #fff;
    cursor: pointer;
    border: 1px solid var(--bg);
    border-radius: 4px;
    padding: 0.8em 2em;
    background: var(--bg);
    transition: 0.2s;
    font-weight: bold;

  }
  
  .button-secondary:hover {
    color: var(--hover-text);
    background: var(--hover-bg);
    font-weight: bold;

  }
  
  /* Header & Navigation */
  .site-header {
    background-color: var(--color-dark, #1a1a1a);
    color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .site-header.transparent {
    background-color: transparent;
    box-shadow: none;
  }
  
  .site-header.scrolled {
    background-color: var(--color-dark, #1a1a1a);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
  }
  
  .nav-links {
    display: flex;
    gap: 2.5rem;
  }
  
  .nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s, font-variation-settings 0.3s;
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    font-variation-settings: 'wght' 400;
  }
  
  .nav-links a:hover, .nav-links a.active {
    color: var(--color-accent, #c3d4ff);
    border-bottom: 2px solid var(--color-accent, #c3d4ff);
    font-variation-settings: 'wght' 700;
  }
  
  .nav-links a.dark {
    color: var(--color-dark);
  }
  
  .nav-links a.dark:hover, .nav-links a.dark.active {
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    font-variation-settings: 'wght' 700;
  }
  
  /* Hero styles */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .hero-tagline {
    font-size: 1.5rem;
    line-height: 1.5;
    opacity: 0.9;
  }
  
  /* Focus section */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background-color: white;
    padding: 2rem;
  }
  
  .card:hover {
    transform: translateY(0px);
  }
  
  .card-number {
    font-size: 1.5rem;
    color: var(--color-accent, #4a7bff);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .card-line {
    width: 50px;
    height: 3px;
    background-color: var(--color-accent, #4a7bff);
  }
  
  /* Form styles */
  .form-container, .application-form {
    background-color: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    margin-top: 2rem;
  }
  
  .form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
  }
  
  .form-section:last-child {
    border-bottom: none;
  }
  
  .form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
  }
  
  .form-help {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--color-accent, #3464e0);
  }
  
  .form-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
  }
  
  .privacy-notice {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .error {
    border-color: #f44336 !important;
    background-color: rgba(244, 67, 54, 0.05);
  }
  
  /* About page specific */
  .about-hero {
    height: 20vh;
    min-height: 400px;
    background-image: url('/assets/cityscape.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 72px;
  }
  
  .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .rounded-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .philosophy-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .philosophy-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .card-icon {
    color: var(--color-accent, #4a7bff);
    margin-bottom: 1.5rem;
  }
  
  .philosophy-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .cta-section {
    background-color: var(--color-dark, #1a1a1a);
    color: white;
    text-align: center;
    padding: 4rem 0;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--color-accent, #4a7bff);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .cta-button:hover {
    background-color: #3d6ae8;
  }
  
  /* Contact page specific */
  .contact-container {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 80vh;
    background-color: var(--color-light);
  }
  
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
  }
  
  .contact-details {
    margin-top: 3rem;
  }
  
  .contact-item {
    display: flex;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    flex: 0 0 50px;
    color: var(--color-accent, #3464e0);
  }
  
  .contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-text p, .contact-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-text a:hover {
    color: var(--color-accent, #3464e0);
  }
  
  /* Thank you page */
  .thankyou-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: var(--color-light, #f8f8f8);
  }
  
  .thankyou-content {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .action-buttons {
    margin-top: 2.5rem;
  }
  
  /* Error page */
  .error-container {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
  }
  
  .error-content {
    max-width: 600px;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .error-logo {
    margin-bottom: 2rem;
  }
  
  .error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--color-dark, #1a1a1a);
    color: #ffffff;
    padding: 1rem 0 0.5rem;
    position: relative;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-logo {
    flex: 0 0 auto;
  }
  
  .footer-logo-image {
    height: 30px;
    filter: brightness(0) invert(1);
  }
  
  .footer-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  
  .footer-nav {
    flex: 1;
    min-width: 160px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  
  .footer-links li {
    margin: 0;
  }
  
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
  }
  
  .footer-links a:hover {
    color: var(--color-accent, #c3d4ff);
  }
  
  .footer-contact {
    flex: 1;
    min-width: 160px;
    text-align: right;
  }
  
  address {
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }
  
  address a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  address a:hover {
    color: var(--color-accent, #c8d6f8);
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 10px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .social-icon.linkedin::before {
    content: "in";
    font-weight: bold;
    font-size: 0.7rem;
  }
  
  .social-icon.twitter::before {
    content: "𝕏";
    font-weight: bold;
    font-size: 0.7rem;
  }
  
  .social-icon.instagram::before {
    content: "ig";
    font-weight: bold;
    font-size: 0.7rem;
  }
  
  .social-icon:hover {
    background-color: var(--color-accent, #b7cbff);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 0.7rem;
    color: #888888;
  }
  
  /* Partner section on homepage */
  .partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .partner-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent, #00103d);
  }
  
  .partner-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .partner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Helper classes */
  .centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .centered-subheading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
  }
  
  /* Mobile menu and responsiveness */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  @media (max-width: 992px) {
    .partner-grid, .contact-grid, .two-column {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .hero-tagline {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background-color: var(--color-dark);
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      z-index: 99;
    }
    
    .nav-links.show {
      transform: translateY(0);
      opacity: 1;
    }
    
    .form-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    
    .site-nav {
      padding: 0.5rem 0;
    }
    
    .site-header {
      padding: 0.5rem 0;
    }
    
    .container {
      padding: 0 1rem;
    }
    
    .section {
      padding: 3rem 0;
    }
    
    .footer-container, .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.5rem;
    }
    
    .footer-contact {
      text-align: center;
    }
    
    .footer-links, .social-icons {
      justify-content: center;
    }
    
    .thankyou-content {
      padding: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.75rem;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .philosophy-cards {
      grid-template-columns: 1fr;
    }
  }