/* Enhanced Blue CSS for MBBS in Barbados Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /* Primary color palette - Blue theme */
    --primary-color: #1e88e5; /* Rich blue */
    --primary-light: #64b5f6;
    --primary-dark: #0d47a1;
    --secondary-color: #0288d1; /* Lighter blue */
    --secondary-light: #5eb8ff;
    --secondary-dark: #005b9f;
    --accent-color: #29b6f6; /* Sky blue */
    --accent-light: #73e8ff;
    --accent-dark: #0086c3;
  
    /* Text colors */
    --text-color: #263238;
    --text-light: #546e7a;
    --text-white: #ffffff;
    --text-highlight: #e3f2fd; /* Light blue for highlights */
  
    /* Background colors */
    --background-color: #ffffff;
    --background-light: #f5f5f5;
    --background-alt: #e3f2fd; /* Light blue background */
    --background-gradient: linear-gradient(135deg, #e3f2fd, #bbdefb);
  
    /* UI elements */
    --border-color: #e0e0e0;
    --border-highlight: #90caf9; /* Light blue border */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-highlight: 0 0 15px rgba(30, 136, 229, 0.5); /* Blue glow */
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 20% 20%, rgba(227, 242, 253, 0.4) 0%, transparent 25%),
      radial-gradient(circle at 80% 50%, rgba(187, 222, 251, 0.4) 0%, transparent 25%);
    background-attachment: fixed;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }
  
  section {
    padding: 100px 0;
    position: relative;
  }
  
  section:nth-child(even) {
    background-image: var(--background-gradient);
  }
  
  section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e88e5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
  }
  
  section .container {
    position: relative;
    z-index: 1;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
  }
  
  h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    color: var(--primary-color);
  }
  
  h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color), var(--primary-light));
    border-radius: 2px;
  }
  
  h2::after {
    content: "•";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--primary-color);
    background-color: var(--background-color);
    padding: 0 10px;
  }
  
  section:nth-child(even) h2::after {
    background-color: transparent;
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
  }
  
  h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  *:hover > h3::after {
    width: 60px;
  }
  
  p {
    margin-bottom: 20px;
    font-size: 1.05rem;
  }
  
  .highlight {
    background-color: var(--text-highlight);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 500;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  a:not(.btn)::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  a:not(.btn):hover::after {
    width: 100%;
  }
  
  ul {
    list-style-type: none;
    margin-bottom: 20px;
  }
  
  ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
  }
  
  ul li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-highlight);
  }
  
  .btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-white);
  }
  
  .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(2, 136, 209, 0.5);
  }
  
  .btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--text-white);
  }
  
  .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(41, 182, 246, 0.5);
  }


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
  }
  
  header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    position: relative;
    z-index: 2;
  }
  
  .logo h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
  }
  
  .logo span {
    color: var(--primary-color);
    font-weight: 900;
    position: relative;
  }
  
  .logo span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--primary-light);
    opacity: 0.3;
    z-index: -1;
  }
  
  nav ul {
    display: flex;
    margin-bottom: 0;
  }
  
  nav ul li {
    margin-left: 35px;
    padding-left: 0;
  }
  
  nav ul li::before {
    display: none;
  }
  
  nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
  }
  
  nav ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  nav ul li a:hover {
    color: var(--primary-color);
  }
  
  nav ul li a:hover::before {
    width: 50%;
  }
  
  nav ul li a:hover::after {
    width: 50%;
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 6px;
    border-radius: 3px;
    transition: var(--transition);
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }


  /* Hero Section */
.hero {
    /* background-image: linear-gradient(rgba(30, 136, 229, 0.85), rgba(13, 71, 161, 0.9)),
      url("https://placehold.co/1920x1080"); */
      background-image: url("https://prolineconsultancy.com/wp-content/uploads/2019/05/maxresdefault-1-1.jpg");
      /* background-image: url("./images/ism-image-2.jpg"); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    text-align: center;
    padding: 200px 0 140px;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /*background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
  }
  
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
  }
  
  .hero .container {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
    position: relative;
    display: inline-block;
  }
  
  .hero h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-light));
    border-radius: 2px;
  }
  
  .hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


  /* Overview Section */
.overview {
    text-align: center;
    position: relative;
  }
  
  .overview::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--background-color));
    z-index: 2;
  }
  
  .overview p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
  }

  /* Advantages Section */
.advantages {
    position: relative;
  }
  
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .advantage-card {
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    opacity: 0.1;
    z-index: -1;
    transition: var(--transition);
  }
  
  .advantage-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
  }
  
  .advantage-card:hover::before {
    height: 100%;
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 35px;
    transition: var(--transition);
  }
  
  .advantage-card:hover .advantage-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s, color 0.3s;
  }
  
  .advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
  }
  
  .advantage-card h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .advantage-card p {
    margin-bottom: 0;
    color: var(--text-light);
  }

  /* Post-Graduation Section */
.post-graduation {
    position: relative;
  }
  
  .prospects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .prospect {
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .prospect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--background-alt), transparent);
    transition: var(--transition);
    z-index: -1;
  }
  
  .prospect:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .prospect:hover::before {
    height: 100%;
  }
  
  .prospect h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
  }
  
  .prospect p {
    margin-bottom: 0;
    color: var(--text-light);
  }

  /* FAQs Section */
.faqs {
    position: relative;
  }
  
  .faq-list {
    max-width: 900px;
    margin: 60px auto 0;
  }
  
  .faq-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .faq-item:hover {
    box-shadow: var(--shadow-md);
  }
  
  .faq-item h3 {
    padding: 25px 30px;
    cursor: pointer;
    margin-bottom: 0;
    background-color: var(--background-color);
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .faq-item h3::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    position: static;
    width: auto;
    height: auto;
    background: none;
  }
  
  .faq-item.active h3::after {
    content: "−";
  }
  
  .faq-item h3:hover {
    background-color: var(--background-light);
  }
  
  .faq-item p {
    padding: 0 30px 25px;
    display: none;
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  .faq-item.active h3 {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
  }
  
  .faq-item.active p {
    display: block;
    animation: fadeIn 0.5s ease;
  }


  /* Contact Section */
.contact {
    text-align: center;
    position: relative;
  }
  
  .contact p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
  }
  
  .contact-form {
    max-width: 800px;
    margin: 60px auto 0;
    background-color: var(--background-color);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  
  .contact-form::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: calc(var(--border-radius-lg) + 10px);
    z-index: -1;
    opacity: 0.1;
  }
  
  .form-group {
    margin-bottom: 25px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 1.05rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--background-light);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
    background-color: var(--background-color);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 150px;
}


/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--text-white);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  
  .footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
  }
  
  .footer-wave .shape-fill {
    fill: var(--background-color);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: left;
    color:white;
  }
  
  .footer-logo h2::after {
    display: none;
  }
  
  .footer-logo span {
    color: var(--accent-color);
  }
  
  .footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 15px;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
  }
  
  .footer-links ul {
    padding-left: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 15px;
    padding-left: 0;
  }
  
  .footer-links ul li::before {
    display: none;
  }
  
  .footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    padding-left: 0;
    display: flex;
    align-items: center;
  }
  
  .footer-links ul li a::before {
    content: "→";
    margin-right: 10px;
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
  }
  
  .footer-links ul li a:hover::before {
    margin-right: 15px;
    color: var(--accent-color);
  }
  
  .footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .footer-contact p i {
    margin-right: 15px;
    color: var(--accent-color);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
  }

  

  /* Responsive Styles */
@media (max-width: 1200px) {
    h2 {
      font-size: 2.2rem;
    }
  
    .hero h1 {
      font-size: 3.8rem;
    }
  }
  
  @media (max-width: 992px) {
    section {
      padding: 80px 0;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    .hero h1 {
      font-size: 3.2rem;
    }
  
    .hero p {
      font-size: 1.3rem;
    }
  
    .key-points,
    .curriculum-structure,
    .prospects {
      flex-direction: column;
    }
  
    .point,
    .year,
    .prospect {
      flex-basis: 100%;
      margin-bottom: 20px;
      max-width: 100%;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-form {
      padding: 40px 30px;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: flex;
    }
  
    nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background-color: var(--background-color);
      padding: 100px 40px 40px;
      box-shadow: var(--shadow-lg);
      transition: right 0.4s ease;
      z-index: 999;
    }
  
    nav.active {
      right: 0;
    }
  
    nav ul {
      flex-direction: column;
    }
  
    nav ul li {
      margin: 15px 0;
    }
  
    .hero h1 {
      font-size: 2.8rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .university-stats {
      flex-wrap: wrap;
    }
  
    .university-stat {
      flex: 1 0 50%;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 576px) {
    section {
      padding: 60px 0;
    }
  
    h2 {
      font-size: 1.8rem;
    }
  
    .hero {
      padding: 150px 0 80px;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  
    .contact-form {
      padding: 30px 20px;
    }
  
    .testimonial {
      padding: 30px 20px;
    }
  
    .student-info {
      flex-direction: column;
      text-align: center;
    }
  
    .student-img {
      margin: 0 auto 15px;
    }
  }


  /* Animation for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .footer-copy-rights{
    color:white;
  }
  
  
   /* Vedanta */
  .main-vedanta-div{
    display: flex;
    gap: 30px;
    align-items: center;
  }
  .main-vedanta-div .vedanta-div{
    width:50%;
  }
  .vedanta-div img{
    width:100%;
  }
  .main-vedanta-div li{
    text-align: justify;
  }


  @media (max-width: 1024px) {
    .main-vedanta-div{
        flex-direction: column;
    }
    .main-vedanta-div .vedanta-div{
        width: 100%;
    }
  }
  
  /* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: none;
}

.whatsapp-float {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/*Whatsapp Animation*/
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}