@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;


}

/* Hero Section Styling */
.hero {
    width: 100%;
    min-height: 50vh;
    background-image: linear-gradient(#000709a0, rgba(0, 0, 9, 0)), url("../images/online-programming-course-hero-section-bg.svg");
    background-position: center;
    background-size: cover;
    padding: 0px 10%;
    border-bottom-right-radius: 150px;
    overflow: hidden;
}

.course-hero {
    color: white;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.course-hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    text-align: center;
    margin: 0 auto;
    color: #FFFFFF00;
    font-family: "M PLUS Rounded 1c", Sans-serif;
    font-size: 60px;
    font-weight: 600;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #FFFFFF;
    stroke: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.hero-underline {
    width: 100px;
    height: 2px;
    background-color: white;
    margin: 10px auto 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: white;
}

.hero-subtitle .highlight {
    color: #8d86ff;
}

.section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 40px;
}

.left-content1 {
    flex: 1 1 400px;
}

.left-content1 h5 {
    color: #432fff;
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.left-content1 h2 {
    font-family: "Montserrat", Sans-serif;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
}

.left-content1 h2 span {
    color: #605BE5;
}

.underline {
    width: 120px;
    height: 4px;
    background: #ea3f53;
    margin: 15px 0;
}

.left-content1 p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-top: 2rem;
    max-width: 550px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    flex: 1 1 400px;
}

.stat-box {
    background: linear-gradient(to bottom, #00bfff, #0077b6);
    color: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    min-width: 180px;
    flex: 1 1 40%;
}

.stat-box h3 {
    font-size: 32px;
    margin: 0 0 10px;
}

.stat-box p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .stat-box {
        flex: 1 1 100%;
    }
}

/* cards */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.highlight {
    color: #7d5fff;
}
.tab-button{
     border-radius: 20px !important;
     color: white !important;
    background-color: rgb(5, 113, 142) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(56, 56, 56, 0.414) !important;
    padding: 10px 20px !important;

}

.tab-button.active {
    background-color: #ffffff !important;
    color: rgb(0, 0, 0) !important;
}

.card img {
    border-radius: 1.5rem;
    height: 180px;
    object-fit: cover;
}

.card-body {
    text-align: left;
}

.stars {
    font-size: 1rem;
}

.course-card {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .course-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
.card{
    border-radius: 1.5rem !important;
    box-shadow: 0 7px 9px rgba(56, 56, 56, 0.414) !important;
    text-decoration: none !important;

}
.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    #cardcontainer {
        width: 100%;
        align-items: center;
    }
}


.pricing-section {
        padding: 60px 20px;
        text-align: center;
    }

    .pricing-section h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 40px;
    }

    .pricing-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card1 {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 320px;
        padding-bottom: 2rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .card-header {
        background: linear-gradient(to right, #00bfff, #6a11cb);
        color: white !important;
        font-weight: 300;
        padding: 10px !important;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .card-price {
        font-size: 45px;
        color: rgb(85, 85, 85);
        font-weight: 800;
        margin: 20px 0 10px;
        padding-bottom: 2rem;
    }

    .card1 ul {
        list-style: circle;
        text-align: start;
        margin: 0;
    }

    .card1 ul li {
        margin-bottom: 8px;
        font-size: 12px;
    }


    .card-footer {
        margin-top: auto;
        padding: 20px;
    }

    .card-footer button {
        background: #000;
        color: #fff;
        padding: 10px 25px;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .card-footer button:hover {
        background: #333;
    }

    @media (max-width: 768px) {
        .pricing-cards {
            flex-direction: column;
            align-items: center;
        }
    }

     .contact-heading {
        border-bottom: 3px solid #00bcd4;
        display: inline-block;
        padding-bottom: 8px;
    }

    .map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
