 /* Reset + Fonts */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
     font-family: 'Poppins', sans-serif;
      background: #fff;
      color: #222;
    }

.container {
  padding: 3px 20px;
}

/* Contact Section */
.contact-advanced {
  background: linear-gradient(135deg, #fff0f3, #ffe5e9);
  padding: -2px -3px;
}


.contact-advanced h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #d1001c;
  margin-bottom: 50px;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Contact Form */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -22px;
}

/* Input Styles */
.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  color: #222;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 0 5px;
  color: #777;
  transition: 0.2s ease;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:valid + label,
.floating-label select:focus + label,
.floating-label select:valid + label,
.floating-label textarea:focus + label,
.floating-label textarea:valid + label {
  top: -10px;
  left: 10px;
  font-size: 13px;
  color: #d1001c;
}

.animated-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(135deg, #d1001c, #f83e51);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(209, 0, 28, 0.3);
}

.animated-button:hover {
  background: #a80017;
  transform: translateY(-2px);
}

/* Contact Image */
.contact-image img {
  height: 110%;
  max-height: 700px;
  object-fit: contain;
  /* margin-top: -14%; */
  margin-bottom: -1%;
  border-radius: 264px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 600px;
  animation: fadeIn 1s ease forwards;

  margin-top: -64px;
}

/* Office Section */
.offices {
  margin-top: 80px;
  padding: 40px 20px;
}

.offices h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #d1001c;
  margin-bottom: 40px;
  margin-top: -67px;
}

.office-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.office-card {
  background: #ffffff;
  border-radius: 20px;
  border-top: 6px solid #d1001c;
  padding: 25px;
  max-width: 330px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease-in-out;
  animation: slideUp 1s ease forwards;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.office-card h3 {
  color: #111;
  margin: 10px 0;
  font-size: 1.2rem;
}

.office-card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.office-card a {
  color: #d1001c;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

/* Icon */
.pin-icon {
  font-size: 36px;
  color: #d1001c;
  margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s ease forwards;
}

.zoom-in {
  animation: fadeIn 1.2s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-image img {
    width: 100%;
    max-height: 400px;
  }

  .glass-card {
    max-width: 100%;
  }

  .offices h2 {
    font-size: 2rem;
  }
}



    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 15px 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo img {
      height: 50px;
      width: auto;
      transition: transform 0.3s ease, filter 0.3s ease;
      cursor: pointer;
    }

    .logo img:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-right a {
      text-decoration: none;
      color: #222;
      font-weight: 600;
      position: relative;
      padding: 6px 0;
      transition: all 0.3s ease;
    }

    .nav-right a:hover {
      color: #d9534f;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 40px;
      left: 0;
      background: white;
      min-width: 160px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-radius: 6px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 50;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      padding: 12px 20px;
      color: #333;
      font-weight: 500;
      transition: background 0.3s;
    }

    .dropdown-content a:hover {
      background: #f5f5f5;
    }

    .nav-buttons {
      display: flex;
      gap: 10px;
    }

    .nav-buttons button {
      padding: 10px 18px;
      background-color: #d9534f;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .nav-buttons button:hover {
      background-color: #c9302c;
    }




    /* Footer */
      .clean-footer {
        background: rgb(255, 255, 255);
        color: rgb(235, 10, 10);;
        font-family: 'Segoe UI', sans-serif;
        padding: 40px 20px;
      }
    
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
      }
    
      .footer-section {
        flex: 1 1 250px;
      }
    
      .footer-logo img {
        width: 135px;
        margin-bottom: 5px;
        margin-left: 72px;
      }
    
      .footer-section h4 {
        color: rgb(235, 10, 10);
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 5px;
      }
    
      .footer-section a {
        display: block;
        color: rgb(235, 10, 10);
        font-size: 14px;
        text-decoration: none;
        margin-bottom: 6px;
        margin-right: 15px;
      }
    
      .footer-section a:hover {
        color: rgb(235, 10, 10);
      }
    
    .social-icons-horizontal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons-horizontal img {
  width: 25px;
  height: 25px;
}

    
      .mini-form input,
      .mini-form textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 8px;
        margin-bottom: 10px;
        background: rgb(235, 235, 235);
        color: rgb(235, 10, 10);
        font-size: 14px;
      }
    
      .mini-form button {
        width: 100%;
        padding: 10px;
        background: rgb(235, 10, 10);
        color: rgb(255, 255, 255);
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
      }
    
      .mini-form button:hover {
        background-color: rgb(191, 61, 61);
        transform: translateY(-2px);
      }
    
      .footer-bottom-line {
        text-align: center;
        margin-top: 30px;
        font-size: 14px;
        color: rgb(235, 10, 10);
      }
    
      .footer-section iframe {
        width: 100%;
        height: 180px;
        border-radius: 6px;
      }
      .social-icons-horizontal a {
      display: inline-block;
      padding: 6px;
      border-radius: 50%;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .social-icons-horizontal a:hover {
      transform: scale(1.2);
      
    }
    
    .social-icons-horizontal a img {
      width: 25px;
      height: 25px;
      display: block;
    }
    
    
      /* ✅ Responsive */
      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          align-items: center;
        }
    
        .footer-section {
          width: 100%;
          text-align: center;
        }
    
        .social-icons-horizontal {
          justify-content: center;
        }
    
        .footer-logo img {
          margin: 0 auto 15px;
        }
      }


.course-columns {
  display: flex;
    gap: 244px;
  flex-wrap: wrap;
}

.course-columns ul {
  list-style: none;
  padding-left: 0;
}

.course-columns li {
  margin-bottom: 6px;
}
.course-columns a {
  color: #ef0000; /* White text */
  text-decoration: none;
  transition: color 0.3s ease;
}



      