/* Resetting styles */
* {
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9; /* Light background for the body */
}

/* Container for the entire page */
.container {
    width: 100%;
    max-width: 1200px; /* Limit the width of the content to avoid stretching on large screens */
    margin: 0 auto;
    padding: 20px; /* Add padding inside the container */
}

h1 {
    font-size: 28px; /* Adjust size for h1 */
}

h2 {
    font-size: 24px; /* Adjust size for h2 */
}

h3 {
    font-size: 20px; /* Adjust size for h3 */
}

p {
    font-size: 14px; /* Adjust size for paragraphs */
}

.cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 12px; /* Adjust size for buttons */
    padding: 10px 20px;
    background-color: #939ba3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style-type: none;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f9f9f9; /* Updated to f9f9f9 */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100vw; /* Ensure the navbar spans the full viewport width */
    z-index: 1000;
}

.navbar .logo {
    height: 40px;
}

.navbar ul {
    display: flex;
    gap: 20px;
}

.navbar ul li {
    font-size: 12px;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    min-height: 100vh;
    background-color: #f9f9f9;
}

.hero-section .left-col {
    flex: 1;
    width: 45%;
    /*display: flex;*/
    /*flex-direction: column;*/
    justify-content: center;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.typing-text {
            color: #2a410a;
            font-weight: bold;
}

.typing-effect {
    display: inline;
    border-right: 3px solid #2a410a;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(30, end) infinite, blink 0.75s step-end infinite;
    color: #2a410a;
}

@keyframes typing {
    0% { width: 0; }
    30% { width: 100%; }
    60% { width: 100%; }
    100% { width: 0; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-section .cta-button {
    padding: 10px 20px;
    background-color: #939ba3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero-section .right-col {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section img.hero-logo {
    max-width: 55%;
    height: auto; /* Maintain aspect ratio */
}

/* About Section */
.about-section {
    display: flex;
    padding: 50px;
    background-color: #f9f9f9; /* Updated to f9f9f9 */
}

.about-section .left-col {
    flex: 1;
    position: sticky;
	  height: 100%;
    top: 100px;

}

.about-section .left-col h1 {
    margin-bottom: 20px;

}

.about-section .left-col p {
    font-size: 16px;
}

.about-section .right-col {
    flex: 2;
    /*overflow-y: auto;
    height: 70vh;*/

}

.about-section .section {
    margin-bottom: 50px;
}

.about-section .services h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.about-section .services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px; /* Add spacing between columns */
    /*text-align: center;*/ /* Center align the text within each column */
}

.about-section .services-grid div {
    flex: 1;
    margin: 10px;
    padding: 20px;
    /*border: 1px solid #ddd;
    border-radius: 10px;*/
}

.about-section .services-grid h4 {
    font-size: 16px;
    font-weight: bold;
    color: #34553f; /* Dark green color */
    position: relative;
    margin-bottom: 10px;
}

.about-section .services-grid h4::before {
    content: "";
    position: absolute;
    top: -15px; /* Position line above the heading */
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #34553f; /* Same dark green color */
}

.about-section .services-grid p {
    font-size: 16px;
    color: #666; /* Grey color for the descriptions */
    margin-top: 10px;
}

.flashing-text {
    animation: flash 1.5s infinite;
    /*font-weight: bold;*/
    color: #34553f; /* Dark green color */
}

/* Keyframes for the flashing effect */
@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Team Section */
.team-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-template-rows: repeat(2, auto);   /* Two rows */
    gap: 20px; /* Adjust the gap between the grid items as needed */
    justify-items: center; /* Center items horizontally */
    align-items: start; /* Align items at the top vertically */
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddd;
    background-image: url('Assets/founder-placeholder.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.team-info p {
    text-align: center;
    margin-top: 10px;
    margin: 5px 0;
}

/* Contact Section */
.contact-section {
    display: flex;
    padding: 50px;
    background-color: #f9f9f9;
    justify-content: center; /* Center align the content horizontally */
}

.contact-section .left-col {
    flex: 1;
}

.contact-section .right-col {
    flex: 2;
}

.contact-form input, .contact-form button {
    width: 60%;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #f9f9f9; /* Updated to f9f9f9 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 10px;
    margin-bottom: 0px;
}

.footer .footer-left {
    display: flex;
    flex-direction: column;
}

.footer .footer-left i {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  body {
      font-size: 14px; /* Smaller font size for smaller screens */
  }

  h1 {
      font-size: 30px; /* Adjust heading size */
  }
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 200px;
    }

    .navbar ul.show {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .hero-content, .hero-logo {
        max-width: 100%;
    }

    .about-section {
        flex-direction: column;
    }

    .about-section .left-col, .about-section .right-col {
        width: 100%;
        position: relative;
    }

    .contact-section {
        flex-direction: column;
    }
}

/* Adjust layout for hero, about, and contact sections */
.hero-section, .about-section, .contact-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #f9f9f9;
}

.hero-section .left-col,
.about-section .left-col,
.contact-section .left-col {
    flex: 1;
    max-width: 40%;
    padding-right: 30px;
}

.hero-section .right-col,
.about-section .right-col,
.contact-section .right-col {
    flex: 1;
    max-width: 60%;
    padding-left: 50px;
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .hero-section, .about-section, .contact-section {
        flex-direction: column;
    }

    .hero-section .left-col,
    .about-section .left-col,
    .contact-section .left-col,
    .hero-section .right-col,
    .about-section .right-col,
    .contact-section .right-col {
        width: 100%;
    }
}
