* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: serif;
}

.header1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 10px 10px 10px 10px;
    border-bottom: 1px solid black;
    align-items: center;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.205);
    position: sticky;
    top: 0;
    z-index: 10;
}


/* /// nav menu  start*/

 .othericons {
            display: flex;
            justify-content: space-around; /* Distributes space evenly */
            align-items: center; /* Centers items vertically */
            padding: 10px; /* Padding around the nav */
        }
        
        .navmenu {
            color: #007bff; /* White text color */
            text-decoration: none; /* Remove underline */
            padding: 10px 15px; /* Padding around the links */
            font-family: Arial, sans-serif; /* Font family */
            font-size: 16px; /* Font size */
            transition: background-color 0.3s; /* Smooth transition for background color */
        }
        
        .navmenu:hover {
            background-color: #007bff; /* Background color on hover */
             color: #ffffff; 
        }

        .menu{display: none;}
/* /// nav menu end */



input {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #000000;
}

i {
    cursor: pointer;
    font-size: 25px;
    padding: 5px;
}

i:active {
    transform: scale(0.9);
}

input::placeholder {
    font-size: 18px;
}

button {
    cursor: pointer;
}

button:active {
    transform: scale(0.9);
}

.logo {
    width: 70px
}
.company-name {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 1px;
    color:
        #1d628b;
}


/* //////////////sidebar_menu/////////// */

.sidebar_menu {
    height: 100vh;
    background-color: rgb(26 47 118);
    position: fixed;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10;
    overflow-x: auto;
    color: white;
    z-index: 11;
}

.close {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: end;
    color: red;
}

.sidebar_menu_catogry {
    width: 100%;
    padding: 10px;
}

.sidebar_menu_catogry_names {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.sidebar_menu_catogry_all_names {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: white;
    font-size: 17px;
    letter-spacing: 1px;
    padding: 5px 20px 5px 5px;
    font-family: Arial, Helvetica, sans-serif;
}



.sidebar_menu_catogry_all_names i {
    font-size: 25px;
}

.sidebar_menu_catogry_all_names p {
    font-size: 18px;
}

@media (max-width: 850px) {
    .menu {
            display: block;
        }
.logo {
        width: 60px
    }

    .company-name {
        font-size: 13px;
    }

    .othericons {
        display: none;
    }

    .sidebar_menu {
        width: 80vw;
    }


    .catogry-name>a>p {
        font-size: 13px;
    }

    .text {

        font-size: 17px;

    }

}

/* /// form /// */

.container {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    flex-wrap: wrap;
}

.contact-form-container {
    flex: 1;
    max-width: 400px;
    margin-right: 20px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #b7b2b2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.contact-form-container h2 {
    text-align: center;
    margin-top: 0;
    color: #333;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    height: 100px;
}

.contact-form button {
    padding: 10px 15px;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    letter-spacing: 1px;

}

.contact-form button:hover {
    background-color: #0056b3;
}

.info-container {
    flex: 1;
    max-width: 400px;
}

.info-container h3 {
    margin: 15px 0;
    color: #555;
}

.info-container p,
.info-container a {
    margin: 10px 0;
    color: #555;
}

.info-container a {
    color: #007BFF;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.info-container a:hover {
    text-decoration: underline;
}

.info-container a i {
    margin-right: 8px;
}

.info-container p i {
    margin-right: 8px;
    color: #0014af;
    font-size: 15px;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    font-family: serif;
}

.contact-details-child {
    width: fit-content;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-details-child1 {
    border: 1px solid rgb(255, 255, 255);
    height: fit-content;
    padding: 10px;
}

.contact-details-child1>i {
    font-size: 15px;
}

.sociallinksicon {
    display: flex;
    gap: 15px;
    border: none;
}

.Our-Adress {
    letter-spacing: 2px;
    margin-bottom: 20px;
}




@media (max-width: 600px) {
    .container {
        flex-direction: column;
        padding: 15px;
    }

    .contact-form-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        font-size: 13px;
    }

    .contact-form button {

        font-size: 14px;
    }
}


/* ////// */


/* /////////whatsapp ///// */

.calltoaction {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10009;

}

.calltoaction img {
    display: inline;
    width: 50px;
    /* Adjust the size as needed */
    height: auto;
    width: 50px;
    /* Adjust the initial size as needed */
    height: auto;
    animation: scaleIcon 0.5s ease-in-out infinite alternate;
}



/* Define the keyframes for the whatsapp icon animation */
@keyframes scaleIcon {
    0% {
        transform: scale(0.8);
        /* Start scale */
    }

    100% {
        transform: scale(1);
        /* End scale */
    }
}

/* /////////whatsapp end///// */


/* ///////////////media quries at last//////////////// */

@media (max-width: 850px) {

    .contact-details {
        flex-direction: column;
        gap: 0px;
    }


    .catogry-details {
        font-size: 21px;
    }


}