@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: 20px; /* 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: black; /* 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; 
}

.contact-item {
    display: flex;
    align-items: center;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item i {
    font-size: 30px;
    color: #1b559f;
    margin-right: 20px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    margin: 0;
    color: #555;
}

.contact-item a {
    text-decoration: none;
    color: #1b559f;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-form-section {
    background-color: #f7f7f7;
    padding: 40px 20px;
    margin-top: 3px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #1b559f;
    text-align: center;
    margin-bottom: 10px;
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 18px;
    color: black;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0c3b79;
    outline: none;
}

.btn-send {
    display: inline-block;
    background-color: #1b559f;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-send:hover {
    background-color: #3498db;
}

.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) */
    }
}

.customer-reviews-section {
    padding: 40px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center; /* Center text */
}

.customer-reviews-container {
    width: 900px; /* Limit width for better readability */
    margin: 0 auto; /* Center container */
}

.customer-reviews-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1b559f; /* Dark color for the heading */
    font-weight: 700;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Two columns, responsive */
    gap: 20px; /* Space between review boxes */
}

.review {
    background-color: #fff; /* White background for reviews */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: left; /* Align text to the left */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Circular photo */
    object-fit: cover; /* Maintain aspect ratio */
    margin-bottom: 15px; /* Space below photo */
}

.review-content {
    width: 100%;
}

.review-text {
    font-size: 18px;
    color: #666; /* Gray color for the text */
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: center; /* Center text */
}

.reviewer-name {
    font-size: 16px;
    color: #333; /* Dark color for the name */
    font-weight: 500;
    text-align: center; /* Center text */
}


.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;
}
