
/* General Styles */
html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */

}




/* Header styles */
header {
    
    color: black;
    background-color: transparent; /* Transparent by default */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0); /* Optional shadow for clarity */
    padding: 15px 30px;
    display: flex;
    justify-content: space-evenly; /* Align logo and navigation properly */
    align-items: center;
    position: fixed; /* Fixed to stay on top */
    top: 0;
    left: 0;
    width: 100%; /* Ensure header spans full width */
    z-index: 1000; /* Keep above video */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    

    
}

header.scrolled {
    background-color: white; /* Header turns white on scroll */
    color: black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0); /* Add shadow for clarity */

}

.logo img {
    max-height: 33px;
}

/* Navigation Menu */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s;
}

/* Highlight the active page link */
nav ul li a.active {
    color: #4B9FD0;
    text-decoration: underline;
}

/* Hover effect for navigation links */
nav ul li a:hover {
    color: #4B9FD0;
}

/* Button */
.main-button {
    background-color: transparent;
    color: black;
    border: 2px solid #4B9FD0;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.main-button:hover {
    background-color: #4B9FD0;
    color: white;
}


/* Video Section */
#video-section {
    position: relative;
    width: 100%;
    height: 90vh; /* Adjust to fit your desired height */
    overflow: hidden;
}

#video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: 0; /* Keep it behind other content */

}

/* Content Section */
#content-section {
    position: relative;
    background-color: white;
    margin-top: -10%; /* Pulls the content-section up by 10% */
    z-index: 1;
}

i {
    font-size: 20px;
    
}

.content-overlay {
    display: flex;
    justify-content: space-between; /* Even spacing between elements */
    align-items: flex-start;
    gap: 30px;
    padding: 50px 0; /* Removed left and right padding */
    background: white;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.); /* Subtle shadow for separation */
    border-radius: 15px 15px 0 0; /* Optional rounded top corners */
    max-width: 1140px; /* Align with other sections */
    margin: 0 auto; /* Center horizontally */
}

/* Info Card */
.info-card {
    position: relative;
    margin-top: -10%; /* Moves the card 10% up into the video */
    background-color: #4B9FD0; /* Blue background */
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 50%; /* Less wide */
    height: auto; /* Flexible height */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.0); /* Subtle shadow */
    z-index: 2; /* Ensure it’s on top */
    min-height: 310px;
}

.info-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stats-container {
    display: flex; /* Flexbox layout */
    flex-direction: column; /* Stack rows */
    align-items: center; /* Center align all content */
    gap: 20px; /* Spacing between rows */
    width: 40%;
}

.stat-items-row {
    display: flex; /* Align items in a row */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    gap: 40px; /* Spacing between the stat items */
    width: 100%;
}

/* Stat Item Styling */
.stat-item {
    display: flex; /* Align icon and text in a single row */
    align-items: center; /* Vertically align icon with text */
    gap: 10px; /* Add spacing between icon and text */
    margin-bottom: 20px; /* Add spacing between items */
}

.stat-item .icon i {
    font-size: 24px; /* Icon size */
    color: #4B9FD0; /* Icon color */
}

.stat-item .icon i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #4B9FD0; /* Icon color */
}

.additional-stats li i {
    color: #4B9FD0; /* Icon color */
    margin-right: 10px; /* Add spacing between the icon and text */
}

.stat-item h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #666666; /* Text color */
}

.additional-stats {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%; /* Ensures it spans full width */
    line-height: 1.6; /* Adds spacing between lines */
}

.additional-stats li {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Reduced space between items */
    padding-bottom: 10px; /* Reduced padding */
    border-bottom: 1px dashed #ccc; /* Dashed separator line */
}

.additional-stats li:last-child {
    border-bottom: none; /* No border on the last item */
}

.additional-stats .icon {
    font-size: 20px; /* Icon size */
    margin-right: 10px; /* Reduced space between icon and text */
    color: #4B9FD0; /* Blue for icons */
}

.additional-stats p {
    font-size: 16px; /* Font size for additional text */
    color: #666666; /* Text color */
    margin: 0;
    line-height: 1.4; /* Slightly tighter spacing for text */
}



/* History Section */
#our-history-section {
    background-color: white;
    padding: 100px; /* Keeps consistent spacing for both sections */
    color: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* History Container */
.history-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px; /* Slimmer container width */
    margin: 0 auto; /* Ensures center alignment */
    gap: 20px; /* Space between the image and the text */
    padding: 0; /* Removes unnecessary padding */
    height: 600px; /* Taller container */
}

/* Founder Card */
.founder-card {
    position: relative;
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1; /* Allows it to adapt to the container */
    max-width: 300px; /* Slimmer card width */
    height: 550px; /* Slightly taller card */
}

.founder-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the card */
}

/* Founder Info */
.founder-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    color: white;
    text-align: left;
}

.founder-info h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
    color: #4B9FD0;
}

.founder-info p {
    font-size: 14px;
    margin: 0;
    color: white;
}

.founder-info .linkedin-link {
    margin-top: 5px;
    font-size: 16px;
    color: #0e76a8;
    text-decoration: none;
}

.founder-info .linkedin-link:hover {
    text-decoration: underline;
}

/* History Content */
.history-content {
    flex: 1.2; /* Adjusts to fit a slimmer container */
    max-width: 600px; /* Slightly reduced width */
}

.history-content h3 {
    font-size: 24px;
    color: #4B9FD0;
    margin-bottom: 15px;
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Section Styling */
#our-mission-vision {
    position: relative;
    min-height: 900px; /* Tall enough to fit content and background image */
    overflow: visible; /* Prevents clipping of content */

}

#our-mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Slight white transparency */
    z-index: 1; /* Ensures the overlay is above the image */
}


/* Image Styling */
.background-image {
    width: 100%;
    height: 600px; /* Fixed height for the image */
    object-fit: cover; /* Ensures the image covers the entire height */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* Places the image behind the content */
}


/* Content Container */
.content-container {
    position: relative;
    z-index: 1; /* Places content above the background image */
    display: flex;
    justify-content: center; /* Centers the cards */
    align-items: center;
    padding: 20px;
    transform: translateY(300%); /* Creates a 15% overlap with the image */
    gap: 40px;
}

/* Mission/Vision Cards */
.mission-vision-card {
    background: #4B9FD0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adds some depth */
}

/* Icon Styling */
.mission-vision-card i {
    font-size: 40px; /* Adjust icon size */
    color: white; /* Set icon color to white */
    margin-bottom: 10px; /* Space between the icon and title */
    display: block; /* Ensures proper positioning */
}

.mission-vision-card h3 {
    color: white;
    margin-bottom: 10px;
}

.mission-vision-card p {
    font-size: 16px;
    color: #fff;
}



/* Trusted Brands Section */
#trusted-brands {
    background-color: white;
    text-align: center;
    padding: 50px 20px;
    color: #666666;
    min-height: 500px;
}

#trusted-brands h3 {
    font-size: 24px;
    color: #4B9FD0; /* Title in the same blue as before */
    margin-bottom:-180px;
    padding-top: 180px;
}

/* Logos Container */
.logos-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Ensures 6 logos per row */
    gap: 30px 40px; /* First value is column gap, second value is row gap */
    justify-items: center; /* Center-aligns logos */
    align-items: center;
    max-width: 1200px; /* Restricts the width */
    margin: 0 auto;
    padding-top: 250px;

}

/* Logos Styling */
.logos-container img {
    max-width: 100px; /* Adjust logo size */
    max-height: 50px; /* Ensures consistent height */
    object-fit: contain; /* Keeps logo aspect ratio */
    filter: grayscale(100%); /* Converts logos to grey */
    opacity: 0.8; /* Adds slight transparency */
    transition: opacity 0.3s ease-in-out;
}

.logos-container img:hover {
    opacity: 1; /* Removes transparency on hover */
}



#key-benefits-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures content stays within bounds */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the area without distortion */
    z-index: 0;
}

/* White Semi-Transparent Overlay */
#key-benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* White overlay with 30% opacity */
    z-index: 1; /* Keeps it above the image but below the content */
}

.benefits-container {
    position: relative;
    z-index: 2; /* Ensures the content is above the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.benefits-card {
    background-color: rgba(75, 159, 208, 0.95); /* Semi-transparent #4B9FD0 */
    color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.additional-stats {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%; /* Ensures it spans full width */
    line-height: 1.6; /* Adds spacing between lines */
}



.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Reduced space between items */
    padding-bottom: 10px; /* Reduced padding */
    border-bottom: 1px dashed #ccc; /* Dashed separator line */

}

.benefits-list li:last-child {
    border-bottom: none; /* No border on the last item */
}

.benefits-list .icon {
    font-size: 20px; /* Icon size */
    margin-right: 10px; /* Reduced space between icon and text */
    color: #4B9FD0; /* Blue for icons */
}

.benefits-list p {
    font-size: 16px; /* Font size for additional text */
    color: #666666; /* Text color */
    margin: 0;
    line-height: 1.4; /* Slightly tighter spacing for text */
}

/* Team Section */
#our-team-section {
    text-align: center;
    background-color: #ffffff;
    padding: 50px 0; /* Removed left and right padding */
}

#our-team-section h3 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 10px;
}

#our-team-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666666;
}

/* Team Container */
.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
    gap: 20px; /* Space between cards */
    max-width: 1140px; /* Ensure consistent width with other sections */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0; /* Remove internal padding */
    justify-items: center; /* Ensure items are centered */
}

/* Team Card */
.team-card {
    position: relative;
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden; /* Ensures content stays inside the card */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Dynamically adjust width based on container */
    max-width: 300px; /* Restrict maximum width */
    height: 450px; /* Adjust height */
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the card without distortion */
}

/* Team Info */
.team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    padding: 15px 10px; /* Adds consistent padding */
    color: white;
    text-align: left;
}

.team-info h4 {
    font-size: 18px;
    font-weight: bold;
    color: #4B9FD0;
    margin: 0 0 8px 0; /* Space below the h4 */
}

.team-info p {
    font-size: 14px;
    color: #ffffff !important; /* Forces white text */
    margin: 0 0 8px 0; /* Space below the p */
}

.team-info .linkedin-link {
    font-size: 20px;
    color: #0e76a8; /* LinkedIn blue */
    text-decoration: none;
    margin: 0; /* No additional margin required */
    display: inline-block; /* Ensures proper alignment */
}

.team-info .linkedin-link:hover {
    text-decoration: underline;
}





/* Beliefs Section */
#beliefs-section {
    background-color: white;
    padding: 50px 0; /* Removed left and right padding */
    display: flex;
    justify-content: center;
    align-items: center;
}

.beliefs-container {
    display: flex;
    justify-content: space-between; /* Even spacing between elements */
    align-items: center;
    max-width: 1140px; /* Matches other sections for consistent alignment */
    margin: 0 auto; /* Centers the container horizontally */
    gap: 40px; /* Space between content and card */
}

/* Beliefs Content */
.beliefs-content {
    flex: 1.5;
    color: #666666;
}

.beliefs-content h2 {
    font-size: 24px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.beliefs-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Beliefs Card */
.beliefs-card {
    background-color: #4B9FD0; /* Usual Blue */
    color: white;
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px; /* Taller height */
    width: 320px; /* Consistent width */
}

.beliefs-card h3 {
    font-size: 30px;
}



/*testimonials start here*/


.testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.testimonials-section h3 {
    color: #4B9FD0;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.testimonials-section h4 {
    color: black;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Ensure proper spacing across rows */
    gap: 10px; /* Control spacing between items */
    padding: 0; /* Ensure no extra padding in the grid */
    margin: 0 auto; /* Center the grid in its container */
    max-width: 1200px; /* Limit grid width for better layout control */
}

.testimonial-item {
    background-color: white;
    border: 2px solid #4B9FD0;
    border-radius: 10px;
    max-width: 300px; /* Control the width of each item */
    flex: 1 1 300px; /* Allow items to grow/shrink while maintaining a grid layout */
    padding: 15px;
    margin: 0; /* Remove any external margins */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for aesthetics */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-item blockquote {
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

.testimonial-item blockquote::before {
    content: "“";
    font-size: 20px;
    color: #0066cc;
    position: absolute;
    left: -8px;
    top: -8px;
}

.testimonial-item .client-info {
    display: flex;
    align-items: center;
    gap: 10px; /* Proper spacing between image and text */
}

.testimonial-item .client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-item .client-info h5 {
    color: #4B9FD0;
    font-size: 16px;
    margin: 0;
}

.testimonial-item .client-info p {
    color: #333;
    font-size: 13px;
    margin: 0;
}


/* Slide-up animation */
.slide-up-about {
    opacity: 0; /* Initially invisible */
    transform: translateY(50px); /* Start 50px below its final position */
    transition: opacity 1.2s ease, transform 1.2s ease; /* Smooth animation */
}

/* When visible */
.slide-up-about.visible {
    opacity: 1;
    transform: translateY(0); /* Move to its original position */
}

/* Footer Section */
.footer-section {
    background-color: white; /* Black background */
    color: #666666; /* White text color */
    padding: 50px 20px;
}




.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.footer-logo-description {
    text-align: left;
    display: flex;
    flex-direction: column; /* Stack the logo and text */
    justify-content: flex-start; /* Align items at the top */
    gap: 15px; /* Add spacing between the logo and the text */
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-logo-description p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.linkedin-link {
    color: #4B9FD0; /* Red for LinkedIn icon */
    text-decoration: none;
    font-size: 16px;
    margin-top: -30px;
}

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



/* Contact Info */
.footer-contact-info h4,
.footer-useful-info h4,
.footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    margin-bottom: 10px;
}

.footer-contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact-info i {
    color: #4B9FD0;
    margin-right: 10px;
}

/* Useful Info */
.footer-useful-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-useful-info li {
    margin-bottom: 10px;
}

.footer-useful-info a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.footer-useful-info a:hover {
    color: #4B9FD0;
    text-decoration: underline;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666666;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: 2px solid #4B9FD0;
    border-radius: 5px;
    font-size: 14px;
    flex: 1;
    background-color: white;
    color: #666666;
}

.newsletter-form input::placeholder {
    color: #666666;
    opacity: 0.8;
}

.newsletter-form button {
    background-color: white;
    border: 2px solid #4B9FD0;
    color: #4B9FD0;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #4B9FD0;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #4B9FD0;
    padding-top: 15px;
    font-size: 14px;
    color: #666666;
}

.newsletter-form {
    position: relative;
    margin-bottom: 10px;
}

#newsletter-message {
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
