@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: #fff;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd; /* Optional: to give a subtle separation */
}

.navbar-logo img {
    height: 135px; /* Adjusted height for a larger logo */
    width: 135px; /* Make the logo square */
    object-fit: cover; /* Ensures the logo covers the entire area */
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-menu li {
    position: relative; /* Required for dropdown positioning */
}

.navbar-menu li a {
    font-size: 20px;
    text-transform: uppercase;
    padding: 0 15px; /* Reduced padding for better spacing */
    color: #1b559f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.4s ease;
}

.navbar-menu li a:hover {
    color: #c67335;
    text-decoration: underline solid 2px;
}

/* Dropdown menu styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position below the parent */
    left: 0;
    background-color: #fff;
    min-width: 200px; /* Adjust based on content */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000; /* Ensure it appears above other content */
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 10px;

}

.dropdown-menu li a {
    color: #1b559f; /* Match navbar link color */
    font-weight: normal; /* Reset font weight */
    text-decoration: none; /* Remove underline */
    display: block; /* Full-width clickable area */
    font-size: 15px;
}

.dropdown-menu li a:hover {
    color: #c67335;
    background-color: #f1f1f1; /* Slight background on hover */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


header {
    position: relative;
    text-align: center;
    color: white;
}

.contact-image-container {
    position: relative;
}

.contact-image-container img {
    width: 100%;
    height: 300px;
}


.portfolio-text {
    position: absolute;
    bottom: -2px; /* Position the text 20px from the bottom */
    right: 20px;  /* Position the text 20px from the right side */
    font-size: 18px;
    font-family: poppins;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    color:white; /* Text color set to black */
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #f7f7f7;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 10px;
    margin-top:-10px; 
}

.who-we-are-section {
    padding: 60px 20px;
    background-color: #f8f8f8; /* Light background for contrast */
}

.who-we-are-container {
    display: flex;
    flex-direction: column-reverse; /* Stack image below text on small screens */
    align-items: center;
    gap: 20px; /* Space between text and image */
    max-width: 1200px;
    margin: 0 auto; /* Center container */
}

.who-we-are-text {
    max-width: 600px; /* Limit width for better readability */
    text-align: left; /* Align text to the left */
    margin-top:-200px ;
}

.who-we-are-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1b559f; /* Dark color for the heading */
    font-weight: 700;
    text-transform: uppercase;
}

.who-we-are-text p {
    font-size: 18px;
    color: black; /* Gray color for the paragraph */
    line-height: 1.6;
}

.who-we-are-image img {
    max-width: 600px; /* Ensure image is responsive */
    height: 500px; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-left: 70px;
}

/* Responsive design for larger screens */
@media (min-width: 768px) {
    .who-we-are-container {
        flex-direction: row; /* Position text and image side by side on larger screens */
        align-items: center;
    }

    .who-we-are-text {
        max-width: 50%; /* Adjust width for larger screens */
    }

    .who-we-are-image {
        max-width: 50%; /* Adjust width for larger screens */
    }
}

.know-about-us {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.know-about-us h2 {
    font-size: 30px;
    color: #1b559f;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.know-about-us p {
    font-size: 18px;
    color: black;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.column {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%; /* Ensure the columns are evenly spaced */
    text-align: left;
}

.column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.column h3 {
    font-size: 24px;
    color: #1b559f;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.column p {
    font-size: 16px;
    color: black;
    line-height: 1.6;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .column {
        max-width: 100%; /* Full width for columns on smaller screens */
    }
}

.business-growth-section {
    position: relative;
    background-image: url('images/your-image.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif; /* Modern, clean font */
}

.business-growth-container {
    max-width: 550px;
    padding: 40px;
    background-color: #013881;
    border-radius: 20px; /* Softer, more modern rounded corners */
    backdrop-filter: blur(8px); /* Gentle blur for a glassy effect */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-growth-container:hover {
    transform: translateY(-10px); /* Slight lift on hover for interaction */
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

.business-growth-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFF33 ; /* Elegant gold color */
    letter-spacing: 2px; /* Wider letter spacing for a more premium feel */
}

.business-growth-container {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
    color: white ; /* Softer white for a more subtle look */
}

.contact-info {
    font-size: 24px;
    font-weight: 700;
    color: #013881;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
    letter-spacing: 1px; /* Slightly increased spacing for readability */
}


.meet-team {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    color:white;
    border-top: 1px solid #ffd700; /* Thinner border for elegance */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-growth-container {
        padding: 30px;
    }

    .business-growth-container h2 {
        font-size: 28px;
    }

    .business-growth-container p,
    .contact-info,
    .meet-team {
        font-size: 18px;
    }
}

.team-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f8f8; /* Light background for contrast */
}

.team-intro h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #013881;
    text-transform: uppercase;
}

.team-intro p {
    font-size: 20px;
    color: black; /* Medium gray for the paragraph */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto; /* Center the paragraph and add spacing below */
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures boxes wrap on smaller screens */
}

.team-member {
    background-color: #fff; /* White background for each box */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 500px; /* Limit width for better layout */
    height: 460px;
    text-align: center;
}

.team-member img {
    border-radius: 5%;
    width: 300px; /* Circle size */
    height: 300px; /* Circle size */
    object-fit: cover; /* Ensures the image covers the circle */
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #333; /* Dark color for the name */
}

.team-member p {
    font-size: 18px;
    color: #777; /* Lighter gray for the title */
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-row {
        flex-direction: column; /* Stack boxes vertically on smaller screens */
        align-items: center;
    }
}




.logo-slider {
    overflow: hidden;
    width: 100%;
    background-color: #f7f7f7;
    padding: 20px 0;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(200px * 20); /* Adjust width based on the total number of logos (original + duplicate) */
    animation: scroll 20s linear infinite; /* Controls the speed of the scrolling */
}

.logo-item {
    flex: 0 0 200px; /* Each logo takes up 200px of space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1); /* Slightly enlarge the logo on hover */
}

@keyframes scroll {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(-50%); /* End position (scrolls halfway through the track) */
    }
}




.footer {
    background-color: #052c59;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 10px 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff8427 ;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: yellow;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-logo {
    margin-top: 15px;
    max-width: 100px;
}

.newsletter-form input[type="email"] {
    width:50%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 30%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo-bottom {
    width: 100px;
    height:100px;
    margin-right: 15px;
}

.footer-left p {
    margin-right: 15px;
}

.footer-left a {
    color: #f39c12;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-left a:hover {
    color: #fff;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f39c12;
    font-weight: 600;
}

.footer-right img {
    max-width: 40px;
    margin-left: 10px;
}
