 /* Reset default styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

.final-websitedesign {
    background-size: cover;
    opacity: 0.8;
    width: 100%;
    height: auto;
    display: block;
}

.image-content {
    position: relative;
    /* background-image: url('public/external/adobestock33138630313718-lg39-1000h.png'); */
    background-size: cover;
    background-position: center;
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.image-content img {
    opacity: 0.8;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.centered {
    padding: 5%;
    width: 100%;
    box-sizing: border-box;
}

.header-image {
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    margin-bottom: 10px;
}

.header-image-text {
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    max-width: 90%;
}

.container-new {
    display: flex;
    flex-wrap: wrap;
}

.text-column,
.image-column {
    flex: 1 1 45%;
    /* padding: 30px; */
}

.text-column {
    background: #1e4573;
    color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.background-change {
    background: #329bdb;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
}

.greed-text {
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    margin: 20px 0;
    margin-left: 20px;

    text-align: left;
}

.content-white-paper {
    padding: 7% 10%;
}

.white-paper-btn-div {
    margin: 20px;
   
}

.white-papar-btn {
    padding: 15px 20px;
    background-color: rgba(0, 143, 215, 1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

.container-whitepaper-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.white-paper-greed {
    flex: 1 1 45%;
    background: #e3edf5;
    padding: 30px;
    margin: 10px;
    border-radius: 10px;
}

.final-websitedesign-text11 {
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    margin-bottom: 10px;
}

.final-websitedesign-text14 {
    color: rgba(0, 143, 215, 1);
    font-size: 14px;
}

.cout-contaner {
    padding: 7% 10%;
    background: #daeefa;
}

.final-websitedesign-text22 {
    color: rgba(0, 49, 99, 1);
    font-size: 36px;
    line-height: 1.5;
}

.final-websitedesign-text23 {
    color: rgba(0, 49, 99, 1);
    font-size: 16px;
    margin-top: 10px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .text-column,
    .image-column,
    .white-paper-greed {
        flex: 1 1 100%;
        padding: 10px;
        /* margin: 10px 0; */
    }

    .header-image {
        font-size: 36px;
    }

    .header-image-text {
        font-size: 18px;
    }

    .greed-text {
        font-size: 20px;
    }

    .final-websitedesign-text22 {
        font-size: 24px;
    }

    .final-websitedesign-text23 {
        font-size: 14px;
    }
    .image-content{
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .header-image {
        font-size: 28px;
    }

    .header-image-text {
        font-size: 16px;
    }
    .image-content{
        min-height: 250px;
    }
}


/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    padding-top: 60px; /* Make space for the fixed header */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Flex container for header */
.header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-left: 5%;
    padding-right: 5%;
}

/* Logo */
.logo {
    width: 100px;
    height: 47px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
}

/* Navigation */
.nav {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.nav-item {
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #007fd7;
}

/* Login button */
.login-btn {
    padding: 10px 20px;
    background-color: rgba(0, 143, 215, 1);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-left: auto;  /* This will push the button to the right */
    align-self: center; /* Center the button vertically within its container */
    margin-right: 20px;

}

.login-btn:hover {
    background-color: rgba(0, 143, 215, 1);
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav {
        display: none; /* Hide the menu by default on small screens */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger menu on small screens */
    }

    .login-btn {
        margin-left: auto;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 60px;
        right: 5%;
        background-color: #fff;
        padding: 10px;
        border-radius: 10px;
        width: 200px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}

/* Main content container */
.content {
    flex: 1;
    /*   padding-top: 80px; /* Adjust space due to fixed header */
}

/* Footer Styles */
.footer {
    padding-left: 5%;
    width: 100%;
    background-color: rgba(0, 49, 99, 1);
    margin-top: auto;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.footer-left {
    display: grid;
    align-items: center;
    flex-wrap: wrap;
}

.footer-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-link {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 10px;
    color: white;
    margin-top: 10px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-right: 5%;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

    .footer-left {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-links {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-icon {
        width: 25px;
        height: 25px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Main content */
.container-about {
    background-color: #008fd7;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
    padding-left: 5%;
}

.container-about-text {
    padding-top: 20px;
    padding-bottom: 20px;
    color: black;
    padding-left: 5%;
    padding-right: 6%;
}

/* Footer */
.footer-left {
    justify-content: center;
    text-align: center;
}

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

.lightText {
    color: rgba(82, 82, 82, 1);
    height: auto;
    font-size: 16px;
    align-self: stretch;
    font-style: Regular;
    text-align: justify;
    font-family: Poppins;
    font-weight: 400;
    line-height: normal;
}

.dark-text {
    color: rgba(0, 49, 99, 1);
    height: auto;
    font-size: 16px;
    align-self: stretch;
    font-style: Medium;
    font-family: Poppins;
    font-weight: 500;
    line-height: normal;
    text-align: justify;
}

.bold-text {
    color: rgba(0, 49, 99, 1);
    font-size: 20px;
    font-style: Medium;
    font-family: Poppins;
    font-weight: 500;
    line-height: normal;
    text-align: justify;
    margin-bottom: 10px;
}

.medium-text {
    color: rgba(0, 49, 99, 1);
    font-size: 18px;
    font-style: Medium;
    font-family: Poppins;
    font-weight: 500;
    line-height: normal;
    text-align: justify;
    margin-bottom: 5px;
}

.header-text {
    color: rgba(247, 247, 247, 1);
    font-size: 28px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 5px;
}
a{
    text-decoration: none;
    cursor: pointer;
}
.opacity-div{
    opacity: 0.8; 
    background-color:  rgba(0, 143, 215, 1); 
    min-height: 100%; 
    width: 100%;
    position: relative;
    /* background-image: url('public/external/adobestock33138630313718-lg39-1000h.png'); */
    background-size: cover;
    background-position: center;
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 400px;
}