/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Spartan', sans-serif;
    background-color: #fff;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #FBFBFB;
}

.banner-content {
    max-width: 60%;
}

h1.gradient-text {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(90deg, #1B18F9, #1B18F9, #E146AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}


.mentor-image {
    width: 35%; /* Adjust as needed */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: Rounds the corners */
}


.google-img {
    width: 100%; /* Full width by default */
    max-width: 200px; /* Limits the image size */
    height: auto; /* Keeps aspect ratio */
    display: block;
    margin: 0 auto; /* Centers the image */
}

.google-img2{
    width: 50%; /* Full width by default */
    max-width: 120px; /* Limits the image size */
    height: auto; /* Keeps aspect ratio */
    display: block;
    margin: 0 auto; /* Centers the image */
    align-items: flex-start;
    text-align: left;
}

.section6 {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center-align all content */
    justify-content: center; /* Center content vertically */
    padding: 50px; /* Add spacing inside the section */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding in width */
    background: linear-gradient(to right, #0368FF, #C27FCF); /* Gradient background */
    border-radius: 10px; /* Optional rounded corners */
    margin-top: 20px; /* Add spacing between sections */
}






/* Adjust font size for smaller screens */
/* General Styles for Mobile Devices */
@media (max-width: 768px) {

    .google-img {
            width: 70%; /* Full width by default */
            max-width: 190px; /* Limits the image size */
            height: auto; /* Keeps aspect ratio */
            display: block;
            margin: 0 auto; /* Centers the image */
        }
    
    .banner {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center-align all content */
    }

    .banner-content {
        max-width: 100%; /* Ensure the content spans the available space */
    }

    h1.gradient-text {
        font-size: 46px; /* Reduce font size for mobile devices */
        margin-bottom: 10px; /* Add spacing between elements */
    }

    .subtitle {
        font-size: 18px; /* Reduce subtitle size */
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 20px; /* Reduce tagline size */
        margin-bottom: 20px;
    }
    

    .buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px; /* Add space between buttons */
        align-items: center; /* Center-align buttons vertically */
        width: 100%; /* Ensure buttons adapt to the container */
    }

    .primary-button,
    .video-button {
        width: 80%; /* Ensure buttons take up most of the width */
        max-width: 300px; /* Set a reasonable maximum width */
        text-align: center; /* Align text in buttons */
    }

    .banner-image {
        width: 100%; /* Make the container take the full width */
        margin: 0 auto; /* Center the container */
        text-align: center; /* Center content inside the container */
    }

    .banner-image img {
        width: 100%; /* Double the image width for mobile devices */
        height: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Ensure the image fills the container proportionally */
        margin: 0 0; /* Center the image horizontally */
        display: block; /* Ensure the image behaves as a block-level element */
    }

 
    /* Play Icon */
    .play-icon {
        width: 100%; /* Adjust the size to fit smaller screens */
        height: 100%; /* Ensure the play icon remains square */
        border: 2px solid #000000; /* Keep the border consistent */
        border-radius: 20%; /* Maintain the circular shape */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #FFFFFF; /* Keep the background visible */
        margin: 0 auto; /* Center the play button */
    }

    .play-icon i {
        font-size: 10%; /* Reduce the icon size */
        color: #000000; /* Ensure the play icon is clearly visible */
    }

    .video-button {
        display: flex;
        flex-direction: row; /* Stack icon and text vertically */
        align-items: center; /* Center-align the icon and text */
        gap: 5px; /* Add spacing between the icon and text */
    }

    .video-button span {
        font-size: 18px; /* Adjust text size for smaller screens */
        font-weight: 600;
        text-align: center; /* Center the text */
    }




}

@media (max-width: 480px) {
    .banner-image {
        width: 100%; /* Make the container take the full width */
        margin: 0 auto; /* Center the container */
        text-align: center; /* Center content inside the container */
    }

    .banner-image img {
        width: 100%; /* Make the image extremely large for smaller screens */
        height: auto; /* Maintain the aspect ratio */
        object-fit: cover; /* Ensure the image fills the container proportionally */
        margin: 0 0; /* Center the image horizontally */
        display: block; /* Ensure the image behaves as a block-level element */
    }

    .banner-content {
        text-align: center; /* Ensure text aligns centrally */
    }

    /* Play Icon */
    .play-icon {
        width: 100%; /* Adjust the size to fit smaller screens */
        height: 100%; /* Ensure the play icon remains square */
        border: 2px solid #000000; /* Keep the border consistent */
        border-radius: 20%; /* Maintain the circular shape */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #FFFFFF; /* Keep the background visible */
        margin: 0 auto; /* Center the play button */
    }

    .play-icon i {
        font-size: 10%; /* Reduce the icon size */
        color: #000000; /* Ensure the play icon is clearly visible */
    }

    .video-button {
        display: flex;
        flex-direction: row; /* Stack icon and text vertically */
        align-items: center; /* Center-align the icon and text */
        gap: 5px; /* Add spacing between the icon and text */
    }

    .video-button span {
        font-size: 18px; /* Adjust text size for smaller screens */
        font-weight: 600;
        text-align: center; /* Center the text */
    }

}




.subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #454545;
    margin: 10px 0;
}

.tagline {
    font-size: 24px;
    font-weight: 500;
    color: #505050;
}

.banner-image {
    max-width: 100%;
}

.banner-image img {
    width: 100%;
    height: auto;
    margin: 0 10px; /* Center the image horizontally */

}


/* Primary Button (Mulai Taaruf) */
/* .buttons {
    margin-top: 0px;
    display: flex;
    gap: 15px;
} */

.buttons {
    display: flex;
    flex-direction: row; /* Keep elements aligned horizontally */
    gap: 20px; /* Add space between buttons */
    align-items: center; /* Align buttons vertically within the row */
    justify-content: flex-start; /* Align buttons horizontally to the left */
    margin-top: 0px;
}


/* Primary Button (Mulai Taaruf) */
.primary-button {
    font-family: 'Spartan', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(45deg, #0368FF, #C27FCF);
    cursor: pointer;
    text-transform: capitalize;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.primary-button:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Video Button (Lihat Video) */
/* Video Button */
.video-button {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.video-button span {
    font-family: 'Spartan', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000; /* Black color for text */
}

/* Play Icon */
.play-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #000000; /* Black circular border */
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF; /* White background for the icon */
}

.play-icon i {
    font-size: 18px;
    color: #000000; /* Black color for the FontAwesome play icon */
}

.video-button span.gradient-text {
    font-size: 24px; /* Matching the size of "Taaruf Online Sakinah" */
    font-weight: 700;
    background: linear-gradient(90deg, #1B18F9, #1B18F9, #E146AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Ensures the gradient effect */
    text-transform: capitalize;
}

