body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    background: #ccc;
    padding: 10px 0;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-info {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    gap: 50px;
    font-size: 14px;
}

.contact-info img {
    width: auto;
    height: 20px;
}

.info {
    display: flex;
    align-items: center;
}

.contact-info i {
    color: blue;
    margin-right: 5px;
}

.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 2px solid #ddd;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.nav-links a.active {
    text-decoration: underline;
}

.hero {
    position: relative;
    background: url('img/slide1.png') no-repeat center center/cover;
    height: 700px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
}


/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}
.hero-title{
    font-size: 70px;
    font-weight: 700;
    padding: 30px;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #2A72E5; /* Blue highlight */
}

.hero-subtext {
    position: relative;
    z-index: 2;
    max-width: 40%;
    padding-top: 50px;
    margin-left: 870px;
    text-align: right; /* Align text to the right */
}

.hero-subtext h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: -10px;
}

.hero-subtext p {
    font-size: 20px;
    max-width: 600px;
}

.about-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-section h2 {
    font-size: 40px;
    font-weight: 800px;
    margin-bottom: 20px;
}

.highlight {
    color: #000;
}

.content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.text-box {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

#line{
    border-right:8px #1d7bff solid ;
    padding-right: 35px;
}

.divider {
    width: 3px;
    height: 100%;
    background: #0047AB;
}

.projects {
    position: relative;
    background: url('img/pexels-500photos-com-15338-93400.jpg') no-repeat center center/cover;
    padding: 20px 0;
    text-align: center;
    color: white;
}

.projects::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Black overlay with 50% opacity */
    z-index: 1;
}

.containery {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2; /* Ensure content is above the overlay */
}

h2 {
    font-size: 2.5em;
    color: #fff; /* White text for contrast */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.4em;
    color: #ddd;
    margin-bottom: 10px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 10px;
}

.stat-item {
    padding: 30px 50px;
    border-radius: 10px;
}

.stat-number {
    font-size: 6em;
    font-weight: bold;
    color: #0381ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    text-transform: uppercase;
}

.portfolio-button {
    background-color: #797979;
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.portfolio-button:hover {
    background-color: #077ef6;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        padding: 20px 30px;
    }
}

.strategy-section {
    padding: 40px;
    text-align: center;
}
.strategy-title {
    color: #000;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}
.strategy-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* Adjust spacing between items */
}
.strategy-item {
    width: 380px; /* Adjust width for responsiveness */
    padding: 20px;
    background-color: #fff; /* Example card background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Example shadow */
    text-align: left; /* Align text to the left within items */
}
.strategy-icon {
    width: 80px; /* Adjust icon size */
    height: 80px;
    margin: 0 auto 20px; /* Center the icon */
    /* Add your icon styles or image here */
}
.strategy-icon img {
    max-width: 100%;
    height: auto;
}
.strategy-heading {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
}
.strategy-description {
    font-size: 1em;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu img {
    width: 40px;
    height: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .strategy-item {
        width: 90%; /* Full width on smaller screens */
        margin-bottom: 20px;
    }
}

.registration-section {
    padding: 10px; /* Adjust padding as needed */
    background-color: #e0e0e0; /* Example section background color */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Bottom shadow only */
    margin-bottom: 50px;
}

.registration-title {
    font-size: 2em; /* Adjust title size */
    margin-bottom: 17px;
    color: #000000; /* Slightly darker title color */
}

.registration-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px; /* Adjust spacing between logos */
}

.registration-logo {
    width: 180px; /* Adjust logo width as needed */
    height: auto;
    
}

.registration-logo:hover {
    transform: scale(1.1); /* Scale up on hover */
    filter: grayscale(0%); /* Remove grayscale on hover */
    opacity: 1; /* Fully opaque on hover */
}

.registration-logo img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments (example) */
@media (max-width: 768px) {
    .registration-logo {
        width: 120px; /* Smaller logos on smaller screens */
    }
}

.footer-section {
    position: relative;
    height: 45vh;
    color: white;
    padding: 60px 20px;
    background: url('img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg') center/cover no-repeat;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9));
}

.footer-content {
    padding: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0;
    gap: 200px;
}

.footer-logo {
    width: 300px; /* Adjust logo width as needed */
    margin-bottom: 10px;
}

.company-name {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #cccccc;
}

.description {
    margin-left: -50px;
    max-width: 600px;
    margin-bottom: 25px;
    font-size: 24px;
}

#blue-up{
    color: #0381ff;
    font-weight: 600;
}

.contact-cta {
    font-size: 1.2em;
    font-weight: bold;
}

.footer-col{
    margin-left: -20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 5px;
}
.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease; 
}
.mobile-menu{
    display: none;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .company-name {
        font-size: 2em;
    }
}

@media (max-width: 1024px) { 
    .hero {
        position: relative;
        height: 670px; /* Adjust as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        color: white;
        overflow: hidden;
    }

    .contact-info {
        gap: 50px;
        font-size: 10px;
    }

    .nav-links a {
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
    }

    .logo img {
        height: 60px;
    }

    .hero-title {
        font-size: 60px;
        font-weight: 700;
        padding: 30px;
    }

    .hero-subtext {
        position: relative;
        z-index: 2;
        max-width: 40%;
        padding-top: 50px;
        margin-left: 590px;
        text-align: right;
    }
    
    .hero-subtext h2 {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: -18px;
    }

    .hero-subtext p {
        font-size: 17px;
        max-width: 600px;
    }

    

    .projects {
       height: 54vh;
    }

    .stat-number {
        font-size: 5em;
        margin-bottom: 0px;
    }

    h2 {
        font-size: 2.5em;
        color: #fff;
        margin-bottom: 20px;
        margin-top: -10px;
    }

    .footer-section {
        position: relative;
        height: 35vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }

    .footer-content {
        margin-top: -30px;
        padding: 50px;
        align-items: center;
        gap:80px;
    }

    .footer-logo {
        width: 200px; /* Adjust logo width as needed */
        margin-bottom: 10px;
    }

    .description {
        margin-left: -50px;
        max-width: 600px;
        font-size: 20px;
    }

    .registration-logo img {
        width: 100px;
        height: auto;
    }

    .registration-container {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    .contact-info {
        gap: 50px;
        font-size: 8px;
    }

    .contact-info img {
        width: auto;
        height: 15px;
    }

    .nav-links a {
        text-decoration: none;
        font-weight: bold;
        font-size: 11px;
    }

    .nav-links {
        gap: 70px;
    }
    .logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 40px;
        font-weight: 700;
        padding: 10px;
    }

    .hero-subtext {
        margin-left: 430px;
    }

    .hero-subtext h2 {
        font-size: 25px;
        font-weight: bold;
        margin-bottom: -18px;
    }

    .about-section h2 {
        font-size: 30px;
        font-weight: 800px;
        margin-bottom: 10px;
    }

    .about-section {
        max-width: 680px;
        margin: 50px auto;
        padding: 20px;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .text-box {
        flex: 1;
        font-size: 11px;
        line-height: 1.6;
        color: #333;
    }

    .projects {
        height: 40vh;
     }
 
     .stat-number {
         font-size: 3em;
         margin-bottom: 0px;
     }

     .stats-container {
        flex-direction: row;
        gap: 30px;
    }

    h2 {
        font-size: 2em;
        color: #fff;
        margin-bottom: -20px;
        margin-top: -15px;
    }

    .strategy-item {
        width: 30%;
        margin-bottom: 20px;
    }

    .strategy-heading {
        font-size: 0.9em;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .strategy-description {
        font-size: 0.7em;
    }

    .registration-title {
        font-size: 1.5em;
        margin-bottom: 9px;
        color: #000000;
    }

    .footer-section {
        position: relative;
        height: 35vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }

    .footer-content {
        margin-top: -30px;
        padding: 35px;
        align-items: center;
        gap:80px;
    }

    .footer-logo {
        width: 100px; /* Adjust logo width as needed */
        margin-bottom: 10px;
    }

    .description {
        margin-left: -0px;
        max-width: 300px;
        font-size: 10px;
    }

    .footer-col {
        margin-left: 0px;
        font-size: 11px;
    }

    .footer-section {
        position: relative;
        height: 20vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }
    .top-bar {
        display: none;
    }
}

@media (max-width: 500px) {
    .hero {
        height: 400px;
    }
    .hero-title {
        font-size: 30px;
        font-weight: 700;
        padding: 10px;
    }

    .hero-subtext {
        margin-left: 280px;
    }

    .hero-subtext h2 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 0.1px;
    }

    .hero-subtext p {
        margin-top: -1px;
        font-size: 11px;
        padding-top: 0px;
    }

    .about-section h2 {
        font-size: 20px;
        font-weight: 800px;
        margin-bottom: 10px;
    }

    .about-section {
        max-width: 480px;
        margin: 50px auto;
        padding: 20px;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .subtitle {
        font-size: 1em;
        color: #ddd;
        margin-bottom: 10px;
    }

    .portfolio-button {
        background-color: #797979;
        padding: 15px 25px;
        font-size: 0.9em;
    }

    .strategy-item {
        height: auto;
        width: 38%;
        margin-bottom: 20px;
    }

    .strategy-container {
        justify-content: center;
        gap: 10px;
    }

    .registration-title {
        font-size: 1.1em;
        margin-top: 5px;
        margin-bottom: 9px;
        color: #000000;
    }

    .registration-logo img {
        width: 80px;
        height: auto;
    }

    .footer-content {
        margin-top: -30px;
        padding: 0px;
        align-items: center;
        gap: 0px;
        flex-direction: column;
    }

    .footer-section {
        position: relative;
        height: 40vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .description {
        margin-left: -0px;
        max-width: 300px;
        font-size: 15px;
    }

    .nav-links {
        display: none;
    }

    /* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 78vh;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    padding-top: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu .menu-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.mobile-menu ul li { 
    width: 100%;
    text-align: center;
}

.mobile-menu ul li a {
    display: block;
    padding: 15px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}
.mobile-menu ul li a:hover {
    background: #007bff;
    color: white;
}

.mobile-menu.active {
    left: 0;
    z-index: 10000;
}


    .burger-menu {
        display: block;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }
}

@media (max-width: 480px) {
    .projects {
        height: 40vh;
     }
    .about-section h2 {
        font-size: 18px;
        font-weight: 800px;
        margin-bottom: 10px;
    }
    .hero {
        height: 380
        px;
    }
    .hero-subtext {
        margin-top: -20px;
        margin-left: 230px;
    }

    .nav-links {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    

    

     .strategy-section {
        padding: 0px;
        text-align: center;
    }

     .strategy-container {
        justify-content: center;
        gap: 10px;
    }

    .strategy-item {
        height: auto;
        width: 30%;
        margin-bottom: 20px;
    }

    .strategy-title {
        padding-top: 10px;
    }

    .contact-info {
        gap: 10px;
        font-size: 8px;
    }
}