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

 body {
   background: #f7f9fc;
   color: #222;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }


 header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 15px 20px;
   background-color: #1e3a8a;
   color: white;
   flex-wrap: wrap;
 }

 header .logo {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 header .logo img {
   height: 45px;
   border-radius: 8px;
 }

 header .nav-links {
   list-style: none;
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }

 header .nav-links a {
   text-decoration: none;
   color: whitesmoke;
   padding: 7px 18px;
   border-radius: 30px;
   background: linear-gradient(135deg, #005eff, #00b2ff);
   font-weight: 600;
   box-shadow: 0 4px 10px rgba(0, 90, 255, 0.4);
   transition: 0.3s;
   font-size: 0.9rem;
 }


  header .nav-links a:hover {
    color: #fca311;
  }

 @media (max-width: 768px) {
   header {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }

   header .nav-links {
     justify-content: center;
     width: 100%;
     gap: 10px;
   }
 }

 .back-to-top {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: linear-gradient(135deg, #005eff, #00b2ff);
   color: white;
   width: 50px;
   height: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 24px;
   text-decoration: none;
   border-radius: 50%;
   box-shadow: 0 6px 12px rgba(0, 90, 255, 0.4);
   transition: 0.3s;
   z-index:999;
 }
.back-to-top:hover {
   background: #fca311;
   color: #003366;
   transform: scale(1.1);
 }


 .explore-btn {
   position: fixed;
   bottom: 40px;
   left: 20px;
   padding: 14px 26px;
   background: linear-gradient(135deg, #2c80b8, #2575fc);
   color: white;
   border-radius: 50px;
   text-decoration: none;
   font-size: 1rem;
   box-shadow: 0 10px 25px rgba(37, 117, 252, 0.35);
   transition: 0.4s;
   z-index:999;
 }


 .explore-btn:hover {
   background: #fca311;
   color: #003366;
   transform: scale(1.1);
 }

 @media (max-width: 600px) {
   .explore-btn {
     padding: 12px 18px;
     font-size: 0.85rem;
     bottom: 20px;
     left: 10px;
   }
 }

 .hero h1 {
   font-size: 3rem;
   margin-bottom: 10px;
 }

 .hero a {
   margin-top: 20px;
   display: inline-block;
   padding: 12px 24px;
   background: #007bff;
   border-radius: 8px;
   color: #fff;
   font-size: 1.1rem;
 }

 #career-inspiration {
   position: relative;
   width: 100%;
   height: 500px;
   overflow: hidden;
   margin-bottom: 4rem;


 }

 #career-inspiration .slide {
   position: absolute;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;

 }

 #career-inspiration .slide.active {
   opacity: 1;
 }

 #career-inspiration .overlay {
   position: absolute;
   bottom: 50px;
   left: 50px;
   color: #fff;
   background: rgba(0, 0, 0, 0.5);
   padding: 20px;
   border-radius: 12px;

 }

 #career-inspiration h2 {
   font-size: 2rem;
   margin-bottom: 0.5rem;
 }

 #career-inspiration p {
   font-size: 1.2rem;
 }

 @media (max-width: 768px) {
   #career-inspiration {
     height: 350px;
   }

   #career-inspiration .overlay {
     bottom: 30px;
     left: 20px;
     padding: 15px;
     max-width: 90%;
   }

   #career-inspiration h2 {
     font-size: 1.5rem;
   }

   #career-inspiration p {
     font-size: 1rem;
   }
 }

 @media (max-width: 480px) {
   #career-inspiration {
     height: 250px;
   }

   #career-inspiration .overlay {
     bottom: 20px;
     left: 10px;
     padding: 10px;
   }

   #career-inspiration h2 {
     font-size: 1.2rem;
   }

   #career-inspiration p {
     font-size: 0.9rem;
   }
 }



 .testimonials {
   padding: 80px 40px;
   background: #eef4ff;
   text-align: center;
 }

 .testimonials h2 {
   font-size: 2.4rem;
   margin-bottom: 10px;
 }

 .testimonials p {
   margin-bottom: 50px;
   color: #555;
 }

 .testimonial-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
 }

 .testimonial-card {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   height: 380px;
   cursor: pointer;
   transition: 0.4s;
 }

 .testimonial-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1.05);
   transition: 0.5s;
 }

 .testimonial-card:hover img {
   transform: scale(1.1);
 }

 .testimonial-content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   color: white;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding-bottom: 2px;
   text-align: center;
   opacity: 1;

 }

 .partners-section {
   padding: 60px 20px;
   background: #f9fafb;
   text-align: center;
 }

 .partners-section .section-title {
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 40px;
   color: #111827;
 }

 .partners-grid {
   display: grid;
   gap: 30px;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   max-width: 1000px;
   margin: 0 auto;
 }


 .partner-card {
   background: rgb(230, 201, 164);
   padding: 25px;

   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
 }



 .partner-card img {
   width: 90%;
   max-height: 130px;
   object-fit: contain;
   margin-bottom: 15px;
 }

 .partner-card h3 {
   font-size: 1.1rem;
   margin-bottom: 15px;
   color: #1f2937;
 }


 .visit-btn {
   display: inline-block;
   margin-top: 10px;
   padding: 10px 18px;
   background: #2563eb;
   color: white;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   transition: background 0.3s;
 }

 .visit-btn:hover {
   background: #1e40af;
 }


 .container {
   max-width: 1100px;
   margin: auto;
 }


 .lead {
   color: #555;
   margin-bottom: 40px;
   text-align: center;
   font-size: 1.2rem;
   font-weight: 500;
 }


 .scholarship-grid {
   display: grid;
   gap: 25px;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
 }

 .scholarship-card {
   background: linear-gradient(145deg, #bdbdbd, #ffffff);
   border-radius: 18px;
   padding: 25px;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .scholarship-card h3 {
   background: black;
   padding: 13px;

 }

 .scholarship-card h3 {
   color: #ffffff;
   margin-top: 0;
   margin-bottom: 15px;
   font-size: 1.6rem;
 }

 .scholarship-card ul,
 .scholarship-card ol {
   padding-left: 20px;
   margin-top: 10px;
 }

 .scholarship-card li {
   margin-bottom: 6px;
   line-height: 1.5;
 }

 .btn {
   display: inline-block;
   background-color: #0098d8;
   color: #fff;
   text-decoration: none;
   padding: 10px 20px;
   border-radius: 12px;
   margin-top: 15px;
   font-size: 1rem;
   font-weight: 400;
   transition: background-color 0.3s ease;
 }

 .btn:hover {
   background-color: #0098dd;
 }

 .link {
   color: #0098d8;
   text-decoration: underline;
 }

 .link:hover {
   opacity: 0.85;
 }

 .contact-section {
   padding: 60px 20px;
   background: #f9fafb;
 }

 .contact-title {
   text-align: center;
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 40px;
   color: #1f2937;
 }


 .contact-container {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   max-width: 1100px;
   margin: 0 auto;
   justify-content: center;
 }

 .contact-form {
   flex: 1 1 400px;
   background: white;
   padding: 30px;
   border-radius: 16px;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
 }

 .contact-label {
   display: block;
   margin-bottom: 6px;
   font-weight: 600;
   color: #374151;
 }

 .contact-input,
 .contact-textarea {
   width: 100%;
   padding: 12px 15px;
   margin-bottom: 18px;
   border-radius: 10px;
   border: 1px solid #d1d5db;
   font-size: 1rem;
   transition: 0.3s ease;
   background: #f3f4f6;
 }

 .contact-input:focus,
 .contact-textarea:focus {
   border-color: #2563eb;
   background: #fff;
   box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
   outline: none;
 }

 .contact-button {
   width: 100%;
   padding: 14px;
   background: #2563eb;
   color: white;
   font-weight: 600;
   border: none;
   border-radius: 10px;
   font-size: 1rem;
   cursor: pointer;
   transition: 0.3s ease;
 }

 .contact-button:hover {
   background: #1e40af;
 }

 .contact-cards-container {
   flex: 1 1 300px;
   display: grid;
   gap: 25px;
 }

 .contact-card {
   background: white;
   padding: 25px;
   border-radius: 16px;
   text-align: center;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
   transition: 0.3s ease;
 }

 .contact-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
 }

 .card-icon {
   width: 50px;
   margin-bottom: 10px;
 }

 .contact-card-title {
   font-size: 1.3rem;
   margin-bottom: 8px;
   color: #1f2937;
 }

 .contact-card p {
   color: #6b7280;
   margin-bottom: 15px;
   font-size: 0.95rem;
 }

 .contact-card a {
   display: inline-block;
   padding: 10px 16px;
   background: #10b981;
   color: white;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.3s ease;
 }

 .contact-card a:hover {
   background: #059669;
 }

 .whatsapp-card a {
   background: #25d366;
 }

 .whatsapp-card a:hover {
   background: #1da851;
 }

 .call-card a {
   background: #2563eb;
 }

 .call-card a:hover {
   background: #1e40af;
 }

 @media (max-width: 768px) {
   .contact-container {
     flex-direction: column;
   }
 }



 footer {
   text-align: center;
   padding: 20px;
   margin-top: 40px;
   background: #0a4a8a;
   color: white;
 }


 @media(max-width:768px) {
   .contact-container {
     flex-direction: column;
   }
 }