@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Mitr:wght@200;300;400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: rgb(250, 250, 250);
}
.topnav{
    background-color: royalblue;
    color: white;
    padding: 8px;
}
.topnav .content{
    margin: 0px auto;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.topnav .content div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.topnav .content img{
    width: 20px;    
}

#navbar {
  width: 100%;
  transition: all 0.3s ease;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white; /* Optional for visibility */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional for effect */
}
nav{      
    box-shadow: 1px 0px 5px grey;
    background-color: white;
    /* background-image: url(siteimg/colorbg.jpg); */
    background-position: bottom;
    color: royalblue;
}
.navdiv{
    margin: 0px auto;
    display: flex;
    max-width: 1300px;
}
.brand{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px;
    background-color: white;
    color: royalblue;
    width: 100%;
    justify-content: space-between;
    margin: 7px;
}
.navdiv img{
    height: 70px;
    background-color: white;
    margin: 7px;
}
.brand a{
    text-decoration: none;
}
.brand h1{
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: royalblue;
}
.brand p{
    letter-spacing: 1.15px;
    font-weight: 300;
    color: royalblue;
}
nav .menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-right: 50px;
}
nav .menu a{
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    min-width: 90px;
    display: block;
    text-align: center;
    color: royalblue;
}
nav .menu a:hover{
    color: crimson;
    font-weight: bold;
}
nav .menu .dropmenu{   
    position: relative;
    display: none;
    z-index: 5;
    box-shadow: 0px 0px 5px black;
    margin-top: 12px;
} 
nav .menu .dropmenu div{
    position: absolute;
    top: 100%;
    right: 0%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;       
}
nav .menu .dropmenu div a{
    padding: 8px;
    min-width: 230px;
    display: block;
    text-align: left;
    color: royalblue;
    background-color: white;
}
nav .menu .dropmenu div a:hover{
    color: crimson;
    border-bottom: 0.5px solid royalblue;    
}
nav .menu .dropmenu div .dropsubmenu{    
    z-index: 8;
    position: relative;
    display: none;
}
nav .menu .dropmenu div .dropsubmenu div{
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 150px;
    right: auto;
    top: -35px;
    box-shadow: 0 0 5px black;
    overflow: hidden;
}

nav .menu .menuitem:hover + .dropmenu{
    display: flex;
}
nav .menu .dropmenu:hover{
    display: flex;
}
nav .menu .dropmenu div a:hover + .dropsubmenu{
    display: flex;
}
nav .menu .dropmenu div .dropsubmenu:hover{
    display: flex;
}
nav .menu .dropmenu div .dropsubmenu div a:hover{
    color: crimson;
    border-bottom: 0.5px solid steelblue;
    box-shadow: 2px 2px 2px grey;
}

nav .mobmenubtn{
    display: none;
}
nav .mobmenubtn button{
    background-color: transparent;
    border: none;
}
nav .mobmenubtn button img{
    height: 45px;
    margin: 0px;
    background-color: transparent;
}
.mobmenu{
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    position: fixed;
    top: 90px;
    left: 0px;
    z-index: 12;
    border-radius: 10px;
    box-shadow: 0 0 5px grey;
    width: 95%;
}
.mobmenu a{
    text-decoration: none;
    display: inline-block;
    padding: 5px;
    color: royalblue;
}
.mobmenu button{
    text-decoration: none;
    display: inline-block;
    padding: 5px;
    color: royalblue;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    text-align: left;
}
.mobmenu .mobdropmenu{
    display: none;
    padding-left: 35px;
    border-radius: 10px;
}
.mobmenu .mobdropmenu div{
    display: flex;
    flex-direction: column;
}
.mobmenu .mobdropmenu div .mobdropsubmenu{
    display: none;
    padding-left: 35px;
    border-radius: 10px;
}

.whatsappchat{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20;    
}
.whatsappchat a img
{
    width: 70px;
}


.carasoul{
    max-height: 60vh;
    position: relative;
    overflow: hidden;
    color: white;
}
.carasoul img{
    width: 100%;
}
.carasoulcontent{
    position: absolute;
    bottom: 0%;
    left: 5%;
    width: 75%;
    opacity: 0;
    
}
.carasoulcontent.in-view{
    animation: moveup 1s linear forwards;
}
@keyframes moveup {
    0%{
        bottom: 0%;
        opacity: 0;
    }
    100%{
        bottom: 15%;
        opacity: 1;
    }
}
.carasoulcontent h1{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 5px black;
}
.carasoulcontent #carasoultitle{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 5px black;
}
.carasoulcontent #carasoulpara{
    font-size: 1.2rem;
}
.carasoulcontent #caracallforaction{
    background-color: crimson;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    color: white;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 5px black;
}
.slider{
    position: absolute;
    top: 50%;
    width: 100VW;
    display: flex;
    justify-content: space-between;
    display: none;
}
.imgabsbtn{    
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #ffbebe8e;
    color: crimson;
    border-radius: 50%;
    padding: 10px 15px;
    margin: 0px 20px;
    border: none;
    box-shadow: 0 0 5px grey;
}
.imgabsbtn:hover{
    background-color: crimson;
    color: white;
}
.carasoul:hover .slider{
    display: flex;
}

.feature{
    position: relative;
    margin: -50px auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    z-index: 4;
    height: 30vh;
    align-content: center;
    padding: 20px;
    margin-bottom: 50px;
}
.feature .indifeat{
    background-color: whitesmoke;
    border-radius: 20px;
    box-shadow: 0 0 5px grey;
    text-align: center;
    padding: 20px;
    height: max-content;
}
.feature .indifeat:hover{
    box-shadow: 0 0 10px black;
    transform: scale(1.05);
}
.indifeat img{
    width: 60px;
    margin-bottom: 20px;
}
.indifeat h3{
    margin-bottom: 20px;
}

.gridservice{
    text-align: center;
    margin: 10px auto;
    max-width: 1200px;
    min-height: 80vh;
    align-content: center;
}
.subtitle{
    margin-bottom: 25px;
    text-align: center;
}
.subtitle h2{    
    font-size: 2rem;
    color: royalblue;
    border-bottom: 1px solid black;
    padding: 2px 25px;
    display: inline-block;
    margin-bottom: 5px;
}
.subtitle h4{
    color: crimson;
}

.gridholder{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-evenly;
    row-gap: 50px;
    margin-bottom: 40px;
}
.gridholder .service{
    overflow: hidden;
    margin: 10px;    
    border-radius: 10px;    
    box-shadow: 0px 0px 5px grey;
    text-align: center;
}
.gridholder .service:hover{
    box-shadow: 0 0 10px grey;
}
.gridholder .service.in-view{
    animation: tilt 1s forwards linear;
}
@keyframes tilt {
    0%{
        transform: rotate(5deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.gridholder .service img{
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
}
.gridholder .service h3{
    margin-bottom: 10px;
}
.gridholder .service p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-wrap: balance;
    padding: 2px 5px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.8rem;
}
.gridservice .gridholder .service a{
    display: block;
    text-decoration: none;
    margin: 10px;
    padding: 5px;
    font-size: 0.9rem;
    border-radius: 10px;
    text-align: right;
    color: crimson;
}
.gridservice .gridholder .service a:hover{
    text-decoration: underline;
}
/* .gridholder .service img{
    height: 70px;
    width: 70px;
    margin: 10px;
    margin-bottom: 20px;
} */

.scrollservice{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}


.scrollservice .scrollholder{
    position: absolute;
    width: 200px;
    height: 250px;
    top: 40%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 30s linear infinite;
    z-index: 2;
}
@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateY(360deg);
    }
}

.scrollservice .scrollholder .service{
    position: absolute;
    inset: 0 0 0 0;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
    background-color: white;
    color: black;
    box-shadow: 0px 0px 5px grey;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    backface-visibility: hidden;
}
.scrollservice .scrollholder .service p{
    font-weight: bold;
}
.scrollservice .scrollholder .service img{
    width: 100%;
    height: 75%;
    object-fit: cover;
}

.scrollservice .scrollholder:hover{
    animation-play-state: paused;
}

.aboutsec{ 
    text-align: center;
}
.aboutsec h3{
    margin-bottom: 25px;
    font-size: 2rem;
    color: royalblue;
    margin-bottom: 15px;
    padding-top: 15px;
    padding: 25px;
}
.aboutsec .abtgrid{
    margin: 20px auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 50% 50%;    
    height: max-content;
}
.aboutsec div{
    position: relative;
}
.aboutsec div img{    
    width: 250px;
}
.aboutsec div p{    
    width: 90%;
}

.map{
    width: 100%;
    box-shadow: 0 0 5px grey;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 20px;
    overflow: hidden;
}

.contact{        
    height: max-content;
    align-content: center;
    position: relative;
    background-color: royalblue;
}
.contact .contactgrid{
    display: flex;    
    margin: 20px auto;
    max-width: 1200px;
    justify-content: space-evenly;
    position: relative;
    z-index: 3;    
}
.conform{
    position: relative;
    text-align: center;
    color: white;
    background-color: whitesmoke;
    padding: 20px 100px;
    border-radius: 20px;
    box-shadow: 0 0 5px grey;
    display: inline-block;
}
.conform h3{
    padding: 10px 10px;
    color: royalblue;
}
.conform input{
    padding: 10px;
    margin: 10px;
    border: none;
    box-shadow: inset 0 0 5px grey;
    border-radius: 8px;
    width: 300px;
}
.conform select{
    padding: 10px;
    margin: 10px;
    border: none;
    box-shadow: inset 0 0 5px grey;
    border-radius: 8px;
    width: 300px;
}
.conform textarea{
    padding: 10px;
    margin: 10px;
    border: none;
    box-shadow: inset 0 0 5px grey;
    border-radius: 8px;
    width: 300px;
    height: 150px;
}
.conform button{
    padding: 10px;
    margin: 10px;
    border: none;
    background-color: royalblue;
    box-shadow: 0 0 5px black;
    border-radius: 8px;
    width: 100px;
    color: white;
    font-weight: bold;
}
.contact .conlinks{
    padding: 10px 15px;
    color: white;
}
.conlinks h3{
    margin-bottom: 15px;
}
.conlinks .linkflex{
    display: flex;
    flex-wrap: wrap;
}
.contact .conlinks a{
    display: inline-block;
    width: 250px;
    text-decoration: none;
    color: white;
    margin-bottom: 8px;
    font-weight: bold;
}
.contact .conlinks a.subhead{
    text-indent: 25px;
}
.contact .conlinks a:hover{
    text-decoration: underline;
}
.contact .con{
    position: relative;
    color: white;
    padding: 10px;
}

.contact .con .flexcon{
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    color: white;
}
.contact .con .flexcon img{
    width: 30px;
    height: 30px;
}
.contact .con .flexcon p{
    font-weight: bold;
}

.social{
    position: fixed;
    top: 50%;
    right: 5px;    
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 5px grey;
    z-index: 11;
}
.social img{
    width: 60px;
    padding: 20px;
    border-radius: 20px;
}
.social img:hover{
    background-color: rgb(214, 214, 214);
}


.serviceheader{
    height: 25vh;
    overflow: hidden;
    position: relative;
    background-image: url(photo/applyemb.webp);
    background-size: cover;
}
.serviceheader img{
    width: 100%;
}
.serviceheader h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 5px black;
    text-align: center;
}
.explain{
    margin: 60px auto;
    max-width: 1200px;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    text-indent: 50px;
    padding: 10px 25px;
}
.portfolio{
    text-align: center;
    margin: 20px auto;
    max-width: 85%;
}
.portfolio h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.portholder{    
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    flex-wrap: wrap;
}
.portholder img{
    width: 47%;
    border-radius: 10px;
}
.portholder img.in-view{
    animation: tilt 1s linear forwards;
}
.portholder img:hover{
        box-shadow: 0 0 5px black;
        scale: 1.05;
    }


.about{
    margin: 60px auto;
    max-width: 1200px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    padding: 10px 50px;
}
.about p{
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.team{    
    text-align: center;
}
.teamhold{
    display: flex;
    grid-template-columns: 32% 32% 32%;
    justify-content: center;
    margin: 40px auto;
    max-width: 95vw;
    flex-wrap: wrap;
    gap: 20px;
}
.teamhold .memb{
    border-radius: 10px;
    overflow: hidden;
    text-align: center;   
    position: relative;
    width: 375px;
}
.teamhold .memb .name{
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.40rem;
    width: 50%;
    position: absolute;
    top: 35px;
    left: 35px;
    text-transform: uppercase;
    text-align: left;
    display: none;
    /* text-shadow: 1px 1px 5px grey; */
}
.teamhold .memb .name span{
    font-size: 0.85rem;
    color: red;
    text-transform: none;
    display: block;
}
.teamhold .memb:hover .name{
    display: block;
}
.teamhold .memb img{
    width: 95%;
    margin: 10px;
    border-radius: 10px;
    background-color: royalblue;
    /* filter: grayscale(1); */
}
.teamhold .memb:hover img{
    box-shadow: 0 0 10px grey;
    /* animation: colorize 0.5s linear forwards; */
}
@keyframes colorize {
    0%{
        filter: grayscale(1);;
    }
    100%{
        filter: grayscale(0)
    }
}

.infra{
    margin: 60px auto;
    max-width: 1300px;
    text-align: center;
}
.infrahold{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    
}
.infrahold img{
    width: 400px;
    border-radius: 20px;
}
.infra img:hover{
    box-shadow: 0 0 5px grey;
}

.conpage{
    text-align: center;
    padding: 30px;
}
.conpage h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.congrid{
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}
.congrid div{
    padding: 20px;
    background-color: whitesmoke;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 0 5px grey;
}
.congrid div img{
    width: 90px;
    margin-bottom: 20px;
}
.congrid div p{
    font-weight: bold;

}
.contact video{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
    /* min-width: 100%; 
    min-height: 100%; */
}

.videocontact{
    position: relative;
    height: max-content;
    background-color: white;
    /* background-image: url(video/rotateprint.mp4); */
}
.videocontact video{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    /* min-width: 100%; 
    min-height: 100%; */
}
.videocontact .links{
    color: royalblue;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.videocontact .links h3{
    font-size: 1.5rem;
}
.videocontact .links a{
    display: block;
    text-decoration: none;
    font-weight: 500;
    text-indent: 20px;
    width: 50%;
}



.indiservice{   
    display: grid;
    grid-template-columns: 50% 50%;
    height: 70vh;
    margin: 20px auto;
    max-width: 1300px;
    position: relative;
    margin-bottom: 60px;
    background-color: rgb(228, 228, 228);
    border-radius: 20px;
}

.indiservice .multipanel{
     position: relative;
     
}
.indiservice .colorpanel{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80%;
    background-color: royalblue;
    padding: 30px;    
    padding-top: 80px;
    color: white;
    z-index: 5;
    border-top-right-radius: 20px;
    transform: translate(-20px, -20px);
    box-shadow: 0 0 5px black;
}
.indiservice .colorpanel h2{
    margin-bottom: 15px;
    font-size: 2rem;
}
.indiservice .colorpanel p{
    width: 75%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-wrap: balance;
    padding: 2px 5px;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.indiservice .colorpanel a{
    margin: 5px;
    padding: 10px;
    background-color: crimson;
    color: white;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
}
.indiservice .colorpanel.right{
    left: auto;
    right: 0px;
    text-align: right;
    border-top-right-radius: 0px;
    border-top-left-radius: 20px;
    transform: translate(20px, -20px);
}
.indiservice .right p{
    text-align: right;
    justify-self: right;
}

.indiservice .multipanel .imgarray{
    position: absolute;
    bottom: 10%;
    left: 0%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    width: 465px;
    overflow: auto;
    scrollbar-width: none;
    scrollbar-color: lightgrey lightgrey;
    flex-direction: row-reverse;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    background-color: rgba(0, 0, 0, 0.150);
}
.indiservice .multipanel .imgarray img{
    width: 135px;
    height: 135px;
    border-radius: 10px;
}
.indiservice .multipanel .right{
    left: auto;
    right: 0%;
    flex-direction: row;
    scrollbar-color: transparent transparent;
}
.indiservice .multipanel .imgarray img:hover{
    box-shadow: 0 0 5px black;
}


.imgservdiv{
    position: relative;
}
.imgservdiv .imgpanel{
    position: absolute;
    bottom: 30px;
    right: -10%;    
    max-width: 90%;
    height: 85%;
    z-index: 6;
    overflow: auto;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    border-radius: 20px;
    box-shadow: 0 0 5px black;
}
.imgservdiv .right{
    right: auto;
    left: -10%;
}
.imgservdiv .imgpanel img{
    height: 100%;
    width: 100%;
}
.imgservdiv .imgpanel img:hover{
    scale: 1.15;
}

.bigimg{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.523);
    z-index: 10;
    display: none;
}
.bigimg img{
    width: 60%;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
}
.bigimg .btnimg{
    position: absolute;
    top: 100px;
    right: 50px;
    padding: 10px;
    font-size: 30px;
    background-color: transparent;
    border: none;
    color: white;
}
.bigimg img:hover{
    scale: 1.15;
}


#lens {
  position: absolute;
  border: 1px solid #000;
  width: 100px;   /* lens size */
  height: 100px;
  opacity: 0.4;
  background: #fff;
  cursor: crosshair;
}

#zoom-result {
  border: 1px solid #000;
  width: 300px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: 800px 800px; /* bigger than original for zoom */
}


@media only screen and (max-width: 1300px){

    .indiservice{
        margin: 20px 20px;
        margin-bottom: 50px;
    }
    .imgservdiv .imgpanel{
        right: 3%;
        bottom: 3%;
        width: 120%;
    }
    .indiservice .colorpanel{
        padding-top: 20px;
        transform: translate(0px, 0px);
    }
    .indiservice .colorpanel p{
        width: 65%;
    }
    .indiservice .multipanel .imgarray{
        bottom: 5%;
        gap: 5px;
    }
    .indiservice .multipanel .imgarray img{
        width: 100px;
        height: 100px;
    }

    .indiservice .colorpanel.right{
        transform: translate(0px, 0px);
    }
    .imgservdiv .imgpanel.right{
        left: 3%;
    }
}




@media only screen and (max-width: 1000px){
    
    .carasoulcontent h1{
        font-size: 2rem;
    }
    .carasoulcontent #carasoultitle{
        font-size: 1.5rem;
    }
    .contact .contactgrid{
        display: flex;
        flex-direction: column-reverse;
        padding-left: 20px;
    }
    .contact .conform{
        text-align: left;
    }
    .teamhold .memb{
        width: 400px;
    }
    .infrahold img{
        width: 360px;
    }
    
    .indiservice{
        overflow: hidden;
    }
    .imgservdiv .imgpanel{
        width: 120%;
        height: 75%;
        max-width: none;
        z-index: 5;
    }
    .indiservice .colorpanel{
        width: 100%;
        padding: 18px;
    }
    .indiservice .colorpanel h2{
        margin-bottom: 8px;
    }
    .indiservice .colorpanel p{
        width: 100%;
    }
    .indiservice .multipanel .imgarray{
        z-index: 6;
        bottom: 5%;
    }
}






@media only screen and (max-width: 880px){
    
    nav .mobmenubtn{
        display: block;
    }
    nav .menu{
        display: none;
    }
    .brand{
        color: white;
        background-color: transparent;
        box-shadow: none;
        padding: 0px;
    }
    .brand img{
        background-color: white;
        /* box-shadow: inset 0 0 5px black; */
    }
    .carasoul{
        height: 40vh;
    }
    .carasoul img{
        width: 100%;
        height: 100%;
    }
    .carasoulcontent{
        width: 85%;
    }
    .carasoulcontent h1{
        font-size: 1.75rem;
    }
    .carasoulcontent #carasoultitle{
        font-size: 1.5rem;
    }

    .gridholder{
        row-gap: 25px;
        grid-template-columns: 48% 48%;
    }

    .aboutsec .abtgrid{
        display: block;
        height: auto;
        padding-bottom: 10px;
    }
    .aboutsec .abtgrid div img{
        position: relative;
        top: 0px;
        left: 0px;
        transform: translate(0px, 0px);
        margin: 10px;
    }
    .aboutsec .abtgrid div p{
        position: relative;
        top: 0px;
        left: 0px;
        transform: translate(0px, 0px);
        margin: 10px;
        font-size: 0.8rem;
        padding: 10px 35px;
    }


    .contact{
        height: auto;
    }
    
    .contactgrid .conform{
        text-align: left;
        margin-bottom: 25px;
    }
    .contactgrid .con .condet{
        position: relative;
        top: 0px;
        left: 0px;
        transform: translate(0px, 0px);
        padding-left: 20px;
    }


    .explain{
        font-size: 1rem;
        padding: 10px 20px;
    }

    .portfolio{
        max-width: 95%;
    }
    .portholder{
        padding: 10px 20px;
        grid-template-columns: 48% 48%;
        justify-content: space-evenly;
    }
    .portholder img{
        width: 95%;
    }
    

    .teamhold .memb{
        width: 500px;
    }
    
}

@media only screen and (max-width: 750px){
    .feature{
        flex-direction: column;
        height: max-content;
        width: 90%;
    }
    .feature .indifeat{
        padding: 12px;
    }
    .indifeat img{
        margin-bottom: 5px;
    }
    .indifeat h3{
        margin-bottom: 10px;
    }
    .slider{
        top: 50%;
        display: flex;
        width: 98vw;
    }
    .slider .imgabsbtn{
        padding: 5px 8px;
        margin: 5px 15px;
        font-size: 1rem;
        background-color: crimson;
        color: white;
    }

    .imgservdiv .imgpanel{
        width: 194%;
    }
    .indiservice .colorpanel{
        z-index: 6;
        padding: 15px;
    }
    .indiservice .colorpanel h2{
        margin-bottom: 5px;
        font-size: 1.5rem;
    }
    .indiservice .multipanel .imgarray img{
        width: 70px;
        height: 70px;
    }
}



@media only screen and (max-width: 600px){
    .conform{
        padding: 20px 50px;
        width: 100%;
    }
    .teamhold .memb{
        width: 95%;
    }
    .infrahold img{
        width: 85%;
    }


    .indiservice{
        display: block;
        box-shadow: 0 0 5px black;
    }
    .indiservice .multipanel{
        position: static;
    }
    .indiservice .imgservdiv{
        position: static;
    }
    .imgservdiv .imgpanel{
        bottom: 0%;
        right: 0%;
        width: 100%;
    }
    .imgservdiv .imgpanel.right{
        left: 0%;
    }
    .imgservdiv .imgpanel img{
        width: 100%;
    }

    .indiservice .multipanel .imgarray{
        bottom: 2%;
    }
}


@media only screen and (max-width: 500px){
    .topnav{
        display: none;
    }
    .navdiv img{
        height: 60px;
    }
    .brand h1{
        font-size: 1.5rem;
    }
    .brand p{
        letter-spacing: -0.5px;
    }
    .whatsappchat a img
    {
        width: 50px;
    }
    .feature{
        width: 90%;
        padding: 0px;
        margin: -20px auto;
        margin-bottom: 50px;
    }

    .carasoulcontent h1{
        font-size: 1.5rem;
    }
    .carasoulcontent #carasoultitle{
        font-size: 1.25rem;
    }
    .carasoulcontent #carasoulpara{
        font-size: 0.8rem;
    }

    .gridholder{
        grid-template-columns: 90%;
    }

    .contact .contactgrid{
        padding-left: 0px;
    }    
    .congrid{
        flex-direction: column;
        align-items: center;
    }
    .contact .conlinks{
        padding: 10px 25px;
    }
    .conform{
        padding: 20px 20px;
    }
    .conform input{
        width: 95%;
    }
    .conform select{
        width: 95%;
    }
    .conform textarea{
        width: 95%;
    }
    .congrid div{
        width: 110%;
    }
    .map{
        width: 90%;
    }

    .portholder img{
        width: 85vw;
    }

    
}


@media only screen and (max-width: 420px){
    .brand{
        justify-content: end;
    }
    .brand .name{
        display: none;
    }
    
}