/* Reset and Base Styles */
:root {
    --primary-color: #FDCB2C;
    --secondary-color: #191a23;
    --accent-color: #ffc400;
    --text-primary: #000000;
    --text-secondary: #4b5563;
    --background-light: #f3f4f6;
    --white: #ffffff;
    --black: #191a23;
    --max-width: 1200px;
    --section-padding: 3rem 0;
    --border-radius: 8px;
    --yellow: #FDCB2C;
}

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

li {
  list-style: none;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    /* line-height: 1.6; */
    color: var(--text-primary);
    width: 100%;
    height: 100vh;
    padding: 1rem 0 2rem 0;
    
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: #ffff;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta-group {
    display: flex;
    gap: 1rem;    
}

.course-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Course Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.highlight-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Curriculum Section */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.module ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.module li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.student-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

/* Career Section */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.career-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.career-requirements {
    list-style-position: inside;
    margin-top: 1rem;
}

/* Enrollment CTA Section */
.enrollment-cta {
    background: linear-gradient(135deg, #000000 0%, #070707 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    /* border-radius: 20px; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.enrollment-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
}

.enrollment-cta .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f3f3f3;
}

.enrollment-cta .cta-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}

.enrollment-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.enrollment-cta .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.enrollment-cta .btn-primary {
    background-color: #ffffff;
    color: #000;
    border: none;
}

.enrollment-cta .btn-primary:hover {
    background-color: #fdcb2c;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.enrollment-cta .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.enrollment-cta .btn-secondary:hover {
    background-color: #ffffff;
    color: #fdcb2c;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Decorative glowing animation */
.enrollment-cta::before,
.enrollment-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 6s infinite ease-in-out;
}

.enrollment-cta::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.enrollment-cta::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}


/* Contact us Form  */

/* contact us */

.contact_us_top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.contact_us_top h3 {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: var(--yellow);
  padding: 5px;
  border-radius: 5px;
  text-transform: capitalize;
}
.contact_us_top {
    flex-direction: column;
  }

/* .contact_us_top p {
  text-wrap: pretty;
  max-width: 550px;
  font-size: 17px;
} */
.contact_us_bottom {
  background-color: var(--card-bg-grey);
  padding: 2rem;
  border-radius: 45px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 775px;
  overflow: hidden;
}

.contact_us_bottom .image_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}

.contact_us_bottom .image_wrapper img {
  position: relative;
  top: 0;
  left: 20rem;
  right: 0;
}

.contact_us_bottom .form_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_us_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.contact_us_form .checklist {
  display: flex;
  align-items: center;
  gap: 35px;
}

.contact_us_form .checklist input[type="radio"] {
  display: none;
}

.contact_us_form .checklist label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}

.contact_us_form .checklist label .custom_radio {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background-color: white;
}

.contact_us_form .checklist label .custom_radio::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--yellow);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.contact_us_form .checklist input[type="radio"]:checked + .custom_radio::after {
  opacity: 1;
}

.contact_us_form .checklist input[type="radio"]:checked + .custom_radio {
  border-color: #4caf50;
}

.contact_us_form .form_inputs,
.contact_us_form .form_inputs > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.contact_us_form .form_inputs > div {
  margin-bottom: 25px;
  gap: 5px;
}

.form_inputs .input_wrapper input::placeholder,
textarea::placeholder {
  font-size: 16.5px;
}

.form_inputs .input_wrapper input,
textarea,
.form_inputs button {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--black);
}

.form_inputs .input_wrapper input:focus,
textarea:focus {
  box-shadow: 1px 1px 7px var(--black);
}

.form_inputs .input_wrapper input {
  padding-left: 1rem;
  height: 59px;
}

.form_inputs .input_wrapper select {
  width: 100%;
  height: 50px;
  padding-left: 1rem;
  border-radius: 14px;
  border: 1px solid var(--black);
  font-size: 16.5px;
  background-color: #fff; /* Background color for the dropdown */
  appearance: none; /* Remove default dropdown arrow for custom styling */
  -moz-appearance: none; /* For Firefox */
  -webkit-appearance: none; /* For WebKit browsers */
  cursor: pointer;
}

textarea {
  padding: 1rem 0 0 1rem;
  height: 190px;
  font-style: normal;
  resize: none;
  font-size: 16px;
  outline: none;
}

.form_inputs button {
  align-self: center;
  color: #fff;
  background-color: var(--black);
  font-size: 20px;
}

.form_inputs button:hover {
  color: var(--black);
  background-color: #fff;
}

.error_message {
  font-size: 15px;
  color: #ff0000;
}


/* footer */
footer {
    background-color: var(--black);
    padding: 3rem;
    border-radius: 45px;
    margin: 40px 20px 40px 20px;
    position: relative;
  }
  
  .footer_top,
  .footer_top_logo,
  .footer_social_icons {

    display: flex;
    align-items: center;
  }
  
  
  .footer_top {
    justify-content: space-between;
  }
  
  .footer_nav_list_container .footer_nav_list {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  
  .footer_nav_list .footer_nav_list-list_item {
    margin-right: 10px;
  }
  
  .footer_nav_list .footer_nav_list-list_item a {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
  }
  
  .footer_nav_list-list_item a::after {
    background-color: #fff;
  }
  
  .footer_social_icons {
    gap: 20px;
  }
  
  .footer_social_icons img {
    cursor: pointer;
  }
  
  .footer_social_icons img:hover {
    box-shadow: 1px 1px 7px #fff;
  }
  
  footer .footer_middle {
    margin-top: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer_middle .footer_address,
  .footer_address .address_wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .footer_middle .footer_address {
    gap: 27px;
  }

  footer .footer_bottom {
    margin-top: 50px;
    height: 78px;
    border-top: 1px solid #fff;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    font-size: 18px;
  }
  
  .footer_bottom .copyright {
    display: flex;
    gap: 40px;
  }
  
  .footer_address div h3 {
    color: #000;
    font-size: 20px;
    background-color: var(--yellow);
    width: fit-content;
  }
  
  .footer_address .address_wrapper {
    gap: 20px;
  }
  
  .footer_address .address_wrapper,
  .address_wrapper .email_address a,
  .address_wrapper .phone_num a {
    color: #fff;
  }
  
  .address_wrapper .email_address a,
  .address_wrapper .phone_num a {
    font-size: 18px;
  }
  
  .address_wrapper .email_address a:hover,
  .address_wrapper .phone_num a:hover {
    text-decoration: underline;
  }
  
  .address_wrapper .location {
    display: flex;
    flex-direction: column;
  }
  
  .footer_middle .newsletter_sub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }

  footer .footer_bottom {
    margin-top: 50px;
    height: 78px;
    border-top: 1px solid #fff;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    font-size: 18px;
  }
  
  .footer_bottom .copyright {
    display: flex;
    gap: 40px;
  }
  
  .copyright .privacy_policy {
    text-decoration: underline;
    cursor: pointer;
  }


/* Media Queries */

/* General Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 992px) {
    

    .header-container {
      justify-content: space-between;      
    }

    .logo {
        margin-left: 1rem;
    }

    .hamburger-menu {
        margin-right: 1rem;
    }

    .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; /* Change to left instead of right */
    height: 100vh;
    width: 60%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
   }

    .nav-list.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger-menu div {
        width: 25px;
        height: 3px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
    }    

    .hero-container {
        grid-template-columns: 1fr;
        padding-top:2.5rem;
    }

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

    .course-stats {
        grid-template-columns: 1fr 1fr;
    }

  /* .contact_us_form,
  .confirmation_message {
    width: 100%;
  } */

  
  .contact_us_bottom .image_wrapper {
    display: none;
  }
  .contact_us_form,
  .confirmation_message {
    width: 19rem;
  }
  .contact_us_top {
    margin: 0 auto;
  }
  .contact_us_top p {
    max-width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .course-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .careers-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .main-header {
        padding: 0.5rem 1rem;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger-menu {
        align-self: flex-end;
    }

    .hero {
        text-align: center;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .enrollment-cta .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* Utility Classes */
.section-padding {
    padding: var(--section-padding);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

