/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 25-Oct-2023, 5:16:37 pm
    Author     : nisitkumar
*/
*{
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
}
@font-face {
    font-family: 'hindi';
    src: url('../fonts/KRDV010.TTF'),
         url('../fonts/KRDV021.TTF') format('ttf');
    font-weight: normal;
    font-style: normal;

}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(9,4,30,0.2),rgba(9,4,30,0.2)),url(images/back10.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    padding: 10px;
    width: 100px;
    height: 100px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width:100%;
}
.text-box{
    width: 90%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    color: white;
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: yellow;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition : 1s;
}

nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 300px;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links{
        padding: 30px;
    }
    .sub-menu-1 ul li{
        margin-left: 60px;
    }
    .sub-menu-2 ul li{
        margin-left: 120px;
    }
}
/*  Working Ares */

.workarea{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
    
h1{
    font-size: 36px;
    font-weight: 600;
}
.workarea h2{
    font-family: hindi;
    color: aqua;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.area-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.area-col a{
    text-decoration: none;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.area-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/* ----photo area -------*/

.photoarea{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.photoarea-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.photoarea-col img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(226,0,0,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.services-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.services-col img{
    width: 100%;
    border-radius: 10px;
}
.services-col p{
    padding: 0;
}
.services-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/* ------------New Section --------*/
.newsection{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.newsection-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.newsection-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.newsection-col p{
    padding: 0;
}
.newsection-col h3{
    margin-top: 15px;
    text-align: left;
}
.newsection-col .fa{
    color: #f44336;
}
@media(max-width: 700px){
    .newsection-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*-------- Contact Us ------*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/back1.jpeg);
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*----------- Footer ------------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/*-----------About Us Page-----------*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.2),rgba(4,9,30,0.2)),url(images/blueback.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px
}
.about-col img{
    width: 100%;
}

/*---------------Furniture-------------------*/
.fur-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(images/furniture1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.fur-header h1{
    margin-top:75px;
}
.furniture{
    width: 80%;
    margin: 0px auto;
    padding-top: 0px;
    padding-bottom: 0px;
}
.furniture h2{
    text-align: center;
    color:maroon;
    padding-top: 10px;
}
.fur-col{
    flex-basis: 48%;
    padding: -20px 2px;
    border: solid 1px;
    border-radius: 5px;
    margin-right: 1px;
}
.fur-col img{
    width: 100%;
    height: auto;
}
.fur-col h5{
    font-size: 15px;
    color: red;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    background-color: yellow;
}
.fur-col a{
    text-decoration: none;
}
.fur-col h5:hover{
    background-color: red;
    color:white;
    transition : 1s;
}
.herobutton{
    margin:auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width:inherit;
    color: red;
    border: 1px solid black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-color: yellow;
    padding: 2px 29.3px;
    font-size: 13px;
    background-color: yellow;
    position:relative;
    cursor: pointer;
}
.herobutton:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition : 1s;
    color: white;
    text-align: center;
}


/*-----------------------Contact Us -----------------------*/
.sub-header1{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(images/contact1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header1 h1{
    margin-top: 100px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px
}
.about-col img{
    width: 100%;
}


/*------------------Drop Down Menu ----------------------*/

.sub-menu-1{
    display: none;
}
.nav-links ul li:hover .sub-menu-1{
    display: block;
    position: absolute;
    margin-top: 5px;
    margin-left: -15px;
    /*background: rgb(0,100,0);*/
    width:200px;
    text-align: left;
}

/*------------ Contact Us ----------------------*/

.contact-us{
    width: 80%;
    margin: 0px auto;
    padding-top: 0px;
    padding-bottom: 0px;
}
.contact-col{
    flex-basis: 48%;
    padding: -20px 2px;
    border: solid 1px;
    border-radius: 5px;
    margin-right: 1px;
}
.contact-us h1{
    font-size: 24px;
    color: sandybrown;
    text-align: center;
}
.contact-us p{
    font-size: 14px;
    color: dodgerblue;
    text-align: center;
}
.contact-us a{
    font-size: 12px;
    color: dodgerblue;
    margin-left: 80px;
    text-decoration: none;
    background-color: skyblue;
}
.contact-col iframe{
    width: 100%;
}
.contact-us h3{
    color:maroon;
}
.sidebar1{
    float:left;
    width:300px;
    margin-left:40px;
    border: 5px solid #BA1F23;
    border-radius: 20px;
}
.sidebar1 form{
    margin-left: 20px;
}
.sidebar2{
    float:left;
    width:300px;
    margin-left:40px;
    border: 5px solid #BA1F23;
    border-radius: 20px;
}
.sidebar3{
    float:left;
    width:300px;
    margin-left:40px;
    border: 5px solid #BA1F23;
    border-radius: 20px;
}
.footer h4{
    text-decoration: none;
}


/*------------------------- Electrical --------------------*/
.ele-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/electronic.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.elect1{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.elect1 h1{
    color: maroon;
    font-size: 36px;
    font-weight: 600;
}
.elect1 p{
    color: lightcoral;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.ele-header h1{
    margin-top: 100px;
}
.elect{
    width: 80%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 50px;
}
.elect h1{
    color: blue;
}
.elect p{
    color: lightseagreen;
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.elect-col{
    flex-basis: 48%;
    padding: 30px 2px
}
.elect-col img{
    width: 100%;
}
/*----------------Lighting------------------------*/
.light-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/electrical.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.light-header h1{
    margin-top: 100px;
}
.ele-header h1{
    margin-top: 100px;
}
.elect{
    width: 80%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 50px;
}
.elect h1{
    color: blue;
}
.elect p{
    color: lightseagreen;
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.elect-col{
    flex-basis: 48%;
    padding: 30px 2px
}
.elect-col img{
    width: 100%;
}
/*---------------------Elevator--------------------*/
.elevator-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/elevator1.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.elevator1{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.elevator1 h1{
    color: red;
    font-size: 36px;
    font-weight: 600;
}
.elevator1 h2{
    color: blue;
    font-size: 26px;
    font-weight: 600;
}
.elevator1 h4{
    color: lightcoral;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.elevator-header h1{
    margin-top: 100px;
}
.elevator{
    width: 80%;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}
.elevator h1{
    color: red;
    font-size: 20px;
}
.elevator p{
    color: lightseagreen;
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.elevator p1{
    color: red;
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.elevator-col{
    flex-basis: 48%;
    padding: 10px 2px
}
.elevator-col img{
    width: 100%;
   
}
.elevator-col1 img{
    width: 100%;
    height: 80%;
}
.elevator-sign img{
    width: 40%;
}
.elevator-safety{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}
.elevator-safety h1{
    color: red;
    font-size: 30px;
    font-weight: 600;
}


/*---------------------- Log Area --------------------*/
/*.log-text{
    width: 90%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.log-text h1{
    color: white;
    font-size: 62px;
}
.log-text p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: yellow;
}*/
/*    
.form-box{
    width:350px;
    height:450px;
    position: relative;
    margin: 0 auto;
    background: white;
    border: 2px solid black;
    border-radius: 30px;
    padding: 5px;
    text-align: center;
}
.border-box{
    width:100px;
    height: 30px;
    margin: 35px auto;
    position: relative;
    box-shadow: 0 0 20px 9px #ff61241f;
    border-radius: 30px;
    font-size: 10px;
    color: brown;
    padding-top: 5px;
    
}
.button-box{
    width:100px;
    margin: 35px auto;
    position: relative;
    box-shadow: 0 0 20px 9px #ff61241f;
    border-radius: 30px;
}
.toggle-btn{
    padding: 10px 30px;
   
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
}
.toggle-btn1{
    padding: 10px 30px;
   
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
}
#btn{
    top: 0;
    left: 0;
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, #ff105f, #ffad06);
    border-radius: 30px;
    transition: 0.5s;
}
#btn1{
    top: 0;
    right: 0;
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, #ff105f, #ffad06);
    border-radius: 30px;
    transition: 0.5s;
}

.input-group{
    top: 180px;
    position: absolute;
    width: 280px;
    transition: .5s;
}
.input-field{
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
    outline: none;
    background: transparent;
}
.submit-btn{
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: auto;
    background: linear-gradient(to right, #ff105f, #ffad06);
    border: 0;
    outline: none;
    border-radius: 30px;
    
}
.check-box{
    margin: 30px 10px 30px 0px;
}
span{
    color: #777;
    font-size: 12px;
    bottom: 68px;
    position: absolute;
}
#login{
    left: 50px;
}
#register{
    left: 450px;
}
button{
    width: 100px;
    height: 25px;
    cursor: pointer;
    background-color: coral;
    border: 0;
    outline: none;
    border-radius: 30px;
}
.log-area{
   
}
*/
.form-box{
    width:350px;
    height:350px;
    position: relative;
    margin: 0 auto;
    background: white;
    border: 2px solid black;
    border-radius: 30px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}

#logbutton{
    padding: 10px;
    width: 100px;
    color: white;
    background-color: lightblue;
    border: none;
}
            #text{
                height: 25px;
                border-radius: 5px;
                padding: 4px;
                border: solid thin #aaa;
                width: 100%;
            }
            
            #logbutton{
                padding: 10px;
                width: 100px;
                color: white;
                background-color: lightblue;
                border: none;
            }
            
            #boxlog{
                background-color: grey;
                margin: auto 700px;
                width: 300px;
                padding: 20px;
                border: 2px solid;
            }
            .welcome{
                text-align: center;
                color: white;
                font-size: 24px;
                text-decoration: none;
            }
            .welcome a {
                text-decoration: none;
                color: wheat;
                cursor: pointer;
            }
            .content h2{
                margin-top: 400px;
                text-align: center;
                color: white;
            }
            .compdoc{
                margin-top: 100px;
                text-align: center;
                color: maroon;
            }