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

   body {
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
      background: #f4f4f4;
    }
    
    
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #333;
      color: #fff;
      padding: 20px 30px;
    }
    header nav a {
      color: #fff;
      margin: 0 10px;
      text-decoration: none;
      position: relative;
    }
    header nav a:hover::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background: yellow;
      bottom: -5px;
      left: 0;
    }
  
 .banner {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background: linear-gradient(135deg, #6e8efb, #a777e3);
      color: white;
      height: 300px;
      padding: 50px;
    }

    .banner-content {
      max-width: 500px;
    }

    .banner h1 {
      font-size: 48px;
      margin: 0 0 10px;
    }

    .banner p {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .banner a {
      text-decoration: none;
      background-color: white;
      color: #6e8efb;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .banner a:hover {
      background-color: #e0e0e0;
    }
    
       .social-section {
      text-align: center;
      padding: 60px 20px;
    }

    .social-section h2 {
      font-size: 32px;
      color: #333;
      margin-bottom: 10px;
    }

    .social-section p {
      font-size: 18px;
      color: #666;
      margin-bottom: 30px;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 85px;
    }

    .social-item {
      text-align: center;
      transition: transform 0.3s ease;
    }

    .social-item:hover {
      transform: scale(1.1);
    }

    .social-item img {
      width: 80px;
      height: 80px;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .social-item span {
      display: block;
      margin-top: 10px;
      font-size: 16px;
      color: #444;
      font-weight: bold;
    }
    
   
    .gallery-section {
      padding: 60px 30px;
      background-color: #fff;
      text-align: center;
      background: linear-gradient(135deg, #6e8efb, #a777e3);
    }

    .gallery-section h2 {
      font-size: 32px;
      margin-bottom: 10px;
      color: #333;
    }

    .gallery-section p {
      font-size: 16px;
      color: black;
      margin-bottom: 30px;
    }

    .gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 6px 0;
      scroll-snap-type: x mandatory;
    }

    .gallery-scroll::-webkit-scrollbar {
      height: 10px;
    }

    .gallery-scroll::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 10px;
    }

    .gallery-scroll::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    .gallery-item {
      flex: 0 0 auto;
      width: 350px;
      height: 350px;
      scroll-snap-align: start;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    
    h2 {
      text-align: center;
      color: #333;
      margin-bottom: 1rem;
    }

      .header-2 {
      background: linear-gradient(90deg, #5f0a87, #a4508b);
      padding: 10px 40px;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 5px;
    }

    header p {
      font-size: 1.2rem;
      color: #e0e0e0;
    }

 .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px 80px;
      background-color: white;
      border-radius: 15px;
      margin: 40px auto;
      max-width: 1200px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .text-content {
      max-width: 600px;
    }

    .text-content h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .text-content h1 {
      font-size: 50px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .text-content h1 span {
      color: #7b1fa2;
    }

    .text-content p {
      font-size: 16px;
      margin-bottom: 30px;
      font-weight: bolder;
      color: #666;
    }

    .text-content .buttons {
      display: flex;
      gap: 15px;
    }

    .text-content .buttons a {
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: 500;
      transition: 0.3s;
    }

    .text-content .buttons .primary {
      background-color: #000;
      color: #fff;
    }

    .text-content .buttons .secondary {
      border: 2px solid #ccc;
      color: #555;
    }

    .text-content .buttons a:hover {
      opacity: 0.9;
    }

    .profile-img {
      width: 200px;
      height: 200px;
      border-radius: 100%;
      border: 2px solid limegreen;
      overflow: hidden;
    }

    .profile-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
   
   footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}