*{
   margin: 0;
   padding: 0:
   font-family: 'Noto Sans', sans-serif;
}


/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Styles */
.header {
    background-color: #004d33; /* Dark Green */
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #f0f0f0;
}

.nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav li {
    margin: 0 20px;
}

.nav a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav a:hover {
    color: #00b140; /* Light Green for Hover Effect */
}

.cta-btn {
    background-color: #00b140; /* Green CTA Button */
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #007f29; /* Darker Green on Hover */
}

.nav a.cta-btn {
    margin-left: auto; /* Push the CTA button to the far right */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #222222; /* Dark background for overall page */
    color: #f4f4f4; /* Light text for the page */
}

/* Hero Section Styles */
.hero {
    background-color: #121212; /* Dark background color for the hero section */
    background-image: url('your-image.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    padding: 100px 0; /* Adds vertical spacing to the section */
    text-align: center;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Slight shadow for readability */
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #dcdcdc; /* Lighter color for subtext */
}

.cta-btn {
    background-color: #00b140; /* Green CTA Button */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #007f29; /* Darker green on hover */
    transform: translateY(-3px); /* Subtle lift effect */
}

.cta-btn:focus {
    outline: none;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #222222; /* Dark background for overall page */
    color: #f4f4f4; /* Light text for the page */
}

/* Register Section Styles */
.register {
    background-color: #121212; /* Dark background for the register section */
    padding: 80px 0;
    text-align: center;
}

.register-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.register h2 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.register p {
    font-size: 18px;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 40px;
}

.cta-btn {
    background-color: #00b140; /* Green CTA Button */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #007f29; /* Darker green on hover */
    transform: translateY(-3px); /* Subtle lift effect */
}

.cta-btn:focus {
    outline: none;
}

@media (max-width: 768px) {
    .register h2 {
        font-size: 28px;
    }

    .register p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}
/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

/* Section Styling */
.features-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #2a2a2a;
}

.section-title {
  font-size: 2.5rem;
  color: #ff6a00;
  margin-bottom: 30px;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #1f1f1f;
  border-bottom: 2px solid #333;
}

header h1 {
  font-size: 2rem;
  color: #f0f0f0;
}

/* Exam List Grid */
.exam-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Exam Card */
.exam-card {
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exam-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

.exam-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.exam-card p {
  margin: 5px 0;
  color: #c0c0c0;
}

.exam-card strong {
  color: #f9a825;
}

/* Book Now Button */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #6200ea;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3700b3;
}

/* Responsive Design */
@media (max-width: 600px) {
  .exam-card {
    padding: 15px;
  }

  .exam-card h2 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 8px 16px;
  }
}



/* Features Container */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Item */
.feature-item {
  background-color: #333333;
  border: 2px solid #ff6a00;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
  background-color: #ff6a00;
  color: #1a1a1a;
}

.icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff6a00;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #ddd;
}

.feature-item:hover .icon {
  color: #1a1a1a;
}
/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

/* Section Styling */
.contact-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #2a2a2a;
}

.section-title {
  font-size: 2.5rem;
  color: #ff6a00;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Item */
.contact-item {
  background-color: #333333;
  border: 2px solid #ff6a00;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.05);
  background-color: #ff6a00;
  color: #1a1a1a;
}

.icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff6a00;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-link {
  font-size: 1rem;
  color: #ff6a00;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  color: #1a1a1a;
  background-color: #ff6a00;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: underline;
}

