 /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 16px;
        } 
        .btn-primary {
            background-color: #2487ce;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #4d8dba;
            transform: translateY(-2px);
        }
        
 
        .resources-section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .section-header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: #6c757d;
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .resource-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .resource-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(75, 108, 183, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .resource-icon i {
            color: #4b6cb7;
            font-size: 24px;
            
        }
        
        .resource-card h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .resource-card p {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 20px;
        }




            /* agenda section ao schadual section  */
        .agenda-section {
            padding: 60px 20px;
            text-align: center;
          }
          
       
          
          .agenda-subtitle {
            font-size: 18px;
            color: #cbd5e1;
            margin-bottom: 40px;
          }
          
          .agenda-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: auto;
            justify-items: center;
            align-items: stretch;
            padding: 0 20px;
          }
          
          .agenda-card {
            background-color: white;
            color: #0b2e52;
            border-radius: 12px;
            padding: 20px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0,0,0,0.13);
            width: 250px;           
            height: 360px;          
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
          .agenda-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.13);
          }
          
          .agenda-card h2 {
            text-align: center;

          }
          .agenda-card h3 {
            margin-top: 0;
            font-size: 18px;
            margin-bottom: 12px;
            color: black;
          }
          
          .agenda-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
          }
          
          .agenda-card li {
            margin-bottom: 8px;
            font-size: 14px;
            color: #6c757d;

          }
          
          .agenda-footer {
            font-size: 12px;
            font-style: italic;
            text-align: right;
            color: #555;
            margin-top: 20px;
          }
          

          @media (max-width: 1024px) {
            .agenda-grid {
              grid-template-columns: 1fr;
              justify-items: center;
            }
          }




 
          /* refers to agenda too  */
.card-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .l-card {
    background-color: #ffffff;
    color: #0b2e52;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.13);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .l-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
  }
  
  .l-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #183b5c;
    text-align: center;
  }
  
  .l-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
    text-align: center;

}
  
  .l-card .more-info {
    margin-top: 20px;
    font-size: 0.9rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.9s ease;
    color: #4b4b4b;
  }
  
  .l-card:hover .more-info {
    max-height: 150px;
    opacity: 1;
  }
  





  /* upcomming section  */


  .upcoming-courses-section {
    background-color: #2f4686; 
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
  }
  
  .upcoming-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
  }
  
  .course-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #ffe600; 
    border-radius: 8px;
    padding: 20px 30px;
    margin: 20px auto;
    max-width: 700px;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  .course-box a:hover {
    color: white;
    
  }
  
  .course-box:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .course-info {
    text-align: left;
    color: #ffe600;
  }
  
  .course-info strong {
    font-size: 1.2rem;
    display: block;
  }
  
  .course-info span {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.8;
  }
  
  .expand-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffe600;
    cursor: pointer;
    transition: transform 0.5s;
  }
  
  .expand-btn:hover {
    transform: rotate(90deg);
  }
  






/* quastion Section  */

  .faq-section {
    background: #f8f9fc;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #0b2e52;
    text-align: center;
  }
  
  .faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0b2e52;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .faq-item {
    background: white;
    border: 1px solid #0b2e52;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background: transparent;
    border: none;
    color: #0b2e52;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    color: #0b2e52;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #eef2fa;
    color: #333;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  @media (max-width: 768px) {
    .faq-container {
      grid-template-columns: 1fr;
    }
  }
  