        :root {
            --primary-blue: #1a237e;
            --royal-blue: #0d47a1;
            --light-blue: #42a5f5;
            --white: #ffffff;
            --off-white: #f5f5f5;
            --dark-gray: #333333;
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            color: var(--dark-gray);
        }

     
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 10px 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    max-height: 40px; 
    width: auto;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.contact-item:hover {
    color: var(--primary-blue);
}

.whatsapp-link:hover {
    color: #25D366;
}

.contact-label {
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite, blink 1.5s ease infinite;
    white-space: nowrap;
}

/* Responsive for larger screens */
@media (min-width: 768px) {
    .header-contact {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .contact-items {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


@media (min-width: 1200px) {
    .header-contact {
        gap: 30px;
    }
}

/* Animations */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Desktop View (768px and above) */
@media (min-width: 768px) {
    header {
        padding: 10px 45px;
    }
    
   
    
    .contact-items {
        flex-direction: row;
        gap: 20px;
    }
    
    .contact-item {
        font-size: 16px;
        font-weight: bold;
    }
    
    .contact-label {
        font-size: 21px;
        margin-bottom: 0;
        margin-right: 50px;
    }
}

/* Large Desktop View (1200px and above) */
@media (min-width: 1200px) {
    .logo img {
        max-height: 60px;
    }
    
    
}

@media (max-width: 992px) {
    .logo img {
        max-height: 60px;
    }
}

        /* Banner Section */
        .banner {
         opacity:0.9;
         background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8))!important;
         color: var(--white);
         background-size: cover;
      height:600px;
               position: relative;
         background-image: url('../images/mpu_banner.jpg');
         /* margin-top: 0%; */
         background-repeat: no-repeat;
        }
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-image: url('../images/mpu_banner.jpg');
    opacity: 0.6;
    z-index: 0;  height:600px;
      background-repeat: no-repeat; background-size: cover;
}
       

        .banner-content {
            flex: 1;
            max-width: 600px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--white);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* .banner-widget {
            flex: 0 0 350px;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgb(0, 0, 0);
            position: relative;
            z-index: 1;
            animation: fadeInRight 1s ease-out;
            color: var(--dark-gray);
        background-color: yellow;
        top: 90px;
       }
        

        .banner-widget h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--light-blue);
            outline: none;
        }

        .widget-button {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .widget-button:hover {
            background-color: var(--royal-blue);
        } */




        /* Milestone Section */
        .milestones {
            padding: 80px 5%;
            background-color: var(--off-white);
            text-align: center;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--light-blue);
            margin: 0 auto;
            border-radius: 2px;
        }

        .milestone-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .milestone-item {
            flex: 1;
            min-width: 200px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .milestone-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .milestone-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .milestone-text {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }



.achievements-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: #003087; 
  margin-top: 10px;
}

.achievement-card {
  background: linear-gradient(to right, #004aad, #004aadcc);
  color: white;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  min-height: 150px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-card h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.achievement-card h2 span {
  font-size: 18px;
  color: #fff;
}

.achievement-card p {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .achievement-card {
    width: 100%;
  }
}


        /* Recruiters Slider */
        .recruiters {
            padding: 80px 5%;
            background-color: var(--white);
            overflow: hidden;
        }

        .recruiters-slider {
            display: flex;
            animation: slide 30s linear infinite;
            width: calc(200px * 14);
        }

        .recruiters-slider:hover {
            animation-play-state: paused;
        }

        .recruiter-item {
            width: 200px;
            margin: 0 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .recruiter-item img {
            max-width: 150px;
            max-height: 80px;
            object-fit: contain;
            
            transition: all 0.3s;
        }

        .recruiter-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }



        /* program section  */

.courses-section {
  background: url('../images/program_image.jpg') no-repeat center center / cover;
  padding: 60px 15px;
  color: #fff;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 1300px;
  margin: auto;
}

.courses-section h2 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #fff;
}

.courses-section .highlight {
  font-weight: bold;
  color: #ffcc00;
}

.courses-section .count {
  color: red;
  font-weight: bold;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  width: 100%;
}

.course {
  background-color: #1f1f1f;
  border: 1px solid #ffcc00;
  padding: 15px 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s;
  text-decoration: none;
  cursor: pointer;


  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.course:hover {
  transform: scale(1.05);
  background-color: #2a2a2a;

}

.course img {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);


    display: block;
  margin: 0 auto 8px auto;
}


@media (max-width: 768px) {
  .courses-section h2 {
    font-size: 1.4rem;
  }
  .course {
    font-size: 13px;
  }
  .course img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 30px 10px;
  }
  .courses-section h2 {
    font-size: 1.2rem;
  }
}



        .programs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(13, 71, 161, 0.9));
        }

        .programs .section-title h2,
        .programs .section-title::after {
            color: var(--white);
            background-color: var(--light-blue);
        }

        .program-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .program-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, background-color 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .program-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .program-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--light-blue);
        }

        .program-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .program-card p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        /* Collaborations */
      
        .collaborations {
  padding: 60px 0;
 
  text-align: center;
}

.section-title h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #222;
}

.collab-full-wrapper {
  width: 100%;
  overflow: hidden;
}

.collab-full-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.collab-full-image:hover {
  transform: scale(1.02);
}


.collab-full-wrapper {
  max-height: 600px; 
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 22px;
  }

  .collab-full-wrapper {
    max-height: 300px;
  }
}

        /* Gallery */
        .gallery {
            padding: 80px 5%;
             background-color: var(--white);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-top: 30px;
            background-color: #f0eded; 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
        }

        .gallery-item {
            height: 180px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
            transition: transform 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

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

        /* Floating Apply Button */
        .floating-apply {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 10px;
            border-radius: 5px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-weight: 600;
            text-decoration: none;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .floating-apply:hover {
            background-color: var(--royal-blue);
            transform: translateY(-50%) scale(1.05);
            color: white !important;
        }


        /* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    right: 30px;
    top: 60%;
    background-color: #25D366; 
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}




        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 30px 5%;
            position: relative;
            text-align: center;
        }

        .footer-strip {
            background-color: var(--light-blue);
            height: 10px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        .footer-apply {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid transparent;
            margin-top: 20px;
        }

        .footer-apply:hover {
            background-color: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 7));
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .gallery-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .banner {
                flex-direction: column;
                text-align: center;
                padding-top: 120px;
            }

            .banner-content {
                margin-bottom: 50px;
                max-width: 100%;
            }

            .banner-widget {
                width: 100%;
                max-width: 500px;
            }

             .banner::before {
                  background: url('images/mobile_banner.jpg') no-repeat center center/cover;
            }

            .milestone-item {
                min-width: 150px;
            }

            .gallery-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
           

            .banner h1 {
                font-size: 2.2rem;
            }

            .banner p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .milestone-number {
                font-size: 2.5rem;
            }

            .floating-apply {
                right: 15px;
                padding: 12px 8px;
                font-size: 0.9rem;
            }

             .floating-whatsapp {
        right: 15px;
        padding: 10px;
        font-size: 18px;
        width: 36px;
        height: 36px;
        top: 58%;
    }

            .gallery-container {
                grid-template-columns: repeat(2, 1fr);                    
            }
        }

        @media (max-width: 576px) {
            .milestone-container {
                flex-direction: column;
                align-items: center;
            }

            .milestone-item {
                width: 100%;
                max-width: 300px;
            }

            .program-container {
                grid-template-columns: 1fr;
            }

            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
    

i.fas.fa-phone {
    transform: rotate(95deg)!important;
}
.contact-item i {
    vertical-align: middle;
    margin-top: 6px;
}
        