
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
     font-family: "Questrial", sans-serif;
    background:#fff;
    color:#111;
    min-height:100vh;
    overflow-x:hidden;
}

.container{
    width:min(1400px,90%);
    margin:auto;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    position:relative;
    z-index:2;
}

/* Header */

header{
    padding:35px 0;
    background-color: #fff;
    position: sticky;
    top: 0px;
}

.logo img{
    width:220px;
    max-width:100%;
}

/* Center */

.hero{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h1{
    font-size:clamp(70px,11vw,200px);
    font-weight:400;
    line-height:1;
    color:#000;
}

/* Footer */

footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    padding:50px 0;
    max-width:800px;
}


footer p{
   font-size:20px;
   line-height:30px;
   color:#000;
}
.footer-left p{
   font-size:20px;
   line-height:30px;
   color:#000;
}

.footer-left strong{
    display:block;
    margin-bottom:5px;
    font-weight:700;
}

.foot-gst{
    margin-top: 20px;
}
.border-line{
    width: 100%;
    height: 1px;
    background-color: #000;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

footer a, footer strong{
    color:#111;
    text-decoration:none;
    transition:all .5s ease;
    font-weight: 700; 
   
}

.footer-right a:hover{
    color:#d3af37;
    
}


.footer-right strong{
    font-weight:600;
}

/* Background watermark */

.bg-logo{
    position:fixed;
    right:0;
    bottom:0;
    width:460px;
    opacity:1;
    z-index:20;
    pointer-events:none;
}

/* Tablet */

@media(max-width:991px){

header{
    padding:30px 0;
}

.logo img{
    width:190px;
}

.hero h1{
    font-size:90px;
}

footer{
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
}

footer p, .footer-left p{
   font-size:18px;
   line-height:26px;
   color:#000;
}

.bg-logo{
    width:320px;
}
}

/* Mobile */

@media(max-width:600px){

.container{
    width:90%;
}

header{
    text-align:center;
}

.logo img{
    width:170px;
}

.hero{
    padding:40px 0;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
}

footer{
    padding:30px 0 40px;
}

.footer-left,
.footer-right{
    font-size:15px;
    line-height:1.8;
}

.bg-logo{
    width:220px;
}
}