*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

#full{
    background-color: #c2c0bd;
    padding: 20px;
    min-height: 100vh;
    border: solid;
}

nav{
    background-color:#f8cfcf;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2E2E2E;
    font-weight: bold;
    border-style: solid;
    text-shadow: 2px 2px 4px #eb7e7e;
}

nav a{
    color: rgb(22, 22, 20);
}

h2,ul,li{
    display: inline;
    
}

ul {
    display: flex;
    list-style: none;
    gap: 30px; /* This adds space between each li */
    margin-left: 20%;
}

a:hover{
    color: aliceblue;
}

.img {
    background-image: url(https://t4.ftcdn.net/jpg/03/10/26/27/360_F_310262727_laUeq9XnEmT5W8EfFXVtDioU8wVPehGG.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;  /* Ensure full height of viewport */
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: center;
    color: aliceblue;
}

#content {
    background-color: rgba(0, 0, 0, 0.5);  /* Optional: Darken background for text readability */
    color: aliceblue;
    padding: 20px;
    width: 40%;  /* Text takes 40% of the space */
    height: 100%;  /* Full height of image */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center text */
    font-weight: bolder;
}

.btn{
    color: rgb(19, 18, 18);
    background-color: rgb(146, 146, 235);
    border-radius: 6px;
    padding: 1%;

}

.img h3 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #000;
    color: rgb(248, 248, 168);
}

.img h4{
    margin-bottom: 30px;
    
}

.img p{
    font-weight: bold;
    margin-bottom: 30px;
   
}

#content h4, p{
    display: flex;
    color: rgb(227, 238, 241);
    width: 100%;
    font-weight: bolder;
    text-decoration: none;
}
    
.hero{
    padding: 10px;
}

/* Contact Section Styling */
#contact {
    background-color: #ebe6e6;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#contact h1 {
    font-size: 36px;
    color: #c54242;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #aaa;
}

/* Icons container */
#contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual icon styles */
#contact-icons div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(240, 234, 234);
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Specific colors for each icon */
#fb {
    background-color: #3b5998;
}

#insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

#whatsapp {
    background-color: #25D366;
}

/* Hover effect */
#contact-icons div:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#content h3,
#content h4,
#content p {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

#content.show h3,
#content.show h4,
#content.show p {
    opacity: 1;
    transform: translateX(0);
}




  

html {
    scroll-behavior: smooth;
}

#lets-talk {
    display: flex;
    flex-direction: column; /* Align items vertically */
    border: 10px solid #000; /* Solid black border */
    padding: 10px;
    justify-content: center; /* Align items in the center horizontally */
    align-items: center; /* Align items in the center vertically */
}

form {
    width: 100%; /* Make the form take full width */
    max-width: 600px; /* Limit the form width */
}

table {
    width: 100%; /* Make the table take full width */
    margin-bottom: 20px; /* Space below the table */
}

td {
    padding: 10px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049; /* Darker green when hovering */
}

/* Popup Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

#lets-talk {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

form {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-spacing: 0 15px;
}

td {
    padding: 10px 0;
    vertical-align: top;
}

label {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
    color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background-color: #4CAF50;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #45a049;
}

button:hover {
    transform: scale(1.03);
}
input:hover, textarea:hover {
    background-color: #f1f1f1;
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    ul {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        padding: 10px 0;
    }

    .img {
        flex-direction: column;
        height: auto;
        padding: 20px;
        background-position: top;
    }

    #content {
        width: 100%;
        height: auto;
        padding: 20px;
        font-size: 16px;
    }

    .img h3 {
        font-size: 28px;
    }

    .img h4, .img p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 14px;
        margin-top: 10px;
    }

    #contact-icons {
        gap: 15px;
        flex-wrap: wrap;
    }

    #contact-icons div {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .crud h1, .ecom h1 {
        font-size: 24px;
        text-align: center;
    }

    .contact-form form input, .contact-form form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .container {
        flex-direction: column;
    }
}
