@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu:wght@300;700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }


body, html {
        background: #0d0826;
        margin: 0;
        padding: 0;
    }
html {
    scroll-behavior: smooth;
}
/* General Styles */


.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-radius: 0 0 15px 15px;
    z-index: 1000;
}

.navbar-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari Support */
    z-index: -1; /* Push behind navbar content */
    border-radius: inherit; /* Ensure rounded corners */
}
    /* Add margin to the top of the hero section to avoid overlap with the fixed navbar */



    .top-icon {
    display: none;
}


        .logo-container {
            display: flex;
            justify-content: center;
            padding: 0 25px;
            align-items: center;
            margin-right: 100px; /* Adjust spacing between logo and navbar links */
        }


                .brand-logo {
                    height: 40px;

                }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Ensure nav items align to the left */
            flex-grow: 1; /* Push buttons to the right */
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none; /* Remove underline */
            color: inherit; /* Inherit color from parent */
        }

        .nav-link:hover a {
            color: #fff; /* Change color on hover (optional) */
        }

        .nav-link {
            position: relative; /* Allow positioning of dropdown */
        }

        .nav-link a {
            padding: 15px 8px; /* Adjust for desktop */
            text-decoration: none;
            color: #fff;
            transition: background 0.2s;
        }

        .dropdown-arrow {
            display: inline-block; /* Make it inline-block */
            width: 0; /* Width */
            height: 0; /* Height */
            border-left: 5px solid transparent; /* Create arrow shape */
            border-right: 5px solid transparent; /* Create arrow shape */
            border-top: 5px solid #fff; /* Arrow color */
            margin-left: 5px; /* Space between link and arrow */
            transition: transform 0.3s ease; /* Smooth rotation */
            position: absolute; /* Position it absolutely */
            top: 50%; /* Center vertically */
            transform: translateY(-50%); /* Adjust for centering */
            right: 10px; /* Position on the right */
        }

        .nav-link:hover .dropdown-arrow {
            transform: translateY(-50%) rotate(180deg); /* Rotate on hover */
        }

        .dropdown {
            display: none; /* Hide dropdown by default */
            position: absolute; /* Position it below the nav link */
            top: 100%; /* Align it below the parent */
            left: 0; /* Align it with the left edge */
            background: linear-gradient(#081326, #1c1859); /* Vibrant gradient similar to their button */
            border-radius: 10px; /* Curved corners */
            padding: 10px 0; /* Padding for dropdown */
            z-index: 1000; /* Ensure it appears above other elements */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
            opacity: 0; /* Start hidden */
            visibility: hidden; /* Start hidden */
            transition: all 0.3s ease; /* Smooth transition */
        }

        .nav-link:hover .dropdown {
            display: block; /* Show dropdown on hover */
            opacity: 1; /* Fade in */
            visibility: visible; /* Make visible */
            transform: translateY(0);
        }


        .nav-link:hover .dropdown-arrow {
            transform: rotate(180deg); /* Rotate arrow on hover */
        }


        .dropdown li {
            list-style: none; /* Remove list style */
        }

        .dropdown li a {
            display: block; /* Make the links block-level elements */
            padding: 10px 20px; /* Padding for links */
            color: #333; /* Link color */
            text-decoration: none; /* Remove underline */
            transition: background 0.2s; /* Smooth background transition */
        }

        .dropdown li a:hover {
            background: black; /* Change background on hover */
        }



        .nav-link:hover .dropdown-arrow {
            transform: rotate(180deg); /* Rotate arrow on hover */
        }

        .nav-link:not(:last-child) {
            padding: 10px 25px;
            margin: 0;
            border-right: none !important;
        }

        .nav-link:last-child {
            padding: 10px 0 0 25px;
        }

        .nav-link,
        .menu-btn {
            cursor: pointer;
        }

        .hidden {
            display: none;
        }

        @media screen and (max-width: 800px) {

            .navbar-wrapper {
                height: 60px;
                padding: 0 25px;        
            }

            .brand-logo {
                height: 35px;

            }

            .nav-container {
                position: fixed;
                display: none;
                overflow-y: auto;
                z-index: -1;
                top: 0;
                right: 0;
                width: 280px;
                height: 100%;
                background: #fff;
                box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
            }

            .nav-links {

                align-items: center;
                margin-top: 80px;
                width: 100%;
            }

            .nav-link:not(:last-child) {
                padding: 20px 25px;
                margin: 0;
                border-right: unset;
                border-bottom: none !important;
            }

            .nav-link:last-child {
                padding: 15px 25px;
            }

    /* Menu button styles */
    .menu-btn {
        position: absolute; /* Position it absolutely */
        right: 20px; /* Align it to the right */
        top: 20px; /* Position from the top */
        width: 30px; /* Increased size for better tap target */
        height: 20px; /* Adjust height */
        cursor: pointer;
        z-index: 2;
    }

    .menu-btn .menu-line {
        display: block;
        width: 100%;
        height: 3px; /* Thicker lines */
        border-radius: 2px;
        background: #fff;
        transition: all 0.3s ease; /* Smooth transitions for the lines */
    }

    .menu-btn .menu-line:nth-child(1) {
        margin-top: -5px; /* Move the first line upwards */
    }

    .menu-btn .menu-line:nth-child(2) {
        margin-top: 0; /* Keep the second line in place */
    }

    .menu-btn .menu-line:nth-child(3) {
        margin-top: 5px; /* Move the third line upwards */
    }

    #menuToggle:checked + .menu-btn .menu-line {
        transition: transform 0.2s ease;
    }

    #menuToggle:checked + .menu-btn .menu-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    #menuToggle:checked + .menu-btn .menu-line:nth-child(2) {
        opacity: 0;
    }

    #menuToggle:checked + .menu-btn .menu-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

                #menuToggle:checked~.nav-container {
                    z-index: 1;
                    display: flex;
                    animation: menu-slide-left 0.3s ease;
                }

                @keyframes menu-slide-left {
                    0% {
                        transform: translateX(200px);
                    }

                    to {
                        transform: translateX(0);
                    }
                }
            }


    .buttons {
        display: flex;
        align-items: center;
        margin-left: 50px; /* Gap between navbar items and button */
    }

    .connect-expert {
        margin-right: 10px;
        color: #fff;
    }

    .lang-btn {
        background-color: #2934a6;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .lang-btn:hover {
        background-color: #172079;
    }

    .lang-btn i {
        color: #fff;
    }


    @media screen and (max-width: 800px) {
        .nav-container {
            flex-direction: column;
            width: 100%;
            align-items: center;
        }

        .buttons.expert-container {
            align-self: flex-start; /* Align the container to the start */
            margin-left: 35px; /* Adjust the value as needed */
        }
            .buttons {
            margin-top: 20px;
            gap: 10px; /* Add spacing between elements */
        }
    }





@media screen and (max-width: 800px) {
    .nav-container {
            position: fixed;
            display: none; /* Hidden by default */
            overflow-y: auto;
            z-index: 3; /* Ensure it appears above the blur overlay */
            top: 0;
            right: 0;
            width: 280px; /* Fixed width for the menu */
            height: 101%;
            background: #0d0826;
            box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            transform: translateX(100%); /* Start off-screen */
        }

    .top-icon {
        display: block;
        width: 35px; /* Adjust width as needed */
        height: auto; /* Maintain aspect ratio */
        position: absolute; /* Position it absolutely */
        top: 20px; /* Adjust vertical position */
        left: 35px; /* Move it towards the left */
        z-index: 4; /* Ensure it stays on top */
    }

    .blur-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%; /* Cover the entire viewport */
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
            backdrop-filter: blur(5px); /* Apply blur effect */
            display: none; /* Initially hidden */
            z-index: 2; /* Below the nav-container */
        }

    #menuToggle:checked ~ .blur-overlay {
            display: block; /* Show blur overlay when menu is open */
        }

    #menuToggle:checked ~ .nav-container {
            z-index: 3;
            display: flex; /* Show the menu */
            transform: translateX(0); /* Slide in when checked */
            animation: menu-slide-left 0.3s ease forwards; /* Animation for slide */
        }

@keyframes menu-slide-left {
            0% {
                transform: translateX(100%); /* Start off-screen */
            }
            100% {
                transform: translateX(0); /* End at visible */
            }
        }

        /* Other styles remain unchanged */
    .nav-links {
            flex-direction: column;
            align-items: flex-start; /* Align items to the left */
            margin-top: 80px; /* Adjust for spacing */
            width: 100%;
        }

    .nav-link {
            width: 100%;
        }

    .nav-link:not(:last-child) {
            padding: 20px 25px;
            margin: 0;
            border-bottom: 1px solid #f5f5f5; /* Border for separation */
        }

    .nav-link:last-child {
            padding: 15px 25px;
        }

    .menu-btn {
            position: absolute; /* Position it absolutely */
            right: 20px; /* Align it to the right */
            top: 20px; /* Position from the top */
            width: 30px; /* Increased size for better tap target */
            height: 20px; /* Adjust height */
            cursor: pointer;
            z-index: 4; /* Above everything */
            padding: 10px; /* Add padding for larger click area */
        }

    .menu-btn .menu-line {
            display: block;
            width: 100%;
            height: 3px; /* Thicker lines for better visibility */
            border-radius: 2px;
            background: #fff;
            transition: all 0.3s ease; /* Smooth transitions for the lines */
        }

    .menu-btn .menu-line:not(:last-child) {
            margin-bottom: 4px; /* Space between lines */
        }

    #menuToggle:checked + .menu-btn .menu-line {
            transition: transform 0.2s ease;
        }

    #menuToggle:checked + .menu-btn .menu-line:nth-child(1) {
            transform: translateY(10px) rotate(45deg); /* First line rotates */
        }

    #menuToggle:checked + .menu-btn .menu-line:nth-child(2) {
            opacity: 0; /* Hide middle line */
        }

    #menuToggle:checked + .menu-btn .menu-line:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg); /* Last line rotates */
        }
    }




/* Parallax effect with proper text alignment */
.future-business-container {
    margin-top: 30px; /* Space above the button */
    z-index: 2;
    text-align: center; /* Center the button */
}

.future-business-btn {
    display: inline-block;
    background: linear-gradient(#081326, #1c1859); /* Vibrant gradient similar to their button */
    color: white;
    font-size: 0.7rem; /* Adjust size */
    font-weight: bold;
    text-transform: uppercase; /* Make it capitalized */
    padding: 10px 25px; /* Add more padding for a better look */
    border: none;
    border-radius: 30px; /* Rounded corners */
    cursor: default;
    box-shadow: 0 0 15px 2px rgba(39, 29, 93, 0.6); /* Initial neon glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.home-section {
    position: relative;
    width: 100%;
    height: 75vh; /* Reduced height */
    background: url(../assets/hero.png) center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure content inside doesn't overflow the curve */
}

.home-heading {
    position: relative;
    color: #fff;
    margin: 10px 0;
    opacity: 1;
}

.heading {
    font-size: 3.7rem;
}

.sub-heading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e8dfdf;
}

.minor-heading {
    font-size: 0.9rem;
    width: 80%;
    font-weight: 400;
}

.search input {
    padding: 10px;
    z-index: 4;
    outline: none;
    width: 80%;
}

.search button {
    z-index: 10;
    background-color: red;
    color: white;
    border: none;
    margin: 20px 0;
    padding: 10px 20px;
}

.search {
    z-index: 10;
    position: absolute;
    bottom: 5%;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 440px) {
    .home-section {
        width: 100%;
        height: 67vh; /* Reduced height */
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .heading {
        font-size: 2.3rem;
    }

    .sub-heading {
        font-size: 1.1rem;
        width: 90%;
    }

    .minor-heading {
        font-size: 0.9rem;
        width: 90%;
    }

    .active-btn {
        display: none; /* Disable .active-btn */
    }
}

@media screen and (max-width: 410px) {
    .navigation h2 {
        text-align: center;
        width: 100%;
    }

    .buttons {
        display: flex;
        justify-content: center;
    }

    .active-btn {
        display: none; /* Disable .active-btn */
    }

    .lang-btn {
        display: inline-block;
        font-size: 15px;
        padding: 5px 20px;
    }

    .heading, .sub-heading, .minor-heading {
        text-align: center;
    }
}



.cta-button {
    background-color: #7752fe; /* Button color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 8px; /* Slightly curved corners */
    padding: 10px 25px; /* Adjusted padding for rectangular shape */
    font-size: 1.2rem; /* Font size */
    font-weight: 550; /* Make the text bolder */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Add box-shadow to transition */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0); /* Soft shadow for depth */
    opacity: 1; /* Make button fully visible */
}

.cta-button:hover {
    background-color: #6243d1; /* Darker shade for hover effect */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); /* Add more pronounced shadow */
    opacity: 0.9; /* Slightly reduce opacity on hover */
}

.tta-button {
    background-color: #9932cc; /* Button color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 8px; /* Slightly curved corners */
    padding: 10px 25px; /* Adjusted padding for rectangular shape */
    font-size: 1.2rem; /* Font size */
    font-weight: 550; /* Make the text bolder */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Add box-shadow to transition */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0); /* Soft shadow for depth */
    opacity: 1; /* Make button fully visible */
}

.tta-button:hover {
    background-color: #7a1f9e; /* Darker shade for hover effect */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); /* Add more pronounced shadow */
    opacity: 0.9; /* Slightly reduce opacity on hover */
}

@media screen and (max-width: 440px) {
    .cta-button {
        font-size: 1rem; /* Adjusted font size for smaller screens */
        padding: 8px 20px; /* Reduced padding for smaller screens */
    }

    .tta-button {
        font-size: 1rem; /* Adjusted font size for smaller screens */
        padding: 8px 20px; /* Reduced padding for smaller screens */
}
}




/* Container for the buttons */
.cta-buttons-container {
    display: flex;
    justify-content: center; /* Center align the buttons */
    gap: 20px; /* Add space between the buttons */
    margin-top: 20px; /* Add spacing from other elements */
}

/* Ensure buttons adapt well on smaller screens */
@media screen and (max-width: 440px) {
    .cta-buttons-container {
        flex-direction: row; /* Stack buttons vertically */
        align-items: center; /* Center align in vertical layout */
        gap: 15px; /* Reduce gap for smaller screens */
    }
}





.left h1 {
    font-size: 2.5rem;
    cursor: pointer;
}


#any-business {
    padding-top: 3rem; /* Adds space inside the container at the top */
    width: 80%;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.business-btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25));
    color: white;
    font-size: 0.7rem; /* Adjust size */
    font-weight: bold;
    text-transform: uppercase; /* Make it capitalized */
    padding: 10px 25px; /* Add more padding for a better look */
    border-radius: 30px; /* Rounded corners */
    cursor: default;
    box-shadow: 0 0 15px 2px rgba(39, 29, 93, 0.6); /* Initial neon glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leftany {
    width: 500px;
}


.leftany h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.desc {
    margin-bottom: 1rem;
    color: #fff;
}

.rightany {
    width: 40%;
    height: 40%;
    margin: 1rem;
    position: relative;
    pointer-events: none; /* Disable interactions */
    user-select: none; /* Prevent text selection */
}

.btn-any {
    cursor: pointer;
    color: #ffff;
    font-weight: bold;
    border-radius: 3rem;
    padding: .7rem 1.5rem;
    text-transform: uppercase;
    border: 2px solid #7752fe;
    background-color: transparent;
}

@media screen and (max-width:810px) {
    #any-business {
        flex-direction: column-reverse;
    }

    .rightany {
        width: 120%;
    }

    .leftany {
        margin: 0;
        width: 100%;
    }

    .leftany h3 {
        font-size: 1rem;
    }

    .leftany h2 {
        font-size: 2rem;
    }

    .btn-any {
        display: block;
        color: #fff;
        margin: 0 auto;
        text-align: center;
        border: 2px solid #896bfa;
    }

    .business-btn {
        display: none;
    }
}




.solution-section {
  padding: 9px 20px;
  text-align: center;
}

.solution-section h2 {
  font-size: 32px;
  color: #010a2d;
  margin-bottom: 40px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 30px;
  max-width: 900px; /* Adjust width */
  margin: 0 auto; /* Center the grid */
}

.solution-item {
  background: linear-gradient(to bottom, #5237b3, #332966);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}


.solution-item i {
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
}

.solution-item h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.solution-item p {
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
}








#get-started {
    width: 80%;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    margin-top: 30px;
    padding: 2rem;
    background-image: url('../images/body.svg'); /* Add background image */
    background-size: cover; /* Make the image cover the section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}



.started {
    width: 100%; /* Adjust to occupy full width */
    text-align: center; /* Center align text */
}

.started h2 {
    color: #fff;
    font-size: 2.5rem; /* Moved from inline style */
    margin-top: 20px; /* Moved from inline style */
    margin: 2rem 0 1rem; /* Added space above h2 */
}


.descc {
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-buttons-container {
    display: flex;
    justify-content: center; /* Center align the buttons */
    gap: 20px; /* Add space between the buttons */
    margin-top: 20px; /* Add spacing from other elements */
}

.cta-button {
    background-color: #fff; /* Bright white for contrast */
    color: #2575fc; /* Matches the blue from the gradient */
    border: 2px solid #2575fc; /* Outline to match the gradient */
    border-radius: 8px;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 550;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.cta-button:hover {
    background-color: #2575fc; /* Switch to blue */
    color: #fff; /* Text changes to white */
    box-shadow: 0 12px 20px rgba(37, 117, 252, 0.3); /* Stronger shadow */
}

.tta-button {
    background-color: #fff; /* Purple to match the gradient */
    color: #2575fc;
    border: 2px solid #6a11cb;
    border-radius: 8px;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 550;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.tta-button:hover {
    background-color: #5a0fad; /* Darker purple on hover */
    box-shadow: 0 12px 20px rgba(106, 17, 203, 0.3); /* Stronger shadow */
}

@media screen and (max-width: 440px) {
    .cta-buttons-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .cta-button, .tta-button {
        font-size: 1rem;
        padding: 8px 20px;
    }
}

.descc + .btn-started {
    display: none; /* Removed original Learn More button */
}

.descc + .cta-buttons-container {
    display: flex; /* New buttons container */
    justify-content: center;
    margin-top: 20px;
}


.cta-buttons-container a .tta-button:hover,
.cta-buttons-container a .cta-button:hover {
  background: var(--button-hover-bg); /* Dark navy hover */
  color: #fff; /* Light blue hover */
}

@media screen and (max-width: 440px) {
    #get-started {
        width: 90%; /* Increased width for smaller screens */
    }

    .cta-buttons-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .cta-button, .tta-button {
        font-size: 0.8rem;
        padding: 7px 18px;
    }


    #get-started p {
        font-size: 0.7rem; /* Decreased font size for <p> */
    }

    #get-started h2 {
        font-size: 0.940rem;
        margin-top: 10px; /* Reduced space above h2 */
    }
}








/* =============== Footer Section CSS Code Starts from Here =============== */
:root {
    --footer-bg: #0d0826;
    --footer-text: #fff;
    --footer-link: #bbb;
    --footer-link-hover: #fff;
    --footer-border: #212020;
    --social-bg: #222;
    --social-hover: #0077b5;
}

#footer {
    width: 100%;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    transition: transform 0.3s ease-in-out;
}

.social-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-top: 0;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--social-bg);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--footer-text);
    transition: background 0.3s ease-in-out;
}

.social-links li a:hover {
    background: var(--social-hover);
}

.footer-widgets {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 70%;
    text-align: left;
    gap: 2rem;
}

.widget {
    width: 30%;
    min-width: 200px;
}

.widget h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--footer-text);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 0.5rem;
}

.widget ul li a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.widget ul li a:hover {
    color: var(--footer-link-hover);
}

.contact-widget p {
    margin: 0.3rem 0;
    color: #ddd;
    font-size: 17px;
}


@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-widgets {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .widget {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }

.footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}


    .footer-widgets {
        text-align: center;
        width: 100%;
    }

    .widget {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 1rem;
        font-size: 0.9rem;
        border-top: 1px solid var(--footer-border);
        position: relative;
    }

    .footer-bottom p {
        font-size: 1rem;
        flex: 1;
        text-align: center;
    }

    @media (min-width: 769px) {
        .footer-bottom p {
            margin-top: 1rem; /* Moves text down for desktop only */
        }
    }

    .footer-links {
        list-style: none;
        padding: 0;
        display: flex;
        gap: 20px;
    }

    .footer-links li a {
        color: var(--footer-link);
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

    .footer-links li a:hover {
        color: var(--footer-link-hover);
    }

    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .footer-links {
            justify-content: center;
        }

        .social-links {
            justify-content: center;
        }
    }
