* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Raleway", sans-serif;
}

body {
    background-color: white;
    padding-top: 50px;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #a5b5b5;
    clip-path: polygon(141% 0%, 26% 71%, 0 59%, -1% 0);
    z-index: 0;
}

nav {
    background-color: #a5b5b5;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    top: 0px;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    border-bottom: 2px solid white;
}

/* New styles for hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    /* padding: 0.5rem; */
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #a5b5b5;
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hamburger animation classes */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.logoSection{
    display: flex
    ;
        align-items: center;
        margin: 30px;
        padding: 30px;
        border-radius: 20px;
        background-color: #818b8b42;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.logo{
    text-align: center;
}

.intro{
    padding: 0 50px;
}

.logoSection2{
    display: none;
}

.founderSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px ;
    padding: 30px;
    border-radius: 20px;
    background-color: #818b8b42;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.founder {
    text-align: center;
}

.founderInfo {
    padding: 0 50px;
}

.founderSection2{
    display: none;
}

.motiveSection {
    display: flex;
    align-items: center;
    margin: 30px ;
    padding: 30px;
    border-radius: 20px;
    background-color: #818b8b42;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.motive {
    text-align: center;
}

.motiveInfo {
    padding: 0 50px;
}

.motiveSection2{
    display: none;
}

.JoinAllToolsSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px ;
    padding: 30px;
    border-radius: 20px;
    background-color: #818b8b42;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.joinAlltools {
    text-align: center;
}

.joinInfo {
    padding: 0 50px;
}

.JoinAllToolsSection2{
    display: none;
}

.typing-paragraph{
   
    text-align: left;
    margin: 10px;
}

h2{
   
    margin: 10px;
}

.contactUsSection{
    display: flex;
    align-items: center;
    margin: 30px ;
    padding: 30px;
    border-radius: 20px;
    background-color: #818b8b42;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.contactusimg{
    text-align: center;
}

.contactUsInfo{
    padding: 0 50px;
}

.contactUsSection2{
    display: none;
}


.red{
    color: #ff0000;
}

.click-here-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00B4D8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.click-here-btn:hover {
    background-color: #0096B3;
}

  /* footer */
  .footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
    position: relative;
    width: 100%;
    bottom: 0;
}

.footer-text {
    margin: 0;
}

@media (max-width: 500px) {
    .footer {
        font-size: 10px;
    }
}

.fade-in-image {
    opacity: 0;
    transition: opacity 3s; 
    width: 250px;
  }
  

  @media screen and (max-width: 600px) {
    body {
        min-height: 100vh; /* Ensure body takes at least full viewport height */
        display: flex;
        flex-direction: column;
    }

    .footer {
        font-size: 10px;
        margin-top: auto; /* Push footer to bottom if content is short */
    }

    .header {
        padding: 0 10px;
    }

    .menu a {
        font-size: 15px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    }

    .menu a:hover {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    #name {
        font-size: 10px;
    }

    #aboutUs {
        font-size: 10px;
    }


    .logoSection {
        display: none;
    }

    .logoSection2 {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 30px;
        background-color: #a5b5b566;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }
    
    .intro {
        padding: 0 30px;
    }

    .founderSection {
        display: none;
    }

    .founderSection2 {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 30px;
        background-color: #a5b5b566;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    .founderInfo {
        padding: 0 30px;
    }

    .motiveSection {
        display: none;
    }

    .motiveSection2 {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 30px;
        background-color: #a5b5b566;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    .motiveInfo {
        padding: 0 30px;
    }

    .JoinAllToolsSection {
        display: none;
    }

    .JoinAllToolsSection2 {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 30px;
        background-color: #a5b5b566;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    .joinInfo {
        padding: 0 30px;
    }

    .contactUsSection {
        display: none;
    }

    .contactUsSection2 {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 30px;
        background-color: #a5b5b566;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    .contactUsInfo {
        padding: 0 30px;
    }

    .fade-in-image {
        width: 100px;
    }

    .typing-paragraph{
        font-size: 12px;
        text-align: left;
        margin: 10px;
    }
    
    h2{
       
        font-size: 20px;
        margin: 10px;
        font-weight: 800;
    }

    h3{
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
    }
}  