* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

header {
    background: #f0f0f0;
    color: #fff;
    padding: 5px 0;
    
    
}

.logo {
    display: flex;
    margin: 0 10px;
    align-items: center;
    background-color: transparent; /* Adding white background */
    padding: 10px; /* Optional: Adds padding for spacing around the logo */
}

.logo img {
    height: 48px;
    width: auto;
    max-width: 100%;
    margin-right: 10px;
}
.logo h1 {
    color: #fff;
    font-size: 30px;
    margin: 5px;
}

.menu-icon {
    text-align: end;
    margin-right: 10px;
    
}

.menu-icon img {
    height: 28px !important;
    cursor: pointer;
    padding: 4px;
    -webkit-mask-image: url('menuweb1.png');
    mask-image: url('menuweb1.png');
    background-color: black; /* This forces the icon to be black */
}


.hero {
    position: relative;
    background: url('sc_photo2.jpg') no-repeat center center/cover;
    height: 50vh;
    color: white;
    padding: 10px;
    text-align: start;
    
    justify-content: center;
    align-items: start;
}

.hero p {
    font-size: 1.0em;
    max-width: 500px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust transparency as needed */
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}
.hero h3 {
    color: beige;
    text-align: end;
    font-size: 12px !important;
    margin-bottom: 1px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 5px;
    background-color: #CCCCCC;
    margin: 5px 5px;
    border-radius: 5px;
}


#profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
     align-items: center !important;
    margin-bottom: 10px;
}


/* CTA button styling */
.cta-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Center the button */
.button-container {
    text-align: center;
}

        /* Other styling adjustments */
        .read-more-link {
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }

        .read-more-link:hover {
            text-decoration: underline;
        }

        .team-member {
            margin-top: 10px;
        }
/* Contact Section Styling */
#contact {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: left;
}

#contact h2 {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 20px;
}

#contact p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 30px;
}

form {
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}

.cta-button {
    width: auto;
    background-color: #007BFF;
    color: white;
    font-size: 0.9em;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
}

.cta-button:hover {
    background-color: #0056b3;
}

    .social-media-availability {
    margin-top: 0px;
        font-size: 12px;
    text-align: start;
}
.social-links {
    margin-top: 0px;
    text-align: center;
}

.social-links a {
    margin: 0 4px;
    color: #007BFF;
    
    font-size: 14px;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}
    footer {
    text-align: center;
    background-color: #003366;
        font-size: 12px;
    color: white;
    padding: 10px 0;
}
    footer a {
    text-align: center;
    color: white;
    padding: 10px 0;
}
    /* Team Section Styling */

    /* General Section Styling */
.section {
    padding: 10px 20px;
    text-align: start;
    background-color: #fff;
}

.section h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
    text-align: center;
    color: #003366;
   /* border-bottom: 2px solid #003366; */
}

.section p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}
/* Mission & Vision Styling */


.section-title {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 5px;
}

.section-text {
    font-size: 0.8em;
    line-height: 1.2;
    color: #333;
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}
.story-wrapper img {
    margin-top: 10px;
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .story-wrapper img {
        margin-top: 100px;
        width: 48%;
        height: 400px;
    }
    .story-wrapper {
        display: flex;
        flex-direction: row;
        max-width: 94%;
        justify-content: space-between;
        margin-top: 30px;
        gap: 20px;
    }
    .company-history {
        max-width: 52%;
    }
}

.company-history {
    justify-self: center;
    max-width: 100%;
}

/* Services Grid Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-title {
    font-size: 1.1em;
    color: #007BFF;
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.8em;
    color: #666;
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Layout Adjustments */
.button-container {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonial-container {
    position: relative;
    height: 220px; /* Set a fixed height for the container */
    overflow: hidden; /* Hide overflowing content */
}


    .testimonial-item {
        background-color: #e9ecef;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        position: absolute;
    
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start slightly below */
    animation: scroll 12s infinite; /* Adjust the duration as needed */
}

/* Keyframes for scrolling animation */
@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    40% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Specific animation for each testimonial item */
.testimonial-item:nth-child(1) {
    animation-delay: 0s; /* First item appears immediately */
}

.testimonial-item:nth-child(2) {
    animation-delay: 4s; /* Second item appears after 4 seconds */
}

.testimonial-item:nth-child(3) {
    animation-delay: 8s; /* Third item appears after 8 seconds */
}
.testimonial-container:hover .testimonial-item {
    animation-play-state: paused; /* Pause on hover */
}

.bottom-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styling */
@media (min-width: 768px) {
    .bottom-container {
        max-width: 90%;
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    
}



