* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
}
/* Navbar */
.navbar {
    background: linear-gradient(90deg, #050505, #3a3a3a);
}

/*------Logo----*/
.navbar-brand img {
    height: 70px;
    width: 120%;
    background: white;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e023b7;
    transform: scale(1.1);
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #fff !important; 
    background: none; 
    outline: none; 
}


.social-icons a:hover {
    transform: scale(1.1);
}

/* Mobile Navbar Icon */
.navbar-toggler {
    border: none;
    outline: none;
    background-color: #d63384 !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}
/*----------carausal------------*/
.carousel-item {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 40%;
}

.carousel-caption h1 {
    font-size: 42px;
    font-weight: bold;
    color: #d63384;
}

.carousel-caption p {
    font-size: 20px;
    color: #333;
}

.carousel-caption .btn {
    background: #d63384;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.carousel-caption .btn:hover {
    background: #a72d6d;
}

/*---------carausal Mobile Responsive--------------*/
        @media (max-width: 768px) {
            .carousel-caption {
                position: relative;
                left: 0;
                top: 0;
                transform: none;
                text-align: center;
                max-width: 100%;
                padding: 20px;
            }

            .carousel-caption h1 {
                font-size: 28px;
            }

            .carousel-caption p {
                font-size: 16px;
            }
        }
    /*---------Background Image Styling-----------*/
    .services-section {
    background: url('img/2banner.jpg') no-repeat center center/cover;
    padding: 80px 0;
        }

        /*----------service Card Styling-------------*/
        .service-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 30px;
            transition: transform 0.3s ease-in-out;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #ffe0eb;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 15px;
        }

        .service-icon img {
            width: 105px;
        }

        .service-card h4 {
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        .service-card p {
            color: #333;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .service-card hr {
            width: 60px;
            height: 5px;
            background: #990335;
            margin: 10px auto;
            border: none;
        }

        /*----------Responsive Design--------------*/
        @media (max-width: 768px) {
            .services-section {
                padding: 50px 20px;
            }
        }
        /*--------------------about-------------*/
.academy-section {
    padding: 60px 0; 
}

.d-flex.gap-lg-5 {
    gap: 3rem; 
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}


.image-box {
    margin-bottom: 1rem; 
}

@media (min-width: 992px) {
    .image-box {
        margin-bottom: 0; 
    }
}

.content-box {
    text-align: left;
    padding-top: 20px; 
}

.content-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}


.divider {
    width: 50px;
    height: 4px;
    background-color: #ff4081;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 5px;
    font-size: 16px;
}


.btn-enroll {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4081;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

/* Button Hover Effect */
.btn-enroll:hover {
    background-color: #e6006d;
}

/* 📌 Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column-reverse; 
    }

       .image-box {
        margin-bottom: 2rem; 
    }

    .btn-enroll {
        margin-top: 1rem; 
        margin-bottom: 2rem; 
    }

    .content-box {
        
        padding: 20px 10px 30px; 
    }

    .content-box h3 {
        font-size: 20px; 
        margin-top: 20px; /
    }

    .divider {
        margin: 0 auto 10px; 
    }

    .features-list li {
        font-size: 14px; 
    }

    .btn-enroll {
        width: 80%; 
        text-align: center;
        display: block;
        margin: 10px auto 20px; 
    }
}

        /* Background Styling */
        .contact-section {
            background: url('img/faq-bg.jpg') no-repeat center center/cover;
            padding: 80px 0;
            position: relative;
        }

/*------------Background Overlay---------------*/
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 228, 230, 0.8); 
}

/*----------Ensure content appears above overlay--------------*/
.container {
    position: relative;
    z-index: 2;
}

/*---------------------Left Side Content-------------------*/
.contact-text {
    color: #333;
    padding: 50px;
    text-align: left;
}

.contact-text h2 {
    font-weight: bold;
    font-size: 42px;
    color: #d63384;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-text h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d63384;
    margin-top: 8px;
    border-radius: 2px;
}

.contact-text p {
    font-size: 20px;
    line-height: 1.6;
    margin: 15px 0;
    color: #444;
}

.contact-text ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.contact-text ul li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.contact-text ul li i {
    color: #d63384;
    margin-right: 12px;
    font-size: 20px;
}

.contact-text ul li:hover {
    color: #b02a6c;
    transform: translateX(5px);
}

/*--------------Responsive Design-------------*/
@media (max-width: 768px) {
    .contact-text {
        text-align: center;
        padding: 30px;
    }

    .contact-text h2 {
        font-size: 32px;
    }

    .contact-text p {
        font-size: 18px;
    }

    .contact-text ul li {
        font-size: 16px;
    }
}
/*------------Contact Form Styling-------------*/
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.contact_img {
    margin-bottom: 4%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-form h3 {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    border: 2px solid #d63384 !important; 
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    box-shadow: none;
    transition: 0.3s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: #b02a6c !important;
    box-shadow: 0 0 5px rgba(214, 51, 132, 0.3);
}

.btn-submit {
    background-color: #c93b82 !important;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    width: 50%;
    display: block;
    margin-left: 25%; 
    text-align: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 10px rgba(214, 51, 132, 0.3);
}

.btn-submit:hover {
    background: #a654b6 !important;
    transform: scale(1.05);
}

/*----------Responsive Design---------*/
@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }

    .btn-submit {
        width: 50%; 
    }
}

/*-------Responsive Design--------*/
        @media (max-width: 768px) {
            .contact-text {
                text-align: center;
                padding-bottom: 20px;
            }

            .contact-form {
                padding: 30px;
            }
        }
     /*--------------Gallery Section-------------*/
     .gallery-section {
        padding: 60px 0;
        text-align: center;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 15px;
        padding: 0 20px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        display: block;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item .plus-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 40px;
        color: white;
        background: rgba(0, 0, 0, 0.7);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .plus-icon {
        opacity: 1;
    }

    .lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

    .lightbox .close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    /*----------Responsive Design------------*/
    @media (max-width: 992px) {
        .gallery {
            grid-template-columns: repeat(2, 1fr); 
        }
    }

    @media (max-width: 576px) {
        .gallery {
            grid-template-columns: repeat(1, 1fr); 
        }
    }
     .btn-gallery {
        display: inline-flex;
        align-items: center;
        background: #d63384;
        color: white;
        font-size: 18px;
        font-weight: bold;
        padding: 12px 20px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 5px 10px rgba(214, 51, 132, 0.3);
        margin-top: 2%;
    }

    .btn-gallery i {
        margin-left: 10px;
        transition: transform 0.3s ease-in-out;
    }

    .btn-gallery:hover {
        background: #b02a6c;
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(214, 51, 132, 0.5);
    }

    .btn-gallery:hover i {
        transform: translateX(5px);
    }
      /*---------Main Section----------*/
      .makeup-section {
        background: #000;
        color: white;
        padding: 60px 0;
        text-align: center;
    }

    .makeup-section h1 {
        font-size: 42px;
        font-weight: bold;
        color: #e91e63;
    }

    .divider {
        width: 60px;
        height: 4px;
        background: #e91e63;
        margin: 10px auto 20px;
        border-radius: 2px;
    }

    .makeup-section p {
        font-size: 18px;
        max-width: 900px;
        margin: 0 auto 20px;
        line-height: 1.6;
        color: #ccc;
    }

    .btn-readmore {
        background: #e91e63;
        color: white;
        font-size: 16px;
        font-weight: bold;
        padding: 12px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        display: inline-flex;
        align-items: center;
    }

    .btn-readmore i {
        margin-left: 10px;
        transition: transform 0.3s ease-in-out;
    }

    .btn-readmore:hover {
        background: #c2185b;
    }

    .btn-readmore:hover i {
        transform: translateX(5px);
    }

    /*--------Video Containers-----------*/
    .video-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .video-box {
        width: 48%;
        height: 680px; 
        background: #111;
        padding: 10px; 
        border: 4px solid #e91e63; 
        position: relative;
        overflow: hidden; 
        border-radius: 10px; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .video-box video {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        border-radius: 5px; 
    }
    

    /*----------Responsive Design------------*/
    @media (max-width: 768px) {
        .video-container {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
    
        .video-box {
            width: 100% !important;
            max-width: 90% !important;
            height: auto;
        }
    }
    
    
    @media (max-width: 768px) {
        .instagram-media {
            max-width: 90% !important; 
            margin: 0 auto;
        }
    }
    /*  */
    .testimonial-card {
        text-align: center;
        padding: 15px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .stars {
        color: #FFD700;
        font-size: 22px;
    }
    .swiper {
        width: 100%;
        max-width: 1100px;
    }
    .video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }    
      /*-------------Footer--------------*/
      .footer {
        background: #000;
        color: white;
        padding: 50px 0;
    }

    .footer h5 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
        position: relative;
    }

    .contact-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background: #e91e63;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
    }

    .social-icons {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        background: #e91e63;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: #c2185b;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-links ul li a:hover {
        color: #e91e63;
    }

    /*----------Responsive Design----------------*/
    @media (max-width: 768px) {
        .footer {
            text-align: center;
        }

        .contact-info {
            justify-content: center;
        }

        .social-icons {
            justify-content: center;
        }
        .contact_fimg{
            margin-left: 15%;
        }
    }