:root {
    --primary-color: #07263b;
    --secondary-color: #e9eeea;
    --text-color: #ffffff;
    --nav-height: 60px;
  }
 
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Navbar Start */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    background-color: var(--primary-color);
    color: var(--text-color);
    height: var(--nav-height);
    position: relative;
    z-index: 1;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navlinks {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .navlinks a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
  }
  
  .create-cv-button,
  .navlinks a {
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .create-cv-button:hover,
  .navlinks a:hover {
    transform: scale(1.05);
    color: #d4e0de;
  }
  
  .create-cv-button a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bolder;
  }
  
  .create-cv-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .create-cv-button:hover {
    background-color: #d4e0de;
  }
  
  .nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
  }
  
  /* Hero Section Start */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    height: 100vh;
    background: linear-gradient(135deg, #e0e7ff, #e9eeea);
  }
  
  .hero-text {
    max-width: 50%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards ease-in;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333;
  }
  
  .hero .highlight {
    color: #7a5ef8;
  }
  
  .subtitle {
    margin-top: 10px;
    color: #666;
    font-size: 1rem;
  }
  
  .cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
  }
  
  .primary-button,
  .secondary-button {
    padding: 15px 25px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .primary-button {
    background-color: #34c759;
    color: #fff;
    border-radius: 5px;
  }
  
  .primary-button a {
    text-decoration: none;
    color: var(--text-color);
  }
  
  .secondary-button {
    background-color: transparent;
    color: #7a5ef8;
    border: 2px solid #7a5ef8;
    border-radius: 5px;
  }
  
  .secondary-button a {
    text-decoration: none;
    color: #7a5ef8;
  }
  
  .primary-button:hover {
    background-color: #28a745;
  }
  
  .secondary-button:hover {
    background-color: #7a5ef8;
    color: #fff;
  }
  
  .hero-images {
    position: relative;
    max-width: 45%;
    display: flex;
    align-items: flex-end;
  }
  
  .hero-images .main-image {
    width: 100%;
    border-radius: 10px;
  }
  
  .hero-images .secondary-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer Start */
  .footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 2rem 0;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: auto;
  }
  
  .footer-social{
    margin-top: 15px;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #e9eeea;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #d4e0de;
  }
  
  .footer-bottom {
    font-size: 0.875rem;
    color: #e9eeea;
  }
  
  /* Footer Responsiveness */
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
  }
  
  /* Button Hover Effects */
  .primary-button:hover,
  .secondary-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Navbar Responsive Display */
  @media (max-width: 768px) {
    .navlinks {
      display: none; /* Ensure it stays hidden initially */
      flex-direction: column;
      position: absolute;
      top: var(--nav-height);
      right: 0;
      background-color: var(--primary-color);
      width: 100%;
      text-align: center;
      padding: 1rem 0;
      transition: max-height 0.3s ease;
      overflow: hidden;
      max-height: 0;
    }
    
    .navlinks.active { /* Toggle this class when the menu is open */
      display: flex;
      max-height: 300px; /* Adjust based on content height */
    }
  
    .nav-toggle {
      display: block;
    }
  
    .create-cv-button {
      display: none;
    }
  
    .hero {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      text-align: center;
      height: auto;
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    .hero-images {
      max-width: 100%;
      margin-top: 20px;
    }
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }