@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&display=swap');

*, *::after, *::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ################################### MEASUREMENT ############################### */
html{
    font-size: 62.5%;
}

body{
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}


h1, h2, h3 {
    font-family: "Prata", serif;
    color: #E1AA08;
}

p{
    font-family: "Poppins", sans-serif;
    color: #192A3D;
}

/* .btn{
    background-color: #E1AA08;
    border: 2px solid #192A3D;
    border-radius: 2rem;
    font-size: 1.5rem;
    padding: 5px;
    color: #192A3D;
    text-decoration: none;
    margin-top: 20px;
} */
.btn{
    background: #E1AA08;
    border: 1px solid #192A3D;
    border-radius: 2rem;
    font-size: 1.5rem;
    padding: 0 5px;
    color: #192A3D;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.btn:hover {
    background-color: #c78d07;
}

/* ######################## MAIN PAGE ################################### */

.showcase-area{
    color: #E1AA08;
    height: 95vh;
    background: linear-gradient(rgba(24,24,24,0.144), rgba(25,25,25,0.336)), url("../img/IMG_2551.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.course-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3.2rem;
    color: #fff;
}

.showcase-area p{
    color: #fff;
    font-size: 1.6rem;
}

.main-title{
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    /* left: auto; */
}

/* #################################### NAVIGATION BAR ############################################# */

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(255, 255, 255, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    list-style: none;
    position: relative;
    top: 11%;
    width: 100%;
    /* text-align: center; */
    margin-top: 10px;
  }
  
  .overlay a {
    font-family: "Nunito Sans", sans-serif;
    padding: 8px;
    text-decoration: none;
    font-size: 20px;
    margin-left: 8em;
    margin-bottom: 1em;
    color: #000000;
    font-weight: 700;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #E1AA08;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
  @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }

/* ############################### ABOUT US ###################################### */

#about{
    padding: 50px 0px;
}

.about-wrapper{
    display: flex;
    flex-wrap: wrap;
}

#about h2{
    font-size: 3.2rem;
    color: #E1AA08;
}

#about p{
    font-size: 1.6rem;
    color: #192A3D;
}

#about .small{
    font-size: 1.6rem;
    color: #192A3D;
    font-weight: 600;
}

.about-img{
    flex: 1 1 500px;
    padding: 0px;
    transform: translateX(150%);
    animation: about-img-animation 2s ease-in-out forwards;
}

@keyframes about-img-animation{
    100%{
        transform: translate(0);
    }
}

.about-text{
    flex: 1 1 500px;
    padding: 30px;
    margin: auto;
    transform: translateX(-150%);
    animation: about-text-animation 2s ease-in-out forwards;
}

@keyframes about-text-animation {
    100%{
        transform: translate(0);
    }
}

.about-img img{
    display: block;
    height: 500px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: center;
}

/* ############################################ Services ####################################### */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #192A3D;
}

.courses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 30%;
    display: flex;
    flex-direction: column;
}

.course-image {
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 2rem;
    margin: 0 0 10px;
    color: #E1AA08;
}

.course-description {
    flex: 1;
    margin: 0 0 20px;
    color: #192A3D;
    font-size: 1.5rem;
}

.course-link {
    text-align: center;
    padding: 10px 20px;
    background: #E1AA08;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.course-link:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .courses {
        flex-direction: column;
        align-items: center;
    }

    .course {
        width: 80%;
    }
}
 /* ########################################### Gallery ################################ */
.gallery-section{
    /* background: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%, 0.336)), url("../img/round-mandala.png"); */
    background-position: center;
}

 .gallery {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  display: block;
}

.section-title > h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #192A3D;
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ################################################## testimonial ############################################ */
.container-fluid {
    background-color: #f9f9f9;
    padding: 5rem 0;
    margin-bottom: 15rem;
}

.text-uppercase{
    margin-bottom: 5rem;
    text-decoration: underline #192A3D;
}

.text-center h6 {
    color: #E1AA08;
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
}
.text-center h1 {
    color: #192A3D;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 3px;
}

.testimonial-carousel{
    max-height: 300px;
}
.testimonial-carousel .text-center {
    position: relative;
    padding-bottom: 1rem;
}
.testimonial-carousel img {
    border-radius: 50%;
    border: 5px solid #000000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-text {
    position: relative;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 0px;
    z-index: 1;
}
.testimonial-text p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.testimonial-text h5 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.testimonial-text span {
    color: #E1AA08;
    font-size: 1rem;
}
.owl-theme .owl-controls .owl-buttons div {
    background: #E1AA08;
    color: #fff;
    border-radius: 50%;
    padding: 0.5rem 1rem;
}
.owl-theme .owl-controls .owl-page span {
    background: #c78d07;
    border-radius: 50%;
    opacity: 1;
}
@media (max-width: 768px) {
    .text-center h1 {
        font-size: 2rem;
    }
    .testimonial-text {
        padding: 1.5rem;
    }
    .testimonial-text p {
        font-size: 0.9rem;
    }
    .testimonial-text h5 {
        font-size: 1rem;
    }
    .testimonial-text span {
        font-size: 0.9rem;
    }
}
/* ############################################## Contact Form ############################################ */
/* Container Styles */
.bg-registration {
    background: linear-gradient(135deg, #E1AA08, #192A3D);
    padding: 90px 0;
    color: white;
    margin-top: 0;
}

/* Heading and Text Styles */
/* .text-primary {
    color: #E1AA08 !important;
} */

.text-white {
    color: white !important;
}

.mb-4 h6 {
    letter-spacing: 5px;
    color: #E1AA08;
    font-weight: bold;
}

.mb-4 h1 {
    font-size: 2.5rem;
}

ul.list-inline {
    list-style-type: none;
    padding: 0;
}

ul.list-inline li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

ul.list-inline li i {
    color: #E1AA08;
    margin-right: 10px;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #192A3D;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
}

.card-header h1 {
    margin: 0;
    font-size: 1.75rem;
}

.card-body {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 40px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    padding: 15px;
    font-size: 3rem;
}

.form-control:focus {
    border-color: #E1AA08;
    box-shadow: 0 0 5px rgba(225, 170, 8, 0.5);
}

.custom-select {
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    padding: 10px;
    font-size: 3rem;
}

.custom-select:focus {
    border-color: #E1AA08;
    box-shadow: 0 0 5px rgba(225, 170, 8, 0.5);
}

/* Flexbox Layout */
.container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 90px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.col-lg-7, .col-lg-5 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .col-lg-7 {
        max-width: 58.33333%;
    }
    .col-lg-5 {
        max-width: 41.66667%;
    }
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-lg-0 {
    margin-bottom: 0 !important;
}

/* ########################################## Footer ####################################### */

.footer{
    background: linear-gradient(to left, #E1AA08, #192A3D);
    color: #f4f4f4;
    padding: 1rem;
    text-align: center;
}

.footer p{
    color: #fff;
    text-align: left;
    margin-left: 0px;
    font-size: 2rem;
}

.footer h2{
    color: #E1AA08;
    text-align: left;
    margin-left: 0px;
    font-size: 2rem;
}

.footer h3{
    text-align: center;
}

.footer > .newsletter{
    margin-top: 0;
    font-size: 2rem;
    margin-right: 40px;
    text-align: right;
    color: #192A3D;
}
.footer h3{
    font-size: 1.5rem;
    margin-left: 40px;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
}

.social-media-links{
    text-align: center;
}

.social-media-links h3{
    font-size: 2rem;
    margin-left: -5px;
    margin-top: -60px;
}

.social-media-links i{
    margin: 1rem;
    color: #fff;
    
}


/* ########################################################### */

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer .container div {
    flex: 1;
    margin: 10px;
    min-width: 200px;
} */
/* .footer h3 {
    color: #E1AA08;
    font-size: 18px;
    margin-bottom: 20px;
}
.footer p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.footer a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
} */
/* .footer a:hover {
    color: #E1AA08;
}
.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}
.footer .social-icons a:hover {
    background-color: #555;
}
.footer .social-icons a i {
    color: #E1AA08;
} */
/* .footer .newsletter input[type="email"] {
    padding: 10px;
    width: 70%;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #fff;
} */
/* .footer .newsletter input[type="submit"] {
    padding: 10px;
    border: none;
    background-color: #E1AA08;
    color: #fff;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}
.footer .newsletter input[type="submit"]:hover {
    background-color: #c78d07;
}
.footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}
.footer .copyright a {
    color: #E1AA08;
    text-decoration: none;
}
.footer .container div.contact-info p {
    display: flex;
    align-items: center;
}
.footer .container div.contact-info p i {
    margin-right: 10px;
    color: #E1AA08;
} */

















/* #################################################### For Small screen ################################## */
@media (max-width: 500px){
    html{
        font-size: 50%;
    }

    .course-container{
        font-size: 50%;
        text-align: center;
    }

    .footer-h2,.footer-p{
        opacity: 0;
    }

    .gallery-section{
        background: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%, 0.336)), url("../img/round-mandala.png");
        background-position: center;
        background-repeat: no-repeat;
    }

    .testimonial-container{
        flex-direction: column;
        text-align: center;
        width: 50%;
    }

    .courses-number{
        flex-direction: column;
        text-align: center;
    }

    .courses-container img{
        margin: auto;
    }

    .form-container-container{
        width: 90%;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
    }

    .contact-image{
        width: 90%;
        margin: 3rem auto;
    }
}

/* ############ landscape mode ########## */

@media (orientation: landscape) and (max-height: 500px){
    .showcase-area{
        height: 50vmax;
    }
}


/* ################################################## */

@media (max-width: 1150px){
    html{
        font-size: 50%;
    }

    .course-container{
        font-size: 50%;
        text-align: center;
    }

    .footer-h2,.footer-p{
        opacity: 0;
    }

    .gallery-section{
        background: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%, 0.336)), url("../img/round-mandala.png");
        background-position: center;
        background-repeat: no-repeat;
    }

    .testimonial-container{
        flex-direction: column;
        text-align: center;
        width: 50%;
    }

    .courses-number{
        flex-direction: column;
        text-align: center;
    }

    .courses-container img{
        margin: auto;
    }

    .form-container-container{
        width: 90%;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
    }

    .contact-image{
        width: 90%;
        margin: 3rem auto;
    }
}


/* ############################################################################################### */
@media (max-width: 768px){
    html{
        font-size: 50%;
    }

    .course-container{
        font-size: 50%;
        text-align: center;
    }

    .footer-h2,.footer-p{
        opacity: 0;
    }

    .gallery-section{
        background: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%, 0.336)), url("../img/round-mandala.png");
        background-position: center;
        background-repeat: no-repeat;
    }

    .testimonial-container{
        flex-direction: column;
        text-align: center;
        width: 50%;
    }

    .courses-number{
        flex-direction: column;
        text-align: center;
    }

    .courses-container img{
        margin: auto;
    }

    .form-container-container{
        width: 90%;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
    }

    .contact-image{
        width: 90%;
        margin: 3rem auto;
    }
}