/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #1d4ed8;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  
  
  
    /* --primary-color: #2563eb; */
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #fbbc05;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  
  
    /* --primary-color: #2563eb; */
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --transition: all 0.3s ease;
    --text-white: #ffffff;
  
  
  
    /* Primary color palette - Blue theme */
    --primary-color: #1e88e5; /* Rich blue */
    --primary-light: #64b5f6;
    --primary-dark: #0d47a1;
    --secondary-color: #0288d1; 
    --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;


    --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;
  --background-gradient: linear-gradient(135deg, #e3f2fd, #bbdefb);
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    /* background: var(--background-gradient); */
   } 
  
   .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul,
  ol {
    margin-bottom: 15px;
    padding-left: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
  }



  /* New Styles for Body */

  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;
  }


  /* 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: var(--background-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
  }
  
  .logo span {
    color: var(--primary-color);
  }
  
  nav ul {
    display: flex;
    list-style: none;
    padding-left: 0;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin-bottom: 5px;
    transition: var(--transition);
  }
  
  /* Hero Section */
  .hero {
    padding-top: 200px;
    padding-bottom: 150px;
    background-color: var(--background-light);
    background-image: url("https://t4.ftcdn.net/jpg/01/33/33/41/360_F_133334155_X23HzbJKawbIgXVaub4bPM8CjpkS5uMS.jpg");
    /* background-image: url("https://img.freepik.com/free-vector/healthcare-medical-concept-banner-with-lifeline_1017-37012.jpg"); */
    /* background-image:
      url("https://blog.mopria.org/wp-content/uploads/2022/02/iStock-1178808605-paper-stack.jpg"); */
    background-size: cover;
    background-position: center;
  }
  
  .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  /* Expandable Content Styles */
  .expandable-content {
    background-color: var(--background-color);
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .content-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-light);
  }
  
  .content-header h3 {
    margin-bottom: 0;
  }
  
  .expand-icon {
    font-size: 24px;
    font-weight: bold;
  }
  
  .content-body {
    padding: 20px;
    display: none;
  }
  
  /* Document Checklist Styles */
  .document-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .document-item {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  
  .document-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .document-tips {
    margin-top: 30px;
    background-color: #fff3cd;
    border-left: 5px solid #ffeeba;
    padding: 20px;
    border-radius: 8px;
  }
  
  /* Expert Tips Styles */
  .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .tip-card {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  
  .tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  /* Common Mistakes Styles */
  .mistakes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .mistake-item {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  
  .mistake-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  /* FAQ Styles */
  .faq-item {
    background-color: var(--background-light);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .faq-item h3 {
    padding: 20px;
    cursor: pointer;
    margin-bottom: 0;
    background-color: var(--background-color);
    transition: var(--transition);
  }
  
  .faq-item h3:hover {
    background-color: var(--background-light);
  }
  
  .faq-item p {
    padding: 0 20px 20px;
    display: none;
  }
  
  .faq-item.active h3 {
    background-color: var(--primary-color);
    /* color: white; */
  }
  
  .faq-item.active p {
    display: block;
  }
  
  /* Contact Form Styles */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  /* Footer Styles */
  footer {
    background-color: #1a2a3a;
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .footer-logo span {
    color: var(--accent-color);
  }
  
  .footer-links h3,
  .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background-color: var(--primary-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .document-list,
    .tips-grid,
    .mistakes-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: flex;
    }
  
    nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--background-color);
      padding: 20px;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      transition: var(--transition);
    }
  
    nav.active {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  
    nav ul {
      flex-direction: column;
    }
  
    nav ul li {
      margin: 10px 0;
    }
  
    .hero-content h1 {
      font-size: 36px;
    }
  
    .document-list,
    .tips-grid,
    .mistakes-list {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    section {
      padding: 60px 0;
    }
  
    .hero {
      padding-top: 120px;
    }
  
    .contact-form {
      padding: 20px;
    }
  }
  
  
  /* Changed Footer */
  /* Footer */
  .footer {
    background-color: #1a202c;
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .footer-logo span {
    color: var(--primary-color);
  }
  
  .footer-column p {
    color: #a0aec0;
    margin-bottom: 20px;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background-color: var(--primary-color);
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #a0aec0;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-contact li {
    display: flex;
    gap: 10px;
    color: #a0aec0;
    margin-bottom: 15px;
  }
  
  .footer-contact li i {
    color: var(--primary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom p {
    color: #a0aec0;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    color: #a0aec0;
    transition: var(--transition);
  }
  
  .footer-bottom-links a:hover {
    color: white;
  }
  
  /* Footer links list style type : none */
  .footer-links{
    list-style: none;
  }
  
  
/* 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);
  }
  

  /* Section Header */

.section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }
  
  .section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }

  @media (max-width: 1200px) {
    .section-header h2{
      font-size: 2.2rem;
    }}

    @media (max-width: 992px) {
        section {
          padding: 80px 0;
        }
        .section-header h2{
          font-size: 2rem;
        }}


        @media (max-width: 576px) {
            section {
              padding: 60px 0;
            }
          
            .section-header h2{
              font-size: 1.8rem;
            }}




/* Admission Section */
.admission {
    position: relative;
  }
  
  .admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .step {
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: var(--transition);
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .step:hover::before {
    width: 100%;
    opacity: 0.05;
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    transition: var(--transition);
  }
  
  .step:hover .step-number {
    transform: scale(1.2);
    opacity: 0.15;
  }
  
  .step h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .step h3::before {
    content: attr(data-number);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .step h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  .step ul {
    padding-left: 0;
  }
  
  .step ul li {
    margin-bottom: 12px;
    transition: var(--transition);
  }
  
  .step:hover ul li {
    transform: translateX(5px);
    transition-delay: calc(0.05s * var(--i));
  }
  
  .admission{
    background: var(--background-gradient);
  }



  header ul li::before {
    content: "";}


    /* Curriculum Section */
.curriculum {
    position: relative;
  }
  
  .curriculum p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
  }
  
  .curriculum-structure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
  }
  
  .year {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    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;
  }
  
  .year::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  }
  
  .year:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .year h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
  }
  
  .year h3::after {
    width: 60px;
  }
  
  .year:hover h3::after {
    width: 100px;
  }
  
  .year ul {
    padding-left: 0;
  }
  
  .year ul li {
    margin-bottom: 12px;
    transition: var(--transition);
  }
  
  .year:hover ul li {
    transform: translateX(5px);
  }
  
  .year p {
    text-align: left;
    margin-bottom: 0;
  }
  .document-tips h3{
    color: #856404;
  }
  .document-tips h3::after{
    background-color: #856404;
  }
  .document-tips li::before{
    /* content: ""; */
  }

  /* 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:0 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;
  }

  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;
  }


  /* Footer Li */

  .footer-links li::before {
    content: "";
    
}
.footer-links li{
    padding-left: 0;
}
.footer-contact li::before{
    content: "";
}
.footer-contact li{
    padding-left: 0;
}
  

/* 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;
    }
  }
  
  
  /* Popup overlay */
    .popup-overlay {
      position: fixed;
      top: 40px;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 1000;
    }

    /* When popup is active */
    .popup-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Popup box */
    .popup-form {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      position: relative;
      transform: scale(0.8);
      opacity: 0;
      transition: all 0.3s ease;
    }

    /* Animate form when overlay becomes active */
    .popup-overlay.active .popup-form {
      transform: scale(1);
      opacity: 1;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 18px;
      cursor: pointer;
      color: #999;
    }

    .popup-form h2 {
      margin-bottom: 15px;
    }

    .popup-form input,
    .popup-form select {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .popup-form button {
      background-color: #007bff;
      color: white;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-form button:hover {
      background-color: #0056b3;
    }
    
    /* 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;
  }
}