 :root {
     --primary: #1a5d8a;
     --secondary: #2c8c6c;
     --accent: #e74c3c;
     --dark: #2c3e50;
     --light: #f8f9fa;
     --gray: #6c757d;
     --transition: all 0.3s ease;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
     --shadow-lg: 0 8px 15px rgba(0, 0, 0, 0.1);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html,
 body {
     max-width: 100%;
     overflow-x: hidden;
 }

 body {
     max-width: 100%;
     font-family: 'Open Sans', sans-serif;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
     background-color: #f5f7fa;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     color: var(--dark);
     margin-bottom: 1rem;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-block;
     padding: 12px 28px;
     background: var(--primary);
     color: white;
     border: none;
     border-radius: 4px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: var(--transition);
     text-decoration: none;
     text-align: center;
 }

 .btn:hover {
     background: #144a70;
     transform: translateY(-2px);
     box-shadow: var(--shadow);
 }

 .btn-secondary {
     background: var(--secondary);
 }

 .btn-secondary:hover {
     background: #247358;
 }

 .btn-accent {
     background: var(--accent);
 }

 .btn-accent:hover {
     background: #c0392b;
 }

 /* Header Styles */
 header {
     background-color: var(--dark);
     padding: 15px 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: var(--shadow);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     flex-direction: row;
     align-items: center;
 }

 .logo-text {
     color: white;
     font-size: 1.5rem;
     font-weight: 700;
     text-decoration: none;
     margin-left: -25px;
 }

 .nav-menu {
     display: flex;
     justify-content: space-between;
     align-items: center;
     list-style: none;
 }


 .nav-menu a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
     position: relative;
     margin-left: 30px;
 }

 .nav-menu a:hover {
     color: #4ecdc4;
 }

 .nav-menu a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #4ecdc4;
     transition: var(--transition);
 }

 .nav-menu a:hover::after {
     width: 100%;
 }

 .hamburger {
     display: none;
     cursor: pointer;
     color: white;
     font-size: 1.8rem;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1583385046910-5630a05bbbf4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
     background-size: cover;
     background-position: center;
     height: 550px;
     display: flex;
     align-items: center;
     color: white;
     text-align: center;
     padding-top: 80px;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .hero h1 {
     font-size: 3.2rem;
     margin-bottom: 1.5rem;
     color: white;
     line-height: 1.2;
 }

 .hero p {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 30px;
 }

 /* Section Common Styles */
 .section {
     padding: 100px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     position: relative;
     display: inline-block;
     padding-bottom: 15px;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--primary);
     border-radius: 2px;
 }

 /* Features Section */
 .features {
     background-color: white;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background: white;
     border-radius: 8px;
     padding: 30px;
     text-align: center;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
 }

 .feature-icon {
     font-size: 3rem;
     color: var(--primary);
     margin-bottom: 20px;
 }

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

 /* Program Section */
 .program-steps1 {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));

     gap: 40px;
     margin-top: 50px;
 }

 .program-step {
     background: white;
     border-radius: 8px;
     padding: 30px;
     box-shadow: var(--shadow);
     position: relative;
     border-top: 4px solid var(--primary);
 }

 .program-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     margin-top: 50px;
 }

 .step-number {
     position: absolute;
     top: -20px;
     left: 30px;
     width: 40px;
     height: 40px;
     background: var(--primary);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

 /* Calendar Section */
 .calendar {
     background: linear-gradient(to bottom, #e8f4f8, #ffffff);
 }

 .calendar-container {
     background: white;
     border-radius: 10px;
     padding: 40px;
     box-shadow: var(--shadow-lg);
     max-width: 900px;
     margin: 0 auto;
     overflow-x: auto;
     max-width: 100%;
 }

 .calendar-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 30px;
 }

 .calendar-table th,
 .calendar-table td {
     padding: 15px;
     text-align: left;
     border-bottom: 1px solid #eee;
 }

 .calendar-table th {
     background: var(--primary);
     color: white;
     font-weight: 600;
 }

 .calendar-table tr:hover {
     background: #f9f9f9;
 }

 .t2 {
     margin-top: 50px;
 }

 /* Contact Section */
 .contact {
     background-color: white;
 }

 .contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
 }

 .contact-form {
     background: #f8f9fa;
     padding: 30px;
     border-radius: 8px;
     box-shadow: var(--shadow);
 }

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

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

 .form-control {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 1rem;
     transition: var(--transition);
 }

 .form-control:focus {
     border-color: var(--primary);
     outline: none;
     box-shadow: 0 0 0 3px rgba(26, 93, 138, 0.1);
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 .contact-info {
     padding: 20px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 25px;
 }

 .contact-icon {
     font-size: 1.2rem;
     color: var(--primary);
     min-width: 30px;
     margin-top: 5px;
 }

 .contact-details h3 {
     margin-bottom: 5px;
     font-size: 1.2rem;
 }

 /* Footer */
 footer {
     background: var(--dark);
     color: white;
     padding: 60px 0 30px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-logo {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     display: block;
     color: white;
     text-decoration: none;
 }

 .footer-links {
     margin-left: 80px;
 }

 .footer-about p {
     margin-bottom: 20px;
     color: #ccc;
 }

 .footer-links h3,
 .footer-contact h3 {
     font-size: 1.3rem;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
     text-align: center;
 }

 .footer-links h3::after,
 .footer-contact h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--primary);
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: white;
     padding-left: 5px;
 }

 .contact-info-item {
     display: flex;
     margin-bottom: 15px;
     color: #ccc;
 }

 .contact-info-icon {
     margin-right: 15px;
     color: var(--primary);
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: var(--transition);
 }

 .social-link:hover {
     background: var(--primary);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #aaa;
     font-size: 0.9rem;
 }



 .hero-img {
    display: flex;
    flex-direction: column;
    margin-top: -50px;
    margin-bottom: 50px;
 }

 .hero-img img {
    border-radius: 15px;
 }
 /* Mobile Menu */
 .mobile-menu {
     position: fixed;
     top: 70px;
     left: -100%;
     width: 80%;
     height: calc(100vh - 70px);
     background: var(--dark);
     transition: var(--transition);
     z-index: 999;
     padding: 20px;
     box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
 }

 .mobile-menu.active {
     left: 0;
 }

 .mobile-menu ul {
     list-style: none;
 }

 .mobile-menu li {
     margin-bottom: 15px;
 }

 .mobile-menu a {
     color: white;
     text-decoration: none;
     font-size: 1.2rem;
     display: block;
     padding: 10px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .container-img {
    
    display: flex;
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin: 50px 0;
 }
 

 .container-img img {
    border-radius: 15px;
    max-width: 550px;
  
 }

 .contact-img {
    display: flex;
    justify-content: center;
    object-fit: cover;
 }

 .contact-img img {
    margin-top: 20px;
    width: 100%;
    border-radius: 15px;
 }

 /* Responsive Styles */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2.8rem;
     }
 }

 @media (max-width: 768px) {
     .hamburger {
         display: block;
         margin-right: 20px;
     }

     .nav-menu {
         display: none;
     }

     .hero h1 {
         font-size: 2.3rem;
     }

     .hero p {
         font-size: 1.1rem;
     }

     .hero-buttons {
         flex-direction: column;
         gap: 15px;
     }

     .section {
         padding: 70px 0;
     }

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

     .calendar-container {
         padding: 25px;
     }
 }

 @media (max-width: 576px) {
     .hero h1 {
         font-size: 2rem;
     }

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

     .feature-card {
         padding: 20px;
     }

     .footer-container {
         gap: 30px;
     }


      .hero-img img {
    width: 100%;
    height: auto;
 }


 


 .container-img img {
    width: 100%;
    height: auto;
  
 }

 .contact-img img {
  width: 100%;
  height: auto;
 }




 }