@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap"');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: black;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

.container {
    max-width: 90%;
    margin: 0 auto;
}

.dummy {
    padding-bottom: 60px;
}

.header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #242429;
    color: white;
    transition: 0.3s;
}

#unique {
    color: rgba(0, 0, 0, 0.7);
}

.logo img {
    margin-top: 10px;
    width: 250px;
    /* Adjust the width to your desired size */
    height: auto;
    /* Maintain aspect ratio */
    padding-left: 80px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}

.menu {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    transition: 0.5s;
}

.menu li {
    list-style-type: none;
    color: white;
    font-weight: bold;
}

.menu li a {
    color: white;
    font-weight: bold;
    display: block;
    text-decoration: none;
    padding: 30px 20px;
    font-size: 18px;
    line-height: 1;
    transition: 0.3s;
}

.menu li a:hover {
    color: #dc9e2bf5;
}

#line2 {
    margin-top: 3px;
    margin-bottom: 3px;
}

.hambuerger-menu {
    position: relative;
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.menu-toogle {
    position: absolute;
    width: 30px;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hambuerger-menu,
.menu-toogle {
    display: none;
}

.navigation input:checked~.hambuerger-menu {
    background: transparent;
}

.navigation input:checked~.menu {
    right: 0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0, 0.3);
}

.navigation input[type="checkbox"]:checked~.bun #line1 {
    transform: rotate(45deg);
    background-color: black;
}

.navigation input[type="checkbox"]:checked~.bun #line3 {
    transform: rotate(-45deg);
    background-color: black;
}

.navigation input[type="checkbox"]:checked~.bun #line2 {
    display: none;
}

@media screen and (max-width: 992px) {

    .hambuerger-menu,
    .menu-toogle {
        display: block;
    }

    .header {
        padding: 25px;
    }

    .menu {
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        background-color: white;
        box-shadow: 0 0 6px white;
        width: 300px;
        height: 100%;
        padding-top: 65px;
        opacity: 1;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 30px;
        font-size: 24px;
        color: black;
    }

    .menu li a:hover {
        padding: 30px;
        font-size: 24px;
        box-shadow: 0 1px 0 white;
        color: dc9e2bf5;
    }

    .imagesposition {
        display: none;
    }
}

.container1 {
    height: 700px;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.833) 10%, rgba(0, 0, 0, 0.588), rgba(0, 0, 0, 0.549));
    background-image: url("./pic/citb_chevron.svg");
    background-repeat: no-repeat;
    background-size: 1000px;
    background-position: right;
    /* Align background image to the right */
    position: relative;
    /* Required for layering */
    color: white;
}

.yello_color {
    color: #dc9e2bf5;
}

.lg-heading {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: -30px;
    /* Adjust the margin bottom as needed */
}

.para {
    padding-top: 20px;
    font-size: 28px;
}

.btn-secondary {
    padding: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .btn-secondary {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .btn-secondary {
        padding: 12px;
    }
}

#buton-box1 {
    margin-top: 2rem;
    background-color: #dc9e2bf5;
    font-size: 15px;
    font-weight: bold;
    color: black;
}

#buton-box1:hover {
    background-color: #dc9e2b;
}

#buton-box2 {
    margin-left: 20px;
    margin-top: 2rem;
    background-color: black;
    font-size: 15px;
    font-weight: bold;
    color: #dc9e2bf5;
    border: 1px solid #dc9e2bf5;
}

#buton-box2:hover {
    background-color: #dc9e2b;
    color: black;
}

.one-line {
    display: flex;
}

.one-line1 {
    margin-left: 60px;
    display: flex;
    position: absolute;
    width: 100%;
    /* Adjust the width as needed */
    justify-content: space-between;
    /* or space-evenly */
}

.one-line1>div {
    flex: 1;
}

.position-d {
    margin-left: 60px;
}

.size-img img {
    width: 100px;
}

span {
    text-decoration: underline;
}

.text-revie {
    font-size: 20px;
    padding-right: 10px;
}

#adjust {
    transform: translateX(-50%);
}

.golden-star {
    filter: brightness(200%);
}

.imagesposition img {
    width: 280px;
    height: 350px;
}

/* contact us design */
.yellow_background {

    background-color: #dc9e2bf5;
}

.white_color {
    color: white;
}

.space_line {
    margin-top: 70px;
}

.image-fix {
    position: absolute;
    bottom: 0;
    right: 0;

}

.contact-container {
    margin-top: 80px;
    padding: 20px;
}

.contact-container h2 {
    font-size: 40px;
}

.contact-container p {
    font-size: 20px;
}

.contact-container i {
    font-size: 20px;
    padding-right: 10px;
}

/* Responsive styles for screens less than 768px */
@media only screen and (max-width: 768px) {

    /* Adjustments for smaller screens */
    .lg-heading {
        font-size: 60px;
    }

    .image-fix {
        display: none;

    }

    .contact-container {
        margin-top: 40px;
    }

    .contact-container h2 {
        font-size: 20px;
    }

    .contact-container p {
        font-size: 16px;
    }

    .contact-container i {
        font-size: 16px;
    }
}

/* Responsive styles for screens less than 480px */
@media only screen and (max-width: 480px) {
    /* Additional adjustments for even smaller screens */

    .contact-container {
        margin-top: 20px;
    }

    .contact-container h2 {
        font-size: 24px;
    }

    .contact-container p {
        font-size: 14px;
    }

    .contact-container i {
        font-size: 14px;
    }
}


/* aboutus */
.italic_style {
    font-style: italic;
    font-weight: lighter;
}

/* course */
.course-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.course-list i {
    color: #dc9e2bf5;
    font-size: 20px;
    padding-right: 10px;
}

.course-list li {
    font-size: 20px;
    cursor: pointer;
}

.size-heading {
    font-size: 50px;
    font-weight: normal;
    border-bottom: solid #dc9e2bf5 1px;
    padding-top: 70px;

}

.coursesHome {
    padding-top: 800px;
    padding-bottom: 300px;
}

footer {
    background-color: #242429;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 0;
    padding: 10px;
    text-align: center;
}