 /* --- Basic Reset & Variables --- */
    

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            /* To demonstrate sticky header: */
            min-height: 200vh; 
            padding-top: 80px; /* Space for the fixed header */
        }














 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@600;700&family=Montserrat:wght@500&display=swap');
        .hero-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      background-position: center;
	    background-size: cover;
        background-repeat: no-repeat;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
      padding: 20px;
      animation: fadeIn 1s ease-in-out;
    }

    .hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: 3rem;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    #typewriter {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      color: #ffcc00;
      min-height: 40px;
      margin-bottom: 20px;
    }

    .hero-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.1rem;
      line-height: 1.7;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-outline {
      font-family: 'Montserrat', sans-serif;
      padding: 12px 28px;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: #ffcc00;
      color: #000;
      border: none;
      font-weight: 600;
    }

    .btn-primary:hover {
      background: #ffdb4d;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #ffcc00;
      color: #ffcc00;
      font-weight: 500;
    }

    .btn-outline:hover {
      background: #ffcc00;
      color: #000;
      transform: translateY(-2px);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(25px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      #typewriter {
        font-size: 1.2rem;
      }
      .hero-desc {
        font-size: 1rem;
      }
    }




    







/*partner section*/

 @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width:768px) {
      #partners h2 { font-size:24px; }
      .partners-track { gap:40px; animation-duration: 35s; }
      .partner-item div { width:70px; height:70px; }
    }

    @media (max-width:480px) {
      .partners-track { gap:30px; animation-duration: 45s; }
      .partner-item div { width:60px; height:60px; }
      .partner-item p { font-size:13px; }
    }




/*award section*/
     @keyframes fadeInLeft {
      from {opacity:0;transform:translateX(-50px);}
      to {opacity:1;transform:translateX(0);}
    }
    @keyframes fadeInRight {
      from {opacity:0;transform:translateX(50px);}
      to {opacity:1;transform:translateX(0);}
    }
    @keyframes fadeIn {
      from {opacity:0;}
      to {opacity:1;}
    }

    @media (max-width:900px){
      section div:first-child{
        text-align:center;
      }
      section img{
        margin-top:30px;
      }
    }
