* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #1a1a2e00;
}

/* Navbar */
.navbar {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgb(71, 81, 146);
   
}
.mobile-menu-btn {
    display: none;
}

.logo-img {
    width: 70px;
    height: 70px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: black;
    text-decoration: none;
}

.dropdown {
    position: relative;
}




/* Hero Section */
.hero {
    min-height: 80vh;
    background-image: url('../IMAGES/GlobalNetwork-Webworksio.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 94, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #fff;
    color: #2b2b5e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2rem;
}
.cta-button:hover{
    background: rgba(71, 81, 146, 1);
    color: #fff;
}

.background-wrapper{
    position: relative;
    width: 100%;
    background: linear-gradient(35deg,#1a1a2e 0%,#2b2b5e 100%);
}

.background{
    position: relative;
    z-index: 2; 
    background: url('../IMAGES/background.png')repeat;
    background-size: cover;
    background-attachment:fixed; 
}



/* About Section */
.about {
    max-width: 800px; /* Set a maximum width */
    margin: 0 auto; /* Center the section */
    padding: 2rem;
    text-align: center;
   /* background: linear-gradient(135deg, #2b2b5e 0%, #1a1a2e 100%);*/
    
    text-align: center;
}

/* Services Section */
.services {
    padding: 5rem 10%;
    /*background: linear-gradient(135deg, #1a1a2e 0%, #2b2b5e 100%);*/
}
#service-heading{
    text-align: center;
}

.services-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.services-list {
    flex: 1;
    margin-right: 3rem;
}

.service-item {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.services-image {
    flex: 1;
    max-width: 400px;
}

.services-image img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    /*background: #2b2b5e;*/
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-services a,
.footer-contact a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
#footerHeading{
    color: black;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 250px;
        height: 100vh;
        background-color: rgba(71, 81, 146, 1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 99;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        display: block;
        margin: 10px 0;
        padding: 10px;
    }
    
     .dropdown-menu {
        position: static; /* Change from absolute to static */
        width: 100%;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    }
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .mobile-menu-btn {
        display: block;
    }
    
  
    


    .hero h1 {
        font-size: 2rem;
    }

    .services-container {
        flex-direction: column;
    }

    .services-list {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Additional Styles for Smooth Scrolling */
html {
    scroll-behavior: smooth;
}