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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
html {
  scroll-behavior: smooth;
}

        .hero-section {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transform: translateY(50px);
            animation: slideUp 1s ease-out 0.3s forwards;
            color: white;
            transform: translate(50px);
            transform: translate(0px);
            
        }
  
        .level-indicator {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .level {
            padding: 8px 15px;
            border: 2px solid #ff6b35;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .level:hover {
            background-color: #ff6b35;
            transform: translateY(-2px);
        }

        .main-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .subtitle {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 800px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .button-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .contact-button {
            background: transparent;
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #ff6b35;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }


        .contact-button:hover {
            background: #ff6b35;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .contact-section {
            padding: 100px 20px;
            color: rgb(6, 2, 2);
            min-height: 100vh;
        }
        .contact-section {
            background: #f8f9fa;
        }
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 20px;
            color: #ff6b35;
            font-weight: 700;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 60px;
            font-size: 1.2em;
            opacity: 0.9;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }
        .contact-card {
          word-wrap: break-word;      /* Break long words */
          overflow-wrap: break-word;  /* Modern alternative */
          white-space: normal;        /* Allow text to wrap */
        }
        .contact-icon {
            font-size: 2rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 53, 0.2);
            border-radius: 50%;
        }
        .contact-grid {
            display: flex;              /* Makes cards horizontal */
            justify-content: space-between; /* Adds spacing between them */
            flex-wrap: wrap;            /* Wraps to next line on smaller screens */
            gap: 20px; 
            margin: 0;
            font-size: 1.2em;
            font-weight: bold;             /* Optional: space between cards */
        }

        .contact-card {
            flex: 1;                    /* Makes all cards same width */
            min-width: 250px;           /* Prevents cards from getting too small */
            background-color: #f5f5f5;  /* Optional: card background */
            padding: 20px;
            text-align: center;         /* Center content inside each card */
            border-radius: 10px;        /* Rounded corners */
            box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional shadow */
        }

        .contact-item h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
      .contact-card:hover {
            background-color: #dcd9d8;
            transform: translateY(-2px);
        }

        .contact-item p {
            opacity: 0.8;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 18px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
            background: linear-gradient(45deg, #f7931e, #ff6b35);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 2s;
            width: 15px;
            height: 15px;
        }

        .floating-element:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 4s;
            width: 25px;
            height: 25px;
        }

       
        
        .cta-button {
            background: transparent;
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #ff6b35;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
                padding: 0 20px;
            }
            
            .level-indicator {
                flex-direction: column;
                gap: 5px;
            }
            
            .level {
                padding: 6px 12px;
                font-size: 12px;
            }

            .button-container {
                flex-direction: column;
                align-items: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-title {
                font-size: 2.5rem;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }

        /* Pulse animation for CTA button */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
            }
        }

       
    
    
    /* Courses Section */
.courses {
  padding: 60px 20px;
  text-align: center;
  
}
 
.courses h2 {
  margin-bottom: 30px;
}
.courses .level1 {
  color: #e74c3c;
  font-weight: bold;
  text-align: center; 
  text-align: center;
  margin-bottom: 30px;  
  margin: 20px 0;  
}
.courses ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: auto;
}

.courses ul li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.courses {
  min-height: 600px;      /* Increase height of section */
  padding: 50px 20px;
  
}

.course-item {
  margin-bottom: 15px;
  cursor: pointer;
}

.course-desc {
  display: none;           /* Hidden by default */
  margin-top: 5px;
  padding-left: 20px;
  color: #555;
}
.course-title {
  font-weight: bold;
  display: flex;
  justify-content: space-between; /* Icon on the right */
  align-items: center;
  
}

 /* nav bar */
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:transparent; /* Blue background */
  padding: 10px 20px 10px 10px;
  color: rgb(0, 0, 0);
  position: sticky;
  top: 0;
  background:rgba(255, 255, 255, 0.2); /* transparent white */
  backdrop-filter: blur(8px);            /* glass effect */
  z-index: 1000;
  z-index: 100;
}

/* Logo and company name */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;   /* Adjust size */
  height: auto;
  margin-right: 10px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Navigation links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd700; /* Gold hover effect */
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* You can later add hamburger menu */
  }
}
    



/* Course Section */
.courses {
  padding: 50px;
  background: #f8f9fa;
}

.courses h1.level1 {
  text-align: center;
  font-size: 2.5rem;  /* Increased main heading size */
  margin-bottom: 30px;
  color: #ff6b35;
}

.course-item {
  margin-bottom: 20px;
}

.course-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;   /* Bigger course titles */
  font-weight: bold;
  cursor: pointer;
  background: #e9ecef;
  padding: 12px 15px;
  border-radius: 8px;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

.course-desc {
  display: none;
  padding: 15px 20px;
  background: #fff;
  border-left: 3px solid #0d6efd;
  margin-top: 5px;
  font-size: 1.1rem;  /* Bigger text inside description */
  line-height: 1.6;
}

.course-desc ul {
  margin-left: 20px;
}
/* Footer Section */
.footer {
  background-color: #222;   /* Dark background */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

.footer-logo {
  margin-top: 10px;
  width: 120px;   /* Adjust logo size */
  height: auto;
}
/* Contact Us Section */
#contact {
  margin-bottom: 20px;  /* reduce space before footer */
  padding-bottom: 20px;
}

/* Footer */
.footer {
  margin-top:20;   /* remove extra gap above footer */
  padding: 20px;
}


