* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    background: #000000;
    height: 100vh;
    background-image: url('img/image.png');
    background-repeat: repeat;
    background-position-y: center;
}
/*
.ellipse {
    position: absolute;
    top: -200px;
    background: linear-gradient(90deg, #0DC757 80px, #0E7BF8 100%, rgba(14, 123, 240, 0.036) 100%);
    border-radius: 50%;
    filter: blur(358.82px);
    height:65%;
    width: 50%;
    left: 50%;
    margin-left: -350px;
    z-index: 95;
}*/
.navbar {
    z-index: 96;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #000000;
    background-image: url("img/image.png");
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    margin: auto auto;
    padding: 20px 100px;
}

.navbar_logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.navbar_logo img {
    width: 180px;
    height: auto;
}

.navbar_menu {
    margin-top: 15px;
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    border-width: 1px;
    height: 27px;
    border-radius: 896px;
    padding: 8px;
    box-shadow: 0px 0px 100px .5px rgba(255, 255, 255, 0.251);
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar_items {
    height: auto;
    font-size: 17px;
    letter-spacing: 0.2px;
}

.navbar_links {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    font-weight: 500;
}

.navbar_links:hover {
    font-weight: bolder;
    letter-spacing: 1px;
    color: #81B25A;
}
.p:hover{
    font-weight: bolder;
    letter-spacing: 1px;
    color: #81B25A;
}
@media screen and (max-width: 1200px) {
    .navbar {
        height: 120px;
    }

    .navbar_container {
        display: flex;
        height: 60px;
        justify-content: space-between;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar_menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
        background-color: transparent; /* Remove background color */
        box-shadow: none; /* Remove box shadow */
        border-radius: 0%;

    }
    .navbar.active{
        background: #000000e7;
    }
    .navbar_menu.active {
        background: #000000e7;
        top: 115%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.2rem;
    }

    .navbar_logo {
        padding-left: 10%;
        align-items: center;
    }

    .navbar_logo img {
        width: 180px;
        height: auto;
    }

    .navbar_toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: hsl(0, 0%, 100%);
    }

    .navbar_items {
        width: 100%;
        height: 50px;
    }

    .navbar_links {
        color: #ffffff;
        text-align: center;
        width: 100%;
        display: table;
        background-color: transparent; /* Remove background color */
        box-shadow: none; /* Remove box shadow */
    }

    #mobile_menu {
        position: absolute;
        top: 35%;
        right: 10%;
        transform: translate(5%, 20%);
    }

    .navbar_toggle .bar {
        display: block;

        cursor: pointer;
    }

    #mobile_menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile_menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile_menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

.content{
   padding-top: 150px;
}
/*home*/
.home{
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.working,
.services,
.awards,
.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:120px 0;
}
.working{
    margin-top: 50px;
}

.heading{
    align-items: center;
}

.heading h1 {
    margin-top:40px;
    padding: 0 5%;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    line-height: 130%;
    margin-bottom:10px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgb(255, 255, 255,1) 100%); 
    -webkit-background-clip: text; /* For webkit browsers like Chrome and Safari */
    color:transparent;
    background-clip: text;
}

.heading p {
    text-align: center;
    font-size: 17px;
    color: rgba(214, 214, 214, 0.97);
    line-height: 35px;
    width: 60%;
    margin: 20px auto;
    letter-spacing: 0.8px;
}
.work {
    display: flex;
    justify-content: space-between; /* Distribute items evenly */
    text-align: center;
    list-style: none;
    padding: 10px 0;
    color: white;
    margin: 0 auto;
    flex-wrap: wrap;
}

.work-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%; /* Set maximum width for each item */
    margin-right: 20px; /* Add right margin to all items */
}

.work-item:last-child {
    margin-right: 0; /* Remove right margin for the last item */
}

.work-image {
    height: 25.86px;
    width: auto; /* Ensures aspect ratio is maintained */
    margin-right: 0;
}
        
.work-item:nth-child(2) .work-image {
    height: 18.15px;
}

.work-item:nth-child(3) .work-image {
    height: 18.84px;
}
.work li {
    margin-left: 10px;
    text-align: left;
    font-weight:400;
}
.button_row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.askbutton,
.faqbutton {
    display: flex;
    cursor: pointer;
    align-items: center;
    background-color: #81B25A;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 43.06px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-align: right;
    border: none;
    box-shadow: 0 4px 32.9px 0 #82b25a51, 0 0 120px 0 rgba(0, 0, 0, 0);
}
.asking_button{
    margin-right: 10px;
}
.askbutton:hover{
    letter-spacing: 1px;
    box-shadow: 0 4px 32.9px 0 #82b25a72, 0 0 120px 0 rgba(0, 0, 0, 0);
}
.faqbutton:hover{
    letter-spacing: 1.5px;
    box-shadow: 0 4px 32.9px 0 #80fc1a2d, 0 0 120px 0 rgba(0, 0, 0, 0);
}
.faqbutton img:hover{
    box-shadow: none;
}
.askbutton img{
    height: 32px;
    width:30px; /* Ensures aspect ratio is maintained */
    margin:0;
    padding: 0px 8px;
    border-radius: 10px;
}
.faqbutton {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 32.8px 0 rgba(129, 178, 90, 0.25);
    color: #81B25A;
    padding:4px 20px;
    
}
.faqbutton img {
    box-shadow: none; 
    background: none;
    height: 22.53px;
    width: auto;
    padding: 8px;
    border-radius: 0;
}
.work li, .askbutton span, .faqbutton span {
    display: inline-block;
    vertical-align: middle;
}
.working_content,
.services,
.awards,
.contact{
    text-align: center;
    color: white;
    margin-bottom: 30px;
}
.working_content h1,
.services h1,
.awards h1,
.contact h1{
    margin: 0;
    font-size: 48px;
    text-shadow: 0 4px 26.8px rgba(73, 170, 35, 0.885);

}
.working_content p,
.services p,
.awards p {
    margin: 15px 50px;
    color: rgba(214, 214, 214, 0.97);
    line-height: 25px;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 650px) {
    .home {
        margin-top: 100px;
    }
    .content{
        padding: 0%;
    }
    .heading {
        text-align:center;
        max-width: 95%;
        
    }

    .heading h1{
        font-size: 35px;
    }    

    .heading p {
        width: 82%; /* Set width to 100% */
        font-size:13px;
        text-align: center;
    }
    .awards,.contact{
        margin-bottom: 0;
    }
    .work {
        flex-direction: row;
        max-width: 80%;
        justify-content: center;
        align-items: center;
    }

    .work-item {
        max-width: 100%; /* Set maximum width */
        margin-bottom: 15px;
    }

    .work-image {
        margin: 0 10px;
    }

    .work li {
        margin-left: 0;
        margin-top: 5px;
        text-align: center;
        font-size: 14px;
    }

    .button_row {
        flex-direction: row;
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
        max-width: 75%; /* Set maximum width */
        margin: 0 auto; /* Center horizontally */
    }

    .askbutton,
    .faqbutton {
        padding: 8px 12px;
    }

    .askbutton img,
    .faqbutton img {
        height: 24px;
        width: auto;
        padding: 0;
        margin-right: 5px;
    }

    .askbutton span,
    .faqbutton span {
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
    }
}

/*video */
.working_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left) */
    max-width: 65%;
    justify-content: center;
    margin: auto;
}

.working h1 {
    text-align: left;
    margin: 0;
    margin-bottom: 10px;
}

.working p {
    text-align: right; /* Align the paragraph to the right */
    margin: 0;
}
.page1-bg img {
    height: auto;
    width: 80%; /* Set the width to 80% of the screen */
    max-width: none; /* Remove the maximum width */
    display: block;
    margin: 10px auto;
    box-shadow: 0 4px 48.5px rgba(205, 255, 164, 0.2);
}
/* Media query for smaller screens */
@media screen and (min-width: 650px) {
    .working_content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .working h1 {
        margin-right: 40px;
    }

    .working p {
        text-align: right;
        margin-left: auto; /* Push the paragraph to the right */
    }
    
}
@media screen and (max-width: 650px) {
    .working_content {
        align-items: center;
    }
    .services, .working{
        margin-top:10px;
        padding-bottom:0;
    }

    .working h1,.services h1,
    .awards h1,
    .contact h1{
        font-size: 28px;
        text-align: center;
    }

    .working p,.services p,
    .awards p {
        text-align: center;
        font-size: 13px;
    }
    
}

.cards_container {
    margin: 10px auto; /* Center the container */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    position: relative;
    width: 180px;
    height: 250px;
    margin: 20px;
    border-radius: 1.25rem;
    filter: drop-shadow(0px 4px 35px rgba(0, 0, 0, 0.25));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom right, rgba(187, 254, 133, 0.58), rgba(187, 255, 133, 0.97));
    transition: all 0.5s ease;
}

.card_img {
    width: 25px;
    height: 27px;
    margin: 0 auto;
    display: block;
}

.card_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 80%;
    height: 80%;
    padding: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}
.card_name {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-top: 10px;
}

.card:hover {
    cursor: pointer;
    transform: scale(1.05);
    letter-spacing: 0.9px;
    box-shadow: 0px 4px 48.5px rgba(108, 194, 37, 0.67);
}

@media screen and (min-width: 1150px) {

        .card2,
        .card4 {
            margin-top: 100px;
        }

        .card-n {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--textclr, #ffffff);
        }

}

/*awards*/
.caa, .wbl, .iaa, .ficci, .ficcipic, .wcerti, .msme, .award1 {
    position: relative;
    /*margin: 12px;
    width: 146px;
    height: 89px;
    */
    border-radius: 10px; 
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 48.5px rgba(205, 255, 164, 0.371);
}
.caaimg, .wblimg, .iaaimg, .ficciimg, .ficcipicimg, .wcertiimg, .msmeimg, .awardimg {
   /* width: 129px;
    height: 78px;*/
    object-fit:cover;
    border-radius: 10px; 
}
@media screen and (max-width: 949px) {
    .awardcards {
      flex-direction: column;
      justify-content: center;
      
    }
    .awardcard{
        margin-top: 20px;
    }
    .column {
      max-width: 100%;
      display: flex; /* Ensure contents inside .column are laid out horizontally */
      flex-direction: row;
      justify-content: center;
    } 
    .caa, .wbl, .iaa, .ficci, .ficcipic, .wcerti, .msme, .award1 {
        margin: 5px;
        width: 85px;
        height: 45px;
        box-shadow: 0 4px 48.5px rgba(205, 255, 164, 0.303);
    }

    .caaimg, .wblimg, .iaaimg, .ficciimg, .ficcipicimg, .wcertiimg, .msmeimg, .awardimg {
        width: 80px;
        height:40px;
    }
    .caa:hover, .wbl:hover, .iaa:hover, .ficci:hover, .ficcipic:hover, .wcerti:hover, .msme:hover, .award1:hover {
        width: 87px;
        height: 47px;
        box-shadow: 0 4px 20px rgba(21, 225, 147, 0.684)
    }

}
@media screen and (min-width: 950px){
.awardcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
    padding: 0;
}
.awardcards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    width: 146px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.caa:hover,
.wbl:hover,
.iaa:hover,
.ficci:hover,
.ficcipic:hover,
.wcerti:hover,
.msme:hover,
.award1:hover {
    width: 152px;
    height: 93px;
    box-shadow: 0 4px 20px rgba(21, 225, 147, 0.684)
}
.caa,
.wbl,
.iaa,
.ficci,
.ficcipic,
.wcerti,
.msme,
.award1 {           
    margin: 12px;
    width: 146px;
    height: 89px;
}
.page1-award1 {
    margin-top: 20px;
}
.caaimg,
.wblimg,
.iaaimg,
.ficciimg,
.ficcipicimg,
.wcertiimg,
.msmeimg,
.awardimg {
    width: 129px;
    height: 78px;
}

}

/*contact*/

.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 70%;
    justify-content: space-between;
}

.contact_content h1 {
    font-weight: bold;
    font-size: 45px;
    color: #ffffff;
    width: calc(50% - 5px);
    text-align: left;
    margin-right: 10px;
}

.contactbutton {
    height: 45px;
    width: 140;
    background-color: #81B25A;
    color: #ffffff;
    padding: 14.35px 21.53px;
    border-radius: 43.06px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-align: center;
    border: none;
    box-shadow: 0 4px 32.9px 0 #82b25a9c, 0 0 120px 0 rgba(162, 162, 162, 0.216);
}

.contactbutton:hover{
    letter-spacing: 1px;
    box-shadow: 0 4px 32.9px 0 #82b25a72, 0 0 120px 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 650px) {
    .contact_content {
        flex-direction: column;
        max-width: 80%;
    }

    .contact_content h1 {
        font-size: 23px;
        width: 100%;
        text-align: center;
    }

    .contactbutton {
        width: 100px;
        height: 34px; /* Adjusted to original height */
        font-size: 13px;
        padding: 0;
        margin-top: 10px; /* Added margin for spacing */
    }
    .awards, .contact{
        padding-top: 10px;
    }
}

/*Footer*/


.footer{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: row wrap;
    gap:15%;
    position: relative;
    background:rgb(255, 255, 255);
    padding:25px;
    letter-spacing: 0.33px;
    line-height:25px;
}

.contact_tab {
    display: flex;
    flex-direction: column;
    color: #2f2d2d;
    font-size: 14px;
    text-align: justify;
}

.address, .mail, .phone {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.address img,
.mail img,
.phone img {
    justify-content: center;
    margin-right: 30px;
    border-radius:2px;
}

.address img {
    width: 24px;
    height: 25px;
    border-radius: 2px;
    padding-left: 2px;
}
.mail img {
    width: 24px;
    height: 20px;
    padding-left: 2.5px;
    flex-shrink: 0;
}
.contactlogo {
    width:260px;
    height: 100px; /* Maintain aspect ratio */
}
.phone img {
    width: 30px;
    height: 28px;
}
.company,
.contact_tab-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.map-contact_tab {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Add margin to bring the map down */
}

.map-contact_tab iframe {
    border-radius: 5px;
    width: 500px; /* Adjusted to occupy full width */
    height: 230px; /* Set the desired height */
    max-width: 320px; /* Added max-width to maintain responsiveness */
    aspect-ratio: 1/1;
}

@media screen and (max-width: 800px) {
    .footer{
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        align-items: center;
        padding: 8% 5%;
    }

    .contact_tab-details{
        width: unset;
        gap: 20px;
        padding-left: 8%;
    }

    .map-contact_tab{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .map-contact_tab iframe{
        border-radius: 5px;
        width: 80%;
        aspect-ratio: 1/1;
    }
}

