* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    overflow-x: hidden !important;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}

span {
    font-size: .9rem;
    color: 757373;
}

h6 {
    font-size: 1.1rem;
    color: rgb(24, 24, 49);
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

img {
    max-width: 100%;
    height: auto;
}



/* Navigation */
/* Navigation (unchanged) */
nav {
    position: fixed;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

nav img {
    width: 150px;
    cursor: pointer;
}

nav .navigation {
    display: flex;
}

#menu-btn {
    width: 30px;
    height: 30px;
    display: none;
}

#menu-close {
    display: none;
}

.navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navigation ul li {
    list-style: none;
    margin-left: 30px;
}

.navigation ul li a {
    text-decoration: none;
    color: rgb(45, 13, 92);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.navigation ul li a.active,
.navigation ul li a:hover {
    color: #ec8d3b;
}

/* Home Section */
#home {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* For text overlay positioning */
}

/* Image Slider */
/* Existing styles (as-is) */
.image-slider {
    width: 100%;
    height: 66vh;
    overflow: hidden;
    position: absolute;
    top: 119px;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}



/* Show the first slide initially (JS will override, but good fallback) */
.slide:first-child {
    opacity: 1;
    z-index: 1;
}

/* Text and Button Styles */
#home h2 {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
    z-index: 1;
    /* Above slider */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Optional: Improve readability */
}

#home p {
    width: 50%;
    color: #fff;
    font-size: 0.9rem;
    line-height: 25px;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    /* Optional */
}

.btn {
    margin-top: 30px;
    z-index: 1;
}

#home a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 15px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
    margin: 0 10px;
}

#home a.yellow {
    color: #fff;
    background: hwb(24 22% 6%);
}

#home a.yellow:hover {
    color: #eb8a2f;
    background: #fff;
    transition: 0.3s ease;
}


#features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    bottom: 70px;
}

#features .fea-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    /* 🔁 spacing between boxes */
    margin-top: 50px;
}

#features .fea-base .fea-box {
    background: #fdfdff;
    text-align: start;
    padding: 25px;
    border-radius: 10px;
    /* 🔁 rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* 🔁 soft shadow */
    transition: transform 0.3s ease;
}

#features .fea-box:hover {
    transform: translateY(-5px);
    /* 🔁 subtle hover effect */
}

.fea-box i {
    font-size: 2.5rem;
    color: #2c3e50;
}

#features .fea-box h3 {
    font-size: 1.4rem;  
    font-weight: 700;
    color: rgb(45, 13, 92);
    padding: 13px 0 7px 0;
}

.fea-box p {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    color: #555;
}


/* course */


/* SECTION STYLING */
#course {
    padding: 40px 20px;
    /* background-color: #f5f5f5; */
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

#course h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

#course>p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* MAIN CONTAINER */
/* === ✅ COURSE CONTAINER === */
.course-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 60px auto;
    /* spacing between each course section */
    padding: 0 20px;
    background-color: transparent;
    /* ❌ Removed white background */
    box-shadow: none;
    /* ❌ Removed box shadow */
    border-radius: 0;
    /* ❌ Removed border radius */
}

/* === ✅ IMAGE SIDE === */
.course-image {
    flex: 1;
    min-width: 320px;
    margin-right: 30px;
    /* ✅ Adds space between image and text */
}

.course-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    /* ✅ Optional: smooth edges */
}

/* === ✅ TEXT SIDE === */
.course-details {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: transparent;
    /* ❌ No white background */
}

.course-content {
    text-align: left;
    max-width: 600px;
}


/* TEXT & HEADING */
.course-details h2 {
    font-size: 1.9rem;
    color: #1a237e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-details p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* FEATURES LIST */
.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.course-features li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-features li i {
    color: #007BFF;
    font-size: 1.2rem;
    min-width: 20px;
}

/* CONTACT INFO */
.contact-info {
    font-size: 1rem;
    color: #444;
    margin-top: 20px;
}

.contact-info i {
    margin-right: 8px;
    color: #555;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .fa-instagram {
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    transition: 0.3s ease;
}




/* #course .course-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#course .courses {
    text-align: start;
    background-color: #f9f9ff;
    height: 100%;
}

#course .courses img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}


#course .courses .details {
    padding: 15px 15px 0 15px;
}

#course .courses .details h6{
    font-weight: bold;
    color: #2C3E50;
}

#course .courses .details li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 10px;
    color: #333;
    list-style: none;
    transition: all 0.3s ease;
}

#course .courses .details li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #4CAF50; /* Green tick */
/* font-size: 1.1rem;
    top: 0.05rem;
}

#course .courses .details li:hover {
    color: #007BFF; /* Optional hover color */
/* transform: translateX(5px);
} */

/* #course .courses .details i {
    color: #FDC93B;
    font-size: .9rem;
}

#course .courses .cost {
    background-color: rgb(74, 74, 136);
    color: #fff;
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    bottom: 109px;
    left: 305px;
    z-index: 0;
}  */


/* registration */

#registration {
    padding: 6vw 8vw 6vw 8vw;
    background-image: linear-gradient(rgba(99, 112, 168, 0.5), rgba(81, 91, 233, 0.5)), url(../images/vitaly-gariev-vRcI-tt7U7I-unsplash.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#registration .reminder {
    color: #fff;
}

#registration .reminder h1 {
    color: #fff;
}

#registration .reminder .time {
    display: flex;
    margin-top: 40px;
}

#registration .reminder .time .date {
    text-align: center;
    padding: 13px 33px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.35);
    border-radius: 10px;
    margin: 0 5px 10px 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    font-weight: 600;
}

#registration .form {
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 55px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.35);
    margin-right: 75px;
}

#registration .form input {
    margin: 15px 0;
    padding: 15px 10px;
    border: 1px solid rgba(84, 40, 241, );
    outline: none;
}

#registration .form input::placeholder {
    color: #413c3c;
    font-weight: 500;
    font-size: 0.9rem;
}

#registration .form .btn {
    margin-left: 55px;
}

#registration .form a.yellow {
    color: #fff;
    background: #ec8d3b;
}

#registration .form a.yellow:hover {
    color: #ec8d3b;
    background: #fff;
    transition: 0.3s ease;
}

#registration .form a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 15px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#experts {
    padding: 8vw 8vw 0 8vw;
    text-align: center;
    padding-bottom: 50px
}

#experts .expert-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#experts .expert-box .profile {
    background: #fafaf1;
    padding: 30px 10px;
}

#experts .expert-box .profile .pro-links {
    margin-top: 10px;
}

#experts .expert-box .profile .pro-links i {
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    transition: 0.3s ease;
}

#experts .expert-box .profile .pro-links i:hover {
    background: rgb(21, 21, 100);
    color: #fff;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
}

/* footer */

footer {
    padding: 8vw;
    background-color: #101C32;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-col {
    padding-bottom: 40px;
}

footer h3 {
    color: rgb(241, 240, 245);
    font-weight: 600;
    padding-bottom: 20px;
}

footer li {
    list-style: none;
    color: #7b838a;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

footer li:hover {
    color: rgb(241, 240, 245);
}

footer p {
    color: #7b838a;
}

footer .subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: #334f6c;
    border: none;
    outline: none;
    color: #fff;
}

footer .subscribe a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 15px;
    background-color: #fff;
    font-weight: 600;
}

footer .subscribe a.yellow {
    color: #fff;
    background: #ec8d3b;
}

footer .subscribe a.yellow:hover {
    color: #ec8d3b;
    background: #fff;
    transition: 0.3s ease;
}

footer .copyright {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

footer .copyright p {
    color: #fff;
}

.footer-col .pro-links {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .pro-links i {
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    transition: 0.3s ease;
    background-color: #5f7185;
    color: #fff;
}

footer .pro-links i:hover {
    background-color: #fdb93b;
    color: #2c2c2c;
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #f1f1f1;
}

.footer-col i {
    margin-right: 10px;
    color: #3498db;
}





/* About-home */

#about-home {
    /* background-image: linear-gradient(rgba(9, 5, 45, 0.3), rgba(5, 4, 46, 0.7)), url("../images/bg-image.jpg"); */
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding-top: 40px; */
}

/* #about-home h2 {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
} */

#enroll-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 🟢 Center both children horizontally */
    flex-wrap: wrap;
    /* 🟢 Allow wrapping on smaller screens */
    padding: 4vw;
    /* 🟢 Add some space around the container */
    box-sizing: border-box;
    gap: 2rem;
    /* 🟢 Add space between image and text */
}

#enroll-container .enroll-img-sec {
    flex: 1 1 45%;
    /* 🟢 Make it flexible and responsive */
    display: flex;
    justify-content: center;
    align-items: center;
}

#enroll-container .enroll-img {
    height: auto;
    max-height: 70vh;
    /* 🔧 Keeps image from being too tall */
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 8px;
    /* Optional: rounded corners */
}

#enroll-container .enroll-text {
    flex: 1 1 45%;
    /* 🟢 Also flexible for text area */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 🔧 Vertically center text content */
    align-items: flex-start;
    /* 🔧 Align text to the left */
    padding: 1rem;
}

#enroll-container .enroll-text-heading {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* 🔧 Left align heading */
    margin-bottom: 1rem;
}

#enroll-container .enroll-text-heading h2 {
    font-size: 2rem;
    color: #482c9c;
    margin: 0;
}

#enroll-container .enroll-text p {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    color: #555;
}



/* counter part */


#stats {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  position: relative;

}

#stats h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

#stats .subheading {
  color: #444;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.stat-box {
  width: 100%;
  padding: 40px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.about-home-img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    top: -50px;
}


.about-section {
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
    position: relative;
}

.about-section h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #1f1f1f;
    font-weight: 600;
    position: relative;
}

.about-section h1::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #3498db;
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.about-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 18px;
    color: #444;
    text-align: center;
}

.about-section ul {
    max-width: 800px;
    margin: 30px auto;
    padding-left: 0;
    list-style: none;
}

.about-section ul li {
    font-size: 17px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.about-section ul li::before {
    content: "\f058"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #27ae60;
}

.about-section .cta {
    text-align: center;
    margin-top: 40px;
}

.about-section .cta a {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-section .cta a:hover {
    background-color: #2980b9;
}



/* blog section */


.blog-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #2b2b2b;
    margin-bottom: 50px;
    position: relative;
    padding: 5rem;
    top: 4rem;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #3498db;
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}


/* contact section */

/* Parallax Background */
.parallax-contact-section {
    background-image: url(../images/bg-get-in-touch.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* padding: 80px 20px; */
    position: relative;
    color: #fff;
}

/* Dark overlay for readability */
.parallax-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
}

/* Form container */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ddd;
}

/* Form fields */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3498db66;
}

/* Submit button */
.submit-btn {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6

}



@media (max-width: 769px) {
    nav {
        padding: 15px 20px;
    }

    nav img {
        width: 130px;
    }

    #menu-btn {
        display: initial;
    }

    #menu-close {
        display: initial;
        font-size: 1.6rem;
        color: #fff;
        padding: 30px 0 20px 20px;
    }

    .navigation ul {
        position: absolute;
        top: 0;
        right: -220px;
        width: 220px;
        height: 100vh;
        background-color: rgba(17, 20, 104, 0.45);
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }

    .navigation ul.active {
        right: 0;
    }

    .navigation ul li {
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }

    .navigation ul li a {
        color: #fff;
    }

    #home p {
        width: 90%;
    }

    #home {
        padding-top: 0px;
    }

    #features {
        padding: 8vw 4vw 0 4vw;
        position: relative;
        bottom: -60px;
    }

    #course {
        padding: 8vw 4vw 0 4vw;
        position: relative;
        top: 40px;
    }

    #course .courses .cost {
        position: relative;
        left: 255px;
    }

    #registration {
        padding: 6vw 4vw 6vw 4vw;
    }

    #registration .reminder .time {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    #registration .form {
        margin-right: 2px;
    }

    #experts {
        padding: 8vw 8vw 4vw 8vw;
        text-align: center;
        padding-bottom: 50px;
    }

    #course .course-box {
        margin-bottom: 50px;
    }

    #enroll-container{
        position: relative;
        top: 45px;
    }

     #home {
        height: auto;
        min-height: 50vh;
    }

    .image-slider {
        height: 50vh;
        position: relative;
        /* Stack on mobile */
        z-index: 0;
    }

    .slides {
        height: 50vh;
    }

    .slide {
        height: 50vh;
    }

    #home h2 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    #home p {
        width: 80%;
        font-size: 0.8rem;
    }

    #home a {
        display: block;
        margin: 10px auto;
    }

       .image-slider {
        height: 50vh; /* Reduce height for smaller screens */
        top: 75px;    /* Adjust top position to fit better */
    }

    .slide {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

        .course-container {
        flex-direction: column;
    }

    .course-details {
        padding: 30px 20px;
    }

    .course-content {
        text-align: center;
    }

    .course-features li {
        justify-content: center;
    }


}


@media(max-width:475px) {

    #registration {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #registration .reminder .time {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    footer input {
        margin-bottom: 20px;
    }

     #home h2 {
        font-size: 1.2rem;
    }
    #home p {
        width: 95%;
        font-size: 0.75rem;
    }
    #home a {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    #features, #course, #experts {
        padding: 20px;
    }

     #registration .form {
        padding: 20px;
        margin-right: 0;
        width: 100%;
        
    }

    .course-image img{
        position: relative;
        right: .8rem;
    }

        .course-details {
        padding: 29px 4px;
        margin-right: 56px;
    }

     .slide{
         top: -71px;
    }

    #features{
        top: 0px;
    }

    footer{
        flex-direction: column;
    }

    #blog-1 img{
         height: 200px !important;
         position: relative;
         bottom: 11pximg;
    }

    .about-home img{
        width: 100%;
        height: 100%;
    }


     .about-home-img{
        border-radius: 0px;
    }

    .about-section{
        position: relative;
        bottom: 176px;
    }

}





/* blog-1 */

#blog-1 img{
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 501px;
    width: 100%;
}
section#blog-1 {
    margin-top: 115px;
}

.amu-prep {
    background: linear-gradient(135deg, #f9f9f9, #fff3e6);
    border-left: 6px solid #ff6600;
    padding: 25px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    font-family: "Segoe UI", sans-serif;
    text-align: justify;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amu-prep:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.amu-prep h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: bold;
}

.amu-prep p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.amu-prep strong {
    color: #e67e22;
}


.amu-points {
    background: #ffffff;
    border: 2px solid #ff6600;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 25px auto;
    max-width: 750px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: "Segoe UI", sans-serif;
}

.amu-points h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: bold;
}

.amu-points ul {
    list-style: none;
    padding: 0;
}

.amu-points ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.amu-points ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
}
