body, html {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #faf7f7;
    background-color: #000000; 
    line-height: 1.6;
    height: 100%;
    width: 100%;
    overflow: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column; 
    min-height: 100vh; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 1rem 2rem;  
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    margin: 0;
    border-bottom: 2px solid #76c8f1; 
}

header .logo {
    font-size: 2rem;  
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00ffcc; 
    text-shadow: 0 0 8px #00ffcc, 0 0 16px #00ffcc;
    cursor: pointer;
}
header .logo:hover{
    color: #76c8f1; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;  
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff; 
    font-weight: 600;
    font-size: 1rem;  
    transition: color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
    color: #76c8f1; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

main {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 1rem; 
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0); 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); 
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.section {
    padding: 1.5rem; 
    margin: 1.5rem auto; 
    max-width: 100%;
    text-align: center;
    background-color: rgb(10, 9, 9); 
    box-shadow: 0px 4px 10px rgba(225, 212, 212, 0.5); 
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
}

h2 {
    margin-bottom: 0.5rem; 
    font-size: 1.5rem; 
    color: #76c8f1;      border-bottom: 2px solid #76c8f1;
    display: inline-block;
    padding-bottom: 0.25rem;      transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}


header nav ul li a:hover {
    color: #76c8f1;      transform: scale(1.1);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}


main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0); 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); 
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}



#services {
    padding: 40px 20px;
    text-align: center;
    background-color: #0d0d0d;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1fc6cf;
    text-transform: uppercase;
    animation: glow 1.5s infinite alternate;
}


@keyframes glow {
    0% {
        text-shadow: 0 0 5px #4c9eaf, 0 0 10px #4c9eaf, 0 0 20px #4caf50;
    }
    100% {
        text-shadow: 0 0 15px #4c9eaf, 0 0 30px #4caf50, 0 0 45px #4c9eaf;
    }
}



.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-card {
    background-color: #151515;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px rgba(76, 175, 80, 0.6); 
    border-color: #4caf50;
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #4caf50;
    transition: color 0.3s ease;
}

.service-card:hover .icon {
    color: #81c784; 
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #81c784; 
}

.service-card p {
    font-size: 0.9rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #a5d6a7; 
}



    


a {
    text-decoration: none;
    color: #ffffff; 
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    
}

a:hover {
    color: #76c8f1; 
    transform: scale(1.1);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

strong {
    cursor: default;
}

.services-list p {
    font-weight: bold;
    font-size: 1.1rem; 
    color: #ffffffc2; 
    line-height: 1.8;
    transition: color 0.3s ease;
}


.services-list p:hover {
    color: #4093f8; 
    cursor: pointer; 
}

.container, main, .section {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 1rem;
}
@media only screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}


@media screen and (max-width: 768px) {
    header {
        flex-direction: column; 
        align-items: flex-start; 
        padding: 1rem;
    }

    header .logo {
        font-size: 1.5rem;
        margin-bottom: 0.5rem; 
    }

    header nav ul {
        flex-direction: column;          gap: 1rem;          align-items: flex-start;
    }

    header nav ul li a {
        font-size: 0.9rem;      }

    .services-list {
        grid-template-columns: 1fr;          gap: 10px;      }

    .service-card {
        padding: 15px;      }

    h2 {
        font-size: 1.25rem;      }

    p {
        font-size: 0.85rem;      }
}

 @media screen and (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 1rem 1.5rem;      }

    header nav ul {
        gap: 1rem;      }

    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));          gap: 15px;      }

    h2 {
        font-size: 1.5rem;      }

    p {
        font-size: 0.9rem;      }
}

 @media screen and (min-width: 1025px) {
    header {
        padding: 1rem 2rem;      }

    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));      }

    h2 {
        font-size: 2rem;      }

    p {
        font-size: 1rem;      }
}

 @media only screen and (max-width: 768px) {
    body, html {
        font-size: 14px;
        padding: 0;
        margin: 0;
        line-height: 1.4;
        overflow-x: hidden;
    }

    header {
        display: flex;
        justify-content: space-between;          align-items: center;
        position: relative;
        padding: 0.8rem 1rem;
        background-color: #931919;          border-bottom: 2px solid #444;
    }

    .hamburger {
        font-size: 30px;
        cursor: pointer;
        color: #fff;
        position: absolute;
        left: 1rem;          z-index: 100;      }

    .logo {
        margin-left: 3rem;          color: #fff;
        font-size: 2rem;          font-weight: bold;          text-transform: uppercase;          text-shadow: 0px 0px 10px #ffcc00;      }


         header nav ul {
        list-style: none;
        padding: 0;
        position: absolute;
        top: 0;
        left: -100%;          width: 250px;          height: 100vh;          background-color: #931919;          display: flex;
        flex-direction: column;
        align-items: center;          gap: 1.5rem;          transition: left 0.3s ease;          padding-top: 60px;      }

         header nav ul.open {
        left: 0;      }

    header nav ul li {
        text-align: center;      }

    header nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
    }

         .section {
        padding: 1rem;
        margin: 1rem 0;
        width: 100%;
        box-sizing: border-box;
    }
}
