*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
:root{
    --primary-color: #0A3C91;
    --second-color:#C30C78;
    --third-color:#fff;
    --font-black-color: #222222;
    --primary-font: "Teko", sans-serif;
    --second-font: "Poppins", sans-serif;
}
body{
    /* width: 1400px; */
    overflow-x: hidden;
}
h1,h2,h3,h4,h5{
    font-family: var(--primary-font);
}
p,li,a{
    font-family: "Poppins", sans-serif;
    color: #2e2d2d;
}

.header-column2.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: white; /* or your site background */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.scroll-top-container{
    display: none;
    position: fixed;
    bottom: 40px;
    right: 55px;
    z-index: 9999;
}
.scroll-top-container i{
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
}
.scroll-top-container i:hover{
    background-color: var(--second-color);
}
.section-heading{
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 60px;
}

.header-column1{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    background-color: var(--primary-color);

}
.header-inner-col{
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-info{
    width: 40%;
}
.header-info ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 80%;
}
.header-info ul li a{
    text-decoration: none;
    color:white;
    font-size: 16px;
}
.header-info ul li a i{
    color: white;
    margin-right: 10px;
}
.header-social-icon{
    width: 40%;
    
}
.header-social-icon ol{
    list-style: none;
    display: flex;
   justify-content:center;
   align-items: center;
   gap: 30px;
    
}
.header-social-icon ol li a{
    text-decoration: none;
    color:white;

}
.header-social-icon ol li a i{
    font-size:16px;
    padding: 8px 8px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
}
.header-social-icon ol li a i:hover{
    color: var(--second-color);
}

.header-column2{
    width: 100%;
    padding: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: fixed; */
    /* box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.096); */
}
.header-c2-container{
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: 40%;
}
.header-logo img{
    width: 35%;
}

.header-menu{
    width: 55%;
}
.header-menu ul{
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    transform: translateX(0px);
}
.header-menu ul li a{
    text-decoration: none;
    color: rgb(31, 31, 31);
    font-weight: 500;
}
.header-menu ul li a:hover{
    color: var(--second-color);
}




/* hero banner */
.hero-banner-container{
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.hero-banner-col{
    height: 100%;
    width: 100%;
    position: relative;
}

/* Smooth transition for slides */
.slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    /* border-radius: 30px; */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
}

/* Active slide */
.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Pagination dots */
.pagination-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.pagination-dots span {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}
.pagination-dots span.active {
    background-color: var(--primary-color);
}

.slide-1{
    background: url('../Images/slide1-min.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.slide-1::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #222222bd;
}
.slide-2{
    background: url('../Images/slide2-min.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
/* .slide-2::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #222222bd;
} */
.arrow-btn{
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    opacity: 0;
    transition: background 500ms;
    transition: all 0.3s ease-in-out;
}
.arrow-btn i{
    background-color: rgba(255, 255, 255, 0.918);
    color: rgb(110, 110, 110);
    padding: 11px 13px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}
.arrow-btn i:hover{
    background-color: var(--primary-color);
    color: white;
}
.arrow-btn .fa-angle-left{
    position: absolute;
    left: 25px;
}
.arrow-btn .fa-angle-right{
    position: absolute;
    right: 60px;
}
.hero-banner-col:hover .arrow-btn{
    opacity: 1;
}
.slide-content{
    position: absolute;
    top: 20%;
    left: 5%;
    width: 100%;
    z-index: 4;
}
.slide-content h1{
    font-size: 80px;
    /* font-family: var(--heading-font);
    font-family: "Quicksand", sans-serif; */
    color: var(--third-color);
    letter-spacing: 1px;
    width: 50%;
    display: block;
    padding-bottom: 20px;
    line-height: 1em;
    font-weight: 600;
}
.slide-content p{
    font-size: 18px;
    /* font-family: var(--para-font);
    font-family: "Lato", sans-serif; */
    color: #e7e9e9;
    padding: 30px 0 35px 0 ;
    width: 50%;
}
.slide-content a{
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 6px;
    background-color: var(--second-color);
    color: white;

}

.container2{
    height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c2-col{
    width: 85%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.about-img-col{
    width: 40%;
    height: 100%;
}
.about-img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-image: url('../Images/Founder/Screenshot\ 2025-06-18\ 112450-Photoroom.png');
    background-repeat: no-repeat;
    background-position: center;
    box-shadow:  0 3px 20px 5px rgba(0, 0, 0, 0.096);
    display: flex;
    align-items: end;
    justify-content: left;
    position: relative;
}
.about-img-name{
    background-color: white;
    height: 90px;
    width: 100%;
    margin: auto;
    border-radius: 6px;
    padding:15px;
    position: absolute;
    bottom: 10px;
    left: 0;
    text-align: center;
}
.about-img-name h2{
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 500;
}
.about-img-name p{
    font-size: 16px;
    color: #2e2d2d;
}
.about-cot-col{
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-cot{
    width: 100%;
    height: 95%;
    padding-left: 40px;
}
.about-heading-experience{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}
.about-exp-col{
    position: absolute;
    width: 50%;
    right: -150px;
}
.about-exp-col img{
    width: 60%;
    animation: scalezoom 1s ease-in-out infinite;
    transform:rotateX(10deg);
    transition: all 1s ease;
}

@keyframes scalezoom {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

.about-cot p{
    padding-top: 25px;
}
.about-cot ul{
    list-style-type: none;
    padding-top: 25px;
}
.about-cot ul li{
    line-height: 40px;
    font-size: 16px;
    color: #2e2d2d;
}
.about-cot ul li i{
    color: var(--second-color);
    margin-right: 10px;
    font-size: 12px;
}

.container3{
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    background-image: url('../Images/man-special-suit-polishing-metal-with-angle-grinder.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.container3::after{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    /* background-color: #0a3c91be; */
    background-color: #0f0f0fdc;
}
.c3-col{
    width: 75%;
    height: 70%;
    z-index: 5;
}
.c3-section-heading{
    height: 25%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}
.c3-section-heading .section-heading{
    font-size: 40px;
    color: white;
    line-height: 40px;
}
.c3-section-heading .section-heading span{
    color: var(--second-color);
}
.c3-grid-col{
    height: 50%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding-top: 40px;
}
.c3-grid-list{
    width: 100%;
    height: 100%;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: white;
}
.c3-grid-list i{
    color: var(--second-color);
    padding: 15px;
    background-color: #cecece69;
    border-radius: 50%;
    font-size: 18px;
}
.c3-grid-list h3{
    font-size: 22px;
    color: #222222;
    padding: 10px 0;
    font-weight: 600;
}
.c3-grid-list p{
    font-size: 15px;
}

.container4{
    width: 100%;
    /* height: 1200px; */
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.c4-col{
    height: 80%;
    width: 100%;
    text-align: center;
   
}
.c4-col .section-heading{
    padding-bottom: 40px;
}

.project-img-container{
    width: 100%;
    height: 900px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    
}
.project-grid-list{
    width: 100%;
    height: 100%;
    
    transition: all 0.5s ease;
}
.project-list-1{
    background-image: url('../Images/Projects/project1.jpeg');
    background-position: center;
    background-size: cover;
    position: relative;
}
.project-list-2{
    background-image: url('../Images/Projects/project2.jpeg');
    background-position: center;
    background-size: cover;
     position: relative;
}
.project-list-3{
    background-image: url('../Images/Projects/project3.jpg');
    background-position: center;
    background-size: cover;
     position: relative;
}
.project-list-4{
    background-image: url('../Images/Projects/project4.webp');
    background-position: center;
    background-size: cover;
     position: relative;
}
.project-list-5{
    grid-column: 2/4;
    background-image: url('../Images/Projects/skylight-9-1.jpg');
    background-position: center;
    background-size: cover;
     position: relative;
}
.project-overlay-div{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #1b1b1be7;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.project-grid-list:hover .project-overlay-div{
    opacity: 1;
}
.project-name{
    z-index: 5;
    position: relative;
    color: white;
}
.project-name h3{
    color: white;
    font-size: 30px;
    font-family: var(--second-font);
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    font-weight: 500;
    text-transform: capitalize;
}
.project-grid-list:hover .project-overlay-div .project-name h3{
    opacity: 1;
    transform: translateY(0px);
}

.container5{
    height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.c5-col{
    width: 85%;
    height: 100%;
    
}
.c5-inner-col{
    width: 100%;
    height: 90%;

}
.services-heading{
    width: 100%;
    text-align: center;
    padding-bottom: 35px;
}
.services-heading p{
    font-size: 15px;
    font-weight: 500;
}
.service-c2{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.s1-col{
    width: 100%;
    height: 100%;
    margin: auto;
    
}
.s1-col1{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}
.s1-row{
    width: 68%;
    height: 100%;
  
}
.s1-row1{
    width: 32%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.s1-cot{
    width: 100%;
    height: 90px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(233, 233, 233);
    padding: 0 25px 0 25px;
    cursor: pointer;
}
.s1-cot h2{
    font-size: 23px;
    font-weight: 500;
}
.s1-cot a, i{
    font-size: 12px;
    color: white;
}

.s1-row2-cot{
    height: 100%;
    width: 100%;
   
}
.s1-img{
    width: 100%;
    height: 60%;
   
}
.s1-img img{
    width: 100%;
    height: 100%;
}
.s1-content{
    
    width: 100%;
    height: 45%;
}
.s1-content h3{
    padding: 30px 0 10px 0;
    font-weight:600;
    font-size: 24px;
    color: #1a1a1a;
}
.s1-content p{
    color: var(--para-color);
    line-height: 32px;
    font-size: 15px;
}
.s1-content p:nth-child(3){
    padding: 25px 0 0 0;
}

.s1-cot.active {
    color: white;
}
 .s1-row2-cot2, .s1-row2-cot3, .s1-row2-cot4, .s1-row2-cot5{
    display: none;
}

.container6{
    height:1400px;
    width: 100%;
    padding: 40px 0 40px 0;
    border-top: 1px solid #d8d8d8;
    
}
.c6-col{
    width: 85%;
    height: 80%;
    margin: auto;
}
.c6-inner-col{
    width: 100%;
    height: 100%;
    text-align: center;
}
.c6-grid-col{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    /* grid-template-rows: repeat(3,1fr); */
    padding-top: 30px;
    gap: 20px 20px;
}
.c6-grid-list{
    width: 100%;
    height: 250px;
    border: 1px solid #444444;
    padding: 5px;
    border-radius: 5px;

}
.c6-grid-list img{
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.container7{
    height: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}
.c7-col{
    height: 85%;
    width: 85%;
}
.c7-first-col{
    height: 75%;
    width: 100%;
   
}
.c7-first-inner-col{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}
.c7-form-col{
    width: 50%;
    height: 100%;
}
.c7-form-col form .section-heading{
    color: white;
}
.c7-form-col form {
    position: relative;
}
.form-field-hide{
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 75px;
    width: 100%;
    background-color: white;
    z-index: 999000;
}
.form-input-col{
    padding: 30px 0;
}
.form-input-inner-col{
    width: 100%;
    display: flex;
    gap: 30px;
}
.form-input-flex-box{
    width: 50%;
}
input{
    width: 100%;
    padding: 10px;
    margin-bottom: 80px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0px;
    font-family: var(--second-font);
    color: white;
    transition: all .3s ease-in-out;
}
input:hover{
    background-color: white;
    color: #222222;
}
input::placeholder{
    color: #ddd;
    font-family: var(--second-font);
}
input:focus{
    outline: none;
    background-color: white;
     color: #222222;
}
input:hover::placeholder{
    color: #222222;
}
select{
     width: 100%;
    padding: 10px;
    margin-bottom: 80px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0px;
    font-family: var(--second-font);
    color: white;
    transition: all .3s ease-in-out;
}
select:hover{
      background-color: white;
      color: #222222;
}
select option{
    color: #161515;
    font-family: var(--second-font);
}
select:focus{
    outline: none;
     color: #222222;
}
textarea{
    width: 100%;
    height:120px;
    padding: 10px;
    margin-bottom: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0px;
    font-family: var(--second-font);
    color: white;
    transition: all .3s ease-in-out;
}
textarea::placeholder{
    color: #ddd;
    font-family: var(--second-font);
}
textarea:focus{
    outline: none;
    background-color: white;
    color: #222222;
}
textarea:hover{
    background-color: white;
    color: #222222;
}
textarea:hover::placeholder{
    color: #222222;
}
.form-input-col .form-btn{
    padding: 10px 30px;
    background-color: var(--second-color);
    color: white;
    border-radius: 6px;
    border: none;
    font-family: var(--second-font);
    cursor: pointer;
    font-weight: 500;
}
.form-input-col .form-btn:hover{
    background-color: white;
    color: #222222;
}

.c7-address-col{
    width: 50%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: right;
}
.c7-address-inner-col{
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 20px;
}
.c7-address-flex-box{
    height: 85%;
    width: 85%;
}
.c7-address-info h3{
    font-size:26px;
    color: #313131;
    padding-bottom: 25px;
    font-family: var(--second-font);
}
.c7-address-info  i{
    font-size: 25px;
    color: var(--second-color);
    margin-right: 15px;
}
.c7-address-info ul{
    list-style-type: none;
    padding-bottom: 30px;
    
}
.c7-address-info ul li a{
    text-decoration: none;
   font-size:26px;
     color: #313131;
    font-weight: 600;
}
/* .c7-address-info ul li a i{
   font-size: 25px;
    color: var(--second-color);
    margin-right: 15px;
} */
.c7-address-map{
    width: 100%;
    height: 320px;
}
.c7-address-map iframe{
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.c7-second-col{
    height: 20%;
    width: 100%;
   

}
.c7-second-inner-col{
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.c7-copyright-flex-box{
    width: 33%;
}
.c7-copyright-flex-box p{
    color:white;
    font-size:14px;
    font-weight:500;

}
/* .c7-copyright-flex-box p span a img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin:0 10px;
}
.c7-copyright-flex-box p span a{
    font-weight: 600;
    color:white;
    text-decoration: none;
} */

.c7-footer-logo{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c7-footer-logo img{
    width: 100%;
    height: 70%;
    border-radius:10px;
}
.c7-footer-social-link{
    width: 33%;
    height: 100%;
    align-items: center;
    justify-content: right;
    display: flex;
}
.c7-footer-social-link ol{
    display: flex;
    list-style-type: none;
    gap: 30px;
}

.c7-footer-social-link ol li a{
    text-decoration: none;
    color:white;

}
.c7-footer-social-link ol li a i{
    font-size:16px;
    padding: 10px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
}
.c7-footer-social-link ol li a i:hover{
    color: var(--second-color);
}

.c7-third-col{
    height: 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #d6d6d628;
    padding-top: 30px;
}
.c7-third-col p{
    color:white;
    font-size:15px;
    font-weight:500;
}
.c7-third-col p span a img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin:20px  10px 0 10px;
    
}
.c7-third-col p span a{
    font-weight: 600;
    color:white;
    text-decoration: none;
}

.mobile-menu{
    display:none;
}

.whatsapp-integrate{
    position: fixed;
    bottom: 30px;
    left:30px;
    z-index: 99999;
}
.whatsapp-integrate a img{
    width: 60px;
    color: #091fa0;
}

.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    color: #155724;
    background-color: white;
    border-radius: 5px;
    font-family: var(--second-font);
}


/* Base CSS (unchanged) */
/* ...your existing CSS remains here... */

/* Responsive CSS */

@media screen and (max-width:600px) {
    
    *{
       box-sizing: border-box;
       
    }
    html,body{
       overflow-x: hidden;
       max-width: 100%;
       
    }
    .whatsapp-integrate{
        left: 10px;
    }
    .scroll-top-container{
        right: 10px;
    }
    .section-heading{
        font-size: 36px;
    }
    .header-column1{
        display: none;
    }
    .header-column2{
        width: 100%;
    }
    .header-c2-container{
        width: 98%;
        /* flex-direction: column; */
    }
    .header-logo{
        width:50%;
    }
    .header-logo img{
        width: 70%;
    }
    .header-menu{
        width:50%;
    }
    .header-menu ul{
        flex-direction: column;
        position: absolute;
        top: 0;
        left:0;
        background-color: rgb(255, 255, 255);
        color: var(--secondary-color);
        height: 100vh;
        width: 60%;
        max-width: 100vw;
        overflow-x: hidden;
        position: fixed;
        text-align: left;
        justify-content: start;
        padding: 80px 25px;
        transform: translateX(-600px);
        z-index: 999;
        transition: transform 0.6s ease-in-out;
    }

    .mobile-menu{
        
        /* width: 100%; */
        text-align: right;
        padding-right: 30px;
        display: block;
        display: flex;
        justify-content: right;
        
    }
    .mobile-menu i{
        font-size: 24px;
        color: white;
        /* border: 1px solid var(--primary-color); */
        padding: 15px;
        border-radius: 50%;
        background-color: var(--primary-color);
        cursor: pointer;
        /* width: 60px;
        height: 60px;
        text-align: center; */
    }

    .hero-banner-container{
        height: 500px;
        width: 100%;
        /* padding-bottom: 40px; */
    }
    .arrow-btn{
        display: none;
    }
    .slide-content{
        top:25%;
    }
    .slide-content h1{
        font-size: 40px;
        width:90%;
    }
    .slide-content p{
        width: 95%;
        font-size: 16px;
    }
    .container2{
        height: 1100px;
        width: 100%;
    }
    .c2-col{
        height:90%;
        width: 98%;
        flex-direction: column;
    }
    .about-img-col{
        width: 100%;
    }
    .about-cot-col{
        width: 100%;
    }
    .about-exp-col{
        right: -80px;
        top: -60px;
    }
    .about-exp-col img{
        width: 40%;
    }
    .container3{
        height: 1300px;
        width: 100%;

    }
    .c3-col{
        height: 90%;
        width: 100%;
       
    }
    .c3-section-heading{
        height: 15%;
    }
    .c3-section-heading .section-heading{
        font-size: 36px;
    }
    .c3-grid-col{
        
        justify-content: center;
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: auto;
    }
    .c3-grid-list{
        width: 80%;
         margin: 0 auto;
    }

    .container4{
        height: 1900px;
        width: 100%;
        padding: 0;
       
       
    }
    .c4-col{
        height: 93%;
        width: 100%;
       
    }
    .project-img-container{
        height: auto;
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    .project-grid-list{
         width: 100%;
         height: 300px !important;
        /* aspect-ratio: 1 / 1; */
    }
    .project-list-5{
        grid-column: auto; 
    }
    .container5{
        height: 1200px;
        width: 100%;
       
    }
    .c5-col{
        height: 100%;
        width: 95%;
    }
    .c5-inner-col{
        height: 100%;
        width: 100%;
    }
    .s1-col1{
    flex-direction: column;
    gap: 20px;
   
    height: max-content;
   }
   .s1-row{
    width: 100%;
   }
   .s1-cot{
    width: 100%;
   }
   .s1-cot h2{
    font-size: 20px;
   }
   .container6{
    height: 1700px;
    width: 100%;
   }
   .c6-col{
    height: 95%;
    width: 95%;
   }
   .c6-inner-col{
    height: 100%;
    width: 100%;
   }
   .c6-grid-col{
    height: 100%;
    width: 100%;
    margin: auto;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
   }
   .c6-grid-list{
    height: 180px;
   }
   .container7{
    height: 1800px;
    width: 100%;
   }
   .c7-col{
    height: 90%;
    width: 90%;
    
   }
   .c7-first-col{
    height: 75%;
    width: 100%;
   
   }
   .form-input-inner-col{
    flex-direction: column;
    gap: 25px;
   }
   .form-input-flex-box{
    width: 100%;
    
   }
   input , select{
    margin-bottom: 30px;
   }
   .c7-address-flex-box{
    width: 90%;
    height: 90%;
    
   }
   .c7-first-inner-col{
    flex-direction: column;
    
   }
   .c7-form-col{
    width: 100%;
    height: max-content;
    
   }
   .c7-address-col{
    width: 100%;
    height: 500px;
    justify-content: center;
   }
   .c7-address-info h3{
    font-size: 22px;
    padding-bottom: 10px;
   }
   .c7-address-info ul li a{
    font-size: 22px;
   }
   .c7-address-info i{
    font-size: 18px;
   }
   .c7-address-map {
    width: 100%;
    height: 230px;
   }
    .c7-address-map iframe{
        border-radius: 10px;
    }
    .c7-second-col{
        height: 20%;
      
    }
    .c7-second-inner-col{
        flex-direction: column;
        height: 100%;
        gap: 30px;
    }
    .c7-copyright-flex-box{
        width: 100%;
        height: 30%;
    }
    .c7-footer-logo{
        width: 100%;
        height: 50%;
    }
    .c7-footer-logo img{
        width: 60%;
        height: 100%;
    }
    .c7-footer-social-link{
        width: 100%;
        justify-content: center;
    }
    .c7-third-col{
        height: 5%;
        justify-content: center;
       
    }
    .c7-third-col p{
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 25px;
    }


}