* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Top Bar */
    .topbar {
      background-color: #ffc107;
      color: white;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar .email {
      margin-left: 100px;
      font-size: 14px;
    }

    .topbar .social-icons {
      margin-right: 100px;
      display: flex;
      gap: 15px;
    }

    .topbar .social-icons a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    /* Navbar */
    .navbar {
      background-color: #000;
      color: orange;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 36px;
      z-index: 999;
    }

    .navbar .logo {
      margin-left: 100px;
      font-size: 22px;
      font-weight: bold;
    }

    .navbar .nav-links {
      margin-right: 100px;
      display: flex;
      gap: 20px;
    }

    .navbar .nav-links a {
      color: orange;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    .navbar .nav-links a:hover {
      color: white;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      margin-right: 20px;
      z-index: 1001;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: orange;
      margin: 4px 0;
      transition: all 0.3s ease;
      display: block;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .topbar,
      .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .topbar .email,
      .navbar .logo {
        margin-left: 20px;
      }

      .topbar .social-icons {
        margin-right: 20px;
      }

      .hamburger {
        display: flex;
        margin-right: 20px;
      }

      .navbar .nav-links {
        position: absolute;
        top: 90px;
        right: 0;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 20px;
        display: none;
        margin: 0;
        gap: 10px;
      }

      .navbar .nav-links.active {
        display: flex;
      }

      .hamburger.close span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .hamburger.close span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.close span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    }
      
     /* === Hero Section === */
    .hero {
      position: relative;
      height: 100vh;
      background: url('hero-bg.jpg') center/cover no-repeat;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1); /* 10% opacity overlay */
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 40px;
      color: white;
    }

    .hero-left {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
    }

    .hero-left h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .hero-left p {
      font-size: 18px;
      margin-bottom: 20px;
        color: aliceblue;
    }

    .hero-left button {
      padding: 10px 20px;
      background: transparent;
      color: white;
       border: 2px solid orange;
      cursor: pointer;
      font-size: 16px;
    }

      .hero-left button:hover {
      background-color: orange;
      color: black;
          border: 2px solid white;
          
    }
      
      
      
      
      
      
    .hero-right {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
    }

    .hero-right img {
      max-width: 100%;
      height: auto;
      border: 5px solid white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    } 
      
    /* === About Section === */
.about-section {
  display: flex;
  flex-wrap: nowrap; /* force side-by-side on larger screens */
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  gap: 40px;
  
}

.about-left {
  flex: 0 0 40%;
    background-color: #f2f2f2;
    padding: 20px;
}

.about-left h2 {
  font-size: 16px;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-left button {
  padding: 10px 20px;
  font-size: 10px;
   background: transparent;
  color: black;
  border: 2px solid orange;
  cursor: pointer;
 
}

 .about-left a {
         color: black;
  text-decoration: none;
}       
      
      
      
      
.about-left button:hover {
 background-color: orange;
      color: black;
          border: 2px solid white;
}

.about-right {
  flex: 0 0 60%;
     background-color: darkgray;
     line-height: 1.58;  
    padding: 20px;
  
}

.about-right img {
   width: 100%;
    height: 365px;   
  max-width: 100%;
    
 
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

 /* === Split Image Section === */
.split-image-section {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  padding: 60px 100px;
  gap: 20px;
   
}

.split-left {
  flex: 0 0 65%;
    background-color: darkgray;
     padding: 20px;  
    line-height: 1.58;  
}

.split-left img {
  width: 100%;
  height: 100%;
 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.split-right {
    background-color: #f2f2f2;
    line-height: 1.58;  
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
     padding: 20px;  
}

.split-right img {
  width: 100%;
  height: 270px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}     
      
  .split-text-box {
 
  padding: 20px;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 265px; 
  line-height: 1.58;  
  color: black;
}

.split-text-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.split-text-box p {
  font-size: 16px;
  margin-bottom: 15px;
}

   .split-text-box a {
         color: white;
  text-decoration: none;
}    
      
      
      
      
.split-text-box button {
  padding: 8px 14px;
  font-size: 14px;
  background: transparent;
  color: white;
  border: 2px solid orange;
  cursor: pointer;
     width: fit-content;
      margin: 0 auto;
}

.split-text-box button:hover {
 background-color: orange;
      color: black;
          border: 2px solid white;
}
    
      
    /* Footer */
.footer {
  background-color: orange;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}    
   
      
 .card-container {
      display: grid;
      
     margin-right:120px;
    margin-left: 120px;
     
    }

    .card {
      background: #fff;     
      display: flex;
      flex-direction: column;
       font-size:21px;
        line-height: 1.5;
  background-color: #ffffff;
  
    }     
      
      
      
      
      
      
      
      
/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 20px;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-right img {
    width: 100%;
    max-width: 100%;
  }
    
 .split-image-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .split-left,
  .split-right {
    flex: 1 1 100%;
  }   
    
    
    
}