/*******************
****** Header ******
*******************/
header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./Images/mainBackground1.png");
    background-position: center;
    background-size: cover;
    height: 125vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: changeBackground 30s infinite;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.header-main {
    width: 100%;
    height: 100%;
    padding: 0;
}

/* Navbar styling */
.navbar {
    background-color: transparent;
    padding: 10px 20px;
}


.channel-partner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-partner-text {
    font-size: 12px;
    color: white;
    margin-bottom: -15px;
    font-weight: 500;
}

.navbar-nav {
    flex: 1;
    justify-content: space-around;
    flex-direction: row;
}

.nav-link.active {
    color: #f4f1f1;
}

#contact_us {
    color: #fefdfd;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 0 10px;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
    border-radius: 20px;
}

.navbar-toggler {
    border: none;
}

.navbar-brand:hover .logo {
    opacity: 0.8;
}

/* Hero section styling */
.hero {
    text-align: left;
    /* Align text to the left */
    padding: 20px;
    margin-top: 70px;
    max-width: 550px;
    margin-left: 100px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
}

.hero h2 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}

.hero p {
    font-size: 18px;
    width: 100%;
    margin: 30px 0px;
    font-weight: 600;
    color: #fff;
}

/* Button Container Styling */
.buttons-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero button {
    background: #6663e9;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .navbar-nav {
         margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    /* Stack buttons vertically on smaller screens */
    .buttons-container {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        margin-left: 10px;
    }
}

@media (max-width: 576px) {
    header {
        height: 100vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px;
    }

    .navbar-toggler {
        border: none;
        color: #fff;
    }

    .hero {
        margin-left: 8px;
    }
}

/* Animation for background image change */
@keyframes changeBackground {
    0% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./Images/mainBackground1.png");
    }

    40% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./Images/mainBackground2.jpg");
    }

    70% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./Images/mainBackground3.jpg");
    }

    100% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./Images/mainBackground1.jpg");
    }
}

/* arrow icon((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( */


.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
}

.arrows path {
    stroke: #fbfcfa;
    fill: transparent;
    stroke-width: 3px;
    animation: arrow 3s infinite;
    -webkit-animation: arrow 3s infinite;
}

@keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow

/*Safari and Chrome*/
    {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
    /* Safari 和 Chrome */
}

.arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
    /* Safari 和 Chrome */
}

.arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    /* Safari 和 Chrome */
}

/**********************contact us icon************************************/


.content {
    padding: 20px;
}

/* Contact Icon Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Fixed Contact Icon Styling */
.fixed-contact-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #4fac01;
    /* Button background color */
    border-radius: 50%;
    /* Circular shape */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: none;
    /* Remove border */
    cursor: pointer;
    padding: 0;
}

.fixed-contact-icon img {
    width: 80%;
    /* Adjust size within button */
    height: auto;
    border-radius: 50%;
    /* Rounded icon */
}

/* Fixed WhatsApp Icon Styling */
.fixed-whatsapp-icon {
    position: fixed;
    bottom: 90px;
    /* Distance above the contact icon */
    right: 20px;
    /* Aligned with contact icon */
    width: 60px;
    height: 60px;
    background-color: #29A71A;
    /* WhatsApp color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
}

.fixed-whatsapp-icon img {
    width: 70%;
    /* Adjust icon size */
    height: auto;
}

/* Desktop Responsiveness */
@media (min-width: 769px) {

    .fixed-contact-icon,
    .fixed-whatsapp-icon {
        width: 60px;
        height: 60px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .fixed-contact-icon,
    .fixed-whatsapp-icon {
        width: 50px;
        /* Smaller size for mobile */
        height: 50px;
        right: 15px;
        /* Consistent alignment on mobile */
    }

    .fixed-contact-icon {
        bottom: 15px;
    }

    .fixed-whatsapp-icon {
        bottom: 75px;
    }

    .fixed-contact-icon img,
    .fixed-whatsapp-icon img {
        width: 75%;
        /* Smaller icon for mobile */
        height: auto;
    }
}



/* About sectin888888888888888888888888888888888888888888888888888888888888 */
.property-info-section {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Full-Width Introduction */
.property-intro {
    margin-bottom: 20px;
}

.property-intro h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.property-intro p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* Two-Column Layout */
.property-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.property-details {
    flex: 1;
}

.property-details h3 {
    font-size: 1.5em;
    color: #555;
    margin-top: 0;
    margin-bottom: 10px;
}

.property-details ul {
    list-style-type: none;
    padding: 0;
}

.property-details li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
}

.property-details li strong {
    color: #007bff;
}

/* Image Styling */
.property-about-image {
    flex: 1;
    max-width: 400px;
}

.property-about-image img {
    width: 100%;
    height: auto;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Stack Layout Vertically */
    .property-layout {
        flex-direction: column;
    }

    .property-about-image {
        max-width: 100%;
        margin-top: -25px;
    }
}

/*locatin*************************************************************/
.property-info-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    /* Space between elements */
    margin: 20px 0;
    /* Spacing above and below */
}

/* Property Details */
.property-info-details,
.property-map-info {
    flex: 1;
    min-width: 300px;
    padding: 5px;
    /* Consistent padding */
}

/* Location Information Box */
.property-info-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    gap: .2px;
    /* Space between the map and details */
}

.property-map-info {
    flex: 1;
    min-width: 300px;
    /* Ensures minimum width for map on smaller screens */
}

.property-info-details {
    flex: 1;
    min-width: 300px;
    /* Ensures minimum width for details on smaller screens */
}

/* Styles for Property Location Info */
.property-location-info {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-location-info h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.property-location-info h3 {
    font-size: 1.5em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

.property-location-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.property-location-info li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
}

.property-location-info li strong {
    color: #007bff;
}

.property-map-info iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .property-info-container {
        flex-direction: column;
    }

    .property-map-info iframe {
        height: 300px;
    }
}

/*******************
/******* Type of Residensy__________________________________________________________----- ******

*******************/


.property-listing-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.property-listing-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    /* Larger font for the title */
}

.property-row {
    display: flex;
    margin-bottom: 30px;
}

.property-photo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-photo-section img {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
}

.property-details-section {
    flex: 1;
    padding: 20px;
}

.property-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}

.property-icon-item {
    flex: 0 0 32%;
    /* 3 items per row */
    text-align: center;
    margin-bottom: 10px;
    /* Space between rows */
}

.property-icon-item img {
    width: 40px;
    height: 40px;
}

.button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #007BFF;
    /* Bootstrap primary color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}



/* Zigzag pattern for desktop view */
@media (min-width: 769px) {
    .property-row:nth-child(even) .property-photo-section {
        order: 2;
    }

    .property-row:nth-child(even) .property-details-section {
        order: 1;
    }
}



/* Mobile responsiveness */
@media (max-width: 768px) {
    .property-row {
        flex-direction: column;
    }

    .property-details-section {
        padding: 10px;
    }

    .property-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 2 columns */
        gap: 10px;
        /* Spacing between icons */
    }

    .property-icon-item {
        flex: 0 0 100%;
        /* 1 item per row on mobile */
    }
}


/**********************
** aminities _______________________________________________________________________________-** 
**********************/
.amenities-section {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center align */
    padding: 10px;
    /* Max width for the section */
    margin: 5px auto;
    /* Centering with margin */
}

.amenity-feature {
    display: flex;
    /* Use flexbox for layout */
    align-items: center;
    /* Center align items */
    width: 100%;
    /* Full width for each feature */
    margin-bottom: 20px;
    /* Space between feature boxes */
    border-radius: 10px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow */
    background-color: #f9f9f9;
    /* Light background color */
}

.amenity-image-container {
    width: 50%;
    /* Half width for image container */
    height: 300px;
    /* Set height for images */
    overflow: hidden;
    /* Hide overflow */
}

.amenity-image-container img {
    width: 100%;
    /* Make images full width */
    height: 100%;
    /* Fill the height */
    object-fit: cover;
    /* Cover the entire container */
}

.amenity-details {
    padding: 20px;
    /* Padding for details */
    width: 50%;
    /* Half width for details */
}

.amenity-details h2 {
    margin: 0 0 10px;
    /* Space below heading */
    font-size: 2em;
    /* Font size for the title */
    color: #333;
    /* Dark color for text */
}

.amenity-details p {
    margin: 0;
    /* No margin for paragraph */
    color: #666;
    /* Medium gray color */
}

.amenities-heading {
    font-size: 2.5em;
    /* Adjust this value as needed */
    font-weight: bold;
    /* Make the heading bold */
    margin-bottom: 20px;
    /* Space below the heading */
    color: #333;
    /* Dark color for text */
    text-align: center;
    /* Center align the text */
}

.amenity-image-container img {
    border-radius: 10px;
}


/* Zigzag pattern for desktop view */
@media (min-width: 769px) {
    .amenity-feature:nth-child(odd) .amenity-image-container {
        order: 2;
    }

    .amenity-feature:nth-child(odd) .amenity-details {
        order: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .amenity-feature {
        flex-direction: column;
        /* Stack items on small screens */
        width: 100%;
        /* Full width for feature boxes */
    }

    .amenity-image-container {
        width: 100%;
        /* Full width for image container */
        height: auto;
        /* Auto height for image container */
    }

    .amenity-details {
        width: 100%;
        /* Full width for details */
        text-align: center;
        /* Center text on small screens */
    }

    .amenity-details h2 {
        font-size: 1.3em;
        /* Adjust font size for heading */
    }
}


/* gallay ((((((((((((((((((((((((())))))))))))))))))))))))) */


.gallery-section {
    margin: 20px 0;
}

.gallery-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
    color: #333;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
    
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-caption {
    position: absolute;
    bottom: 10px;
    /* Space from the bottom */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Perfect centering */
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    /* Ensure it spans the full width of the container */
}

.gallery-caption1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    color: white;
    /* White text color */
    text-align: center;
    /* Center text horizontally */
    display: flex;
    /* Use flexbox for vertical centering */
    justify-content: center;
    /* Center text horizontally */
    align-items: center;
    /* Center text vertically */
    height: 100%;
    /* Make the caption cover the whole item */
    cursor: pointer;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-heading {
        font-size: 2em;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

/* Modal content */
.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 10px;
}

.modal-images {
    display: flex;
    transition: transform 0.5s ease;
    width: 70%;
}

.modal-images img {
    width: 1000px;
    height: 450px;
    margin: 0 10px;
    border-radius: 8px;
    width: 67%;
    /* Ensures each image takes full viewport width */
}

/* Close button */
.close {
    position: absolute;
    top: 1px;
    right: 10px;
    color: rgb(253, 46, 5);
    font-size: 50px;
    cursor: pointer;
}

/* Navigation buttons */
.prev,
.next {
    cursor: pointer;
    color: rgb(247, 89, 10);
    font-size: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .modal-images img {
        width: 600px;
        height: 300px;

    }

    .close,
    .prev,
    .next {
        font-size: 45px;
    }

    .modal-content {
        padding: 5px;
    }
}




/* Tower video link  ****************************************************************/
.tower-section {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center align */
    padding: 10px;
    /* Max width for the section */
    margin: 5px auto;
    /* Centering with margin */
}

.tower-feature {
    display: flex;
    /* Use flexbox for layout */
    align-items: center;
    /* Center align items */
    width: 100%;
    /* Full width for each feature */
    margin-bottom: 20px;
    /* Space between feature boxes */
    border-radius: 10px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow */
    background-color: #f9f9f9;
    /* Light background color */
}

.tower-image-container {
    width: 50%;
    /* Half width for image container */
    height: 300px;
    /* Set height for images */
    overflow: hidden;
    /* Hide overflow */
}

.tower-image-container img {
    width: 100%;
    /* Make images full width */
    height: 100%;
    /* Fill the height */
    object-fit: cover;
    /* Cover the entire container */
    border-radius: 10px;
    /* Round the image corners */
}

.tower-details {
    padding: 20px;
    /* Padding for details */
    width: 50%;
    /* Half width for details */
}

.tower-details h2 {
    margin: 0 0 10px;
    /* Space below heading */
    font-size: 2em;
    /* Font size for the title */
    color: #333;
    /* Dark color for text */
}

.tower-details p {
    margin: 0;
    /* No margin for paragraph */
    color: #666;
    /* Medium gray color */
}

.tower-heading {
    font-size: 2.5em;
    /* Adjust this value as needed */
    font-weight: bold;
    /* Make the heading bold */
    margin-bottom: 20px;
    /* Space below the heading */
    color: #333;
    /* Dark color for text */
    text-align: center;
    /* Center align the text */
}

/* Zigzag pattern for desktop view */
@media (min-width: 769px) {
    .tower-feature:nth-child(odd) .tower-image-container {
        order: 2;
    }

    .tower-feature:nth-child(odd) .tower-details {
        order: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tower-feature {
        flex-direction: column;
        /* Stack items on small screens */
        width: 100%;
        /* Full width for feature boxes */
    }

    .tower-image-container {
        width: 100%;
        /* Full width for image container */
        height: auto;
        /* Auto height for image container */
    }

    .tower-details {
        width: 100%;
        /* Full width for details */
        text-align: center;
        /* Center text on small screens */
    }

    .tower-details h2 {
        font-size: 1.3em;
        /* Adjust font size for heading */
    }
}



/* pop up form((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((  */

body {
    font-family: Arial, sans-serif;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: rgb(183, 183, 183);
}

.close_popupform {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close_popupform:hover,
.close_popupform:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Add a red border to the form */
#contactForm {
    border: 3px solid #ED7D31;
    padding: 20px;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

.name-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
}

.name-field {
    flex: 1 1 45%;
    margin-right: 10px;
}

.name-field:last-child {
    margin-right: 0;
}

#sendOtpButton {
    margin-top: -10px;
}

.name-field label {
    display: block;
    margin-bottom: 5px;
}

/* Add 10px margin around the phone input row */
.input-row {
    display: flex;
    align-items: center;
    border-radius: 20px;
     /* Apply 10px margin on the top and bottom */
}

.input-row input {
    flex: 1;
}

.input-row button {
    margin-left: 5px;
    padding: 8px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.input-row button:hover {
    background-color: #4fac01;
}

input, textarea {
    margin-bottom: 5px;
    padding: 8px;
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 20px;
}

button[type="submit"] {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 100px;
    margin-right: 100px;
}

button[type="submit"]:hover {
    background-color: #4fac01;
}

@media (max-width: 600px) {
    .name-field {
        flex: 1 1 100%;
        margin-right: 0;
    }

    .popup-content {
        padding: 8px;
        margin: 8px;
    }

    #contactForm {
        margin: 12px;
    }

    .popup-content h2 {
        margin: 12px;
    }
}





/******************
***** Footer ****** 
******************/

footer {
    width: 100%;
    background-color: rgb(13, 13, 14);
    padding: 10px 10px;

}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.footer-section-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-top: 10px;
}

/* Footer Links Section */
.footer-section-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section-links ul {
    padding: 0;
    list-style-type: none;
}

.footer-section-links ul li {
    font-weight: 600;
    font-size: 18px;
    text-align: center;

}

.footer-heading {
    color: white;
    font-weight: 900;
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
}

.footer-heading-channel-partner {
    margin-top: 35px;
    color: white;
    font-weight: 900;
    font-size: 18px;

    text-align: center;
}


.footer-contact {
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
}

.footer-contact-link {
    color: white;
    text-decoration: none;
}

.footer-contact-link:hover {
    text-decoration: underline;
}

.footer-rera-info {
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
}

/* Footer Icons */
.footer-icon {
    width: 200px;
    height: auto;
    margin: 10px 0;
}

.footer-cert-icon {
    width: 280px;
    height: auto;
    margin-top: -20px;

}

.footer-heading-certification {
    margin-top: -20px;
    color: white;
    font-weight: 900;
    font-size: 18px;

    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    color: rgb(234, 228, 228);
    font-size: 16px;
    text-align: center;

    margin-left: 100px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section-right {
        flex-direction: column;
        align-items: center;
    }

    .footer-heading .footer-heading-channel-partner .footer-heading-certification  {
        font-size: 14px;
    }

    .footer-contact {
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 14px;
        margin-left: 20px;
    }


}