
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom right, #28a745, #ffffff);
    color: #333;
}

/* Header Section */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.logo h1 {
    font-size: 2rem;
    color: #28a745;
    font-weight: 600;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #28a745;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #28a745;
    border-radius: 7px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #28a745;
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Slider */
.slider {
    position: relative;
    width: 100%; /* Full width of the section */
    height: 100%; /* Full height of the section */
    overflow: hidden; /* Hide overflow */
}

/* Moving Images Section */
.moving-images {
    display: flex; /* Use flexbox to arrange images in a row */
    height: 100%; /* Full height */
    align-items: center; /* Center images vertically */
    transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.moving-images img {
    width: 100%; /* Full width of the container */
    max-height: 100%; /* Ensure images fit within the section */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    flex: 0 0 100%; /* Each image takes up full width */
}

/* Navigation Arrows */
.arrow {
    position: absolute; /* Position arrows over the slider */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust to center */
    font-size: 2rem; /* Arrow size */
    color: white; /* Arrow color */
    background: rgba(0, 0, 0, 0.5); /* Background for better visibility */
    border-radius: 50%; /* Round shape */
    padding: 10px;
    cursor: pointer; /* Change cursor to pointer */
    z-index: 10; /* Bring arrows above images */
}

.left-arrow {
    left: 10px; /* Position on the left */
}

.right-arrow {
    right: 10px; /* Position on the right */
}

/* Footer with Continuous Scrolling Text */
.moving-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #28a745;
    white-space: nowrap;
    overflow: hidden;
    padding: 10px 0;
}

.moving-footer p {
    display: inline-block;
    padding-left: 100%;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    animation: move 25s linear infinite;
}

@keyframes move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Green Box */
.green-box {
    background-color: #28a745; /* Green background */
    color: white; /* Default text color */
    padding: 20px; /* Padding inside the box */
    margin: 0; /* Remove margin to make it full width */
    width: 100%; /* Full width */
    border-radius: 8px; /* Rounded corners */
    text-align: center; /* Center text */
}

.green-box h2 {
    font-size: 1.8rem; /* Font size for the heading */
    margin-bottom: 10px; /* Space below the heading */
    color: white; /* Set text color to white */
}

/* General container to hold all boxes */
.creative-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Box styling for each section */
.creative-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.creative-box:hover {
    transform: scale(1.02);
}

/* Different shades of light blue for different sections */
.intro-box {
    background-color: #cce7ff; /* Light pastel blue */
    color: #2e4053; /* Darker text for contrast */
}

/* Unique color for the Work Ethics & Vision section */
.vision-box {
    background-color:#e6f2ff; /* Soft but more pronounced blue */
    color: #2e405; /* Darker text for contrast */
    border: 2 px solid #4db8ff; /* Slightly darker blue border for emphasis */
}


.objective-box {
    background-color:#cce7ff; /* Very light blue */
    border: 2px dashed #66c2ff; /* Slightly darker blue border */
    color: #2e4053;
}

.impact-box {
    background-color: #e6f2ff; /* Lightest blue (distinct from white) */
    border-left: 8px solid #4db8ff; /* More pronounced blue border */
    color: #2e4053;
}

/* Styling for blockquotes */
blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2e4053;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 4px solid #2e4053;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Styling for unordered lists */
ul {
    margin-left: 20px;
    list-style-type: disc;
    color: #2e4053;
}

ul ul {
    list-style-type: circle;
}

/* Styling for highlighted text */
.highlighted-text {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    color: #2e4053;
}

/* Styling for headers */
.creative-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #2e4053;
}

.creative-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2e4053;
    font-weight: bold;
}

.creative-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2e4053;
}
.founders {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.founder-box {
    position: relative;
    flex: 1;
    background-color: #f4f4f4;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.founder-box:hover {
    transform: translateY(-10px);
}

.founder-box:hover::after {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px; /* Added padding for better readability */
    background-color: rgba(40, 167, 69, 0.9);
    color: #fff;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4; /* Improved readability */
    border-radius: 10px;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    word-wrap: break-word; /* Ensures long words break */
    overflow-wrap: break-word;
    overflow: hidden; /* Prevents text from overflowing */
}

.founder-box:hover::after {
    transform: translateY(0);
}

.founder-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.founder-box h3 {
    font-size: 1.5rem;
    color: #333;
}

.founder-box h4 {
    font-size: 1.2rem;
    color: #555;
    margin-top: 5px;
}




