
/* For Full Page Properties */

.container{
    width:100%;
    max-width:100%;  /* Help for make Responsive Website */
    margin:0 auto;  /* container ko page ke center me le aata hai. */
    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);

    
}

/* ---------------Header Properties------------------------ */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
    padding:0 20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:90px;
    height:70px;

}

.logo-text h1{
    margin:0;
    font-size:38px;
    color:#ffffff;
    font-weight:bold;
}

.logo-text span{
    color:#D4AF37;
}

.logo-text p{
    margin:5px 0 0;
    font-size:15px;
    color:#cbd5e1;
    letter-spacing:3px;
    font-style:italic;
}

.auth{
    display:flex;
    gap:20px;
    color:#ffffff;
    font-size:25px;
}

/* --------------------------------------------------------- */


/* --------------- Menu design ------------------------- */
.navbar{
    height:30px;


}

.menu{
    display:flex;
    justify-content:center;
    gap:80px;

}

.menu a{
    color:#D4AF37;
    text-decoration:none;
    font-weight:bold;
    transition:color 0.3s ease;
    font-size:25px;

}

.menu a:hover{
    color:white;
}
/* --------------------------------------------------------- */

/* ------------------ Hero Section ------------------------- */
.hero{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    height:600px;
    border: 2px solid #cbd5e1;
    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
    overflow:hidden;

}

/* Hero section me hume 2 columns chahiye:  1. Left 2. Right  */

.hero-left{
    flex:1;   /* Width Dene ke liye same as width: 50% */
}

.hero-right{

    flex:0.3;   /* Width Dene ke liye same as width: 50% */
    height:300px;
    background:#ddd;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-left h1{
    font-size:30px;
    margin-bottom:20px;
    color: #cbd5e1;
    color:#fff;

}



.hero-left div{

    display:block;
    font-size:20px;
    margin-bottom:20px;
    color: #cbd5e1;
    color:#fff;
}


.hero-left p{
    font-size:20px;
    line-height:30px;
    margin-bottom:30px;
    color:#fff;
}

.hero-btn button{
    background:#2563eb;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
    font-size:25px;
}



.hero-right img{

    width:100%;

    max-width:500px;

}
/* --------------------------------------------------------- */




/* ----------------- Our Service -------------------------------- */
.services{
    text-align:center;
    margin:20px;
    color:#D4AF37;


}

.services h2{
    margin-bottom:40px;
    font-size:40px;
}


.services-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card{
    width:500px;
    padding:25px;
    border-radius:10px;
    background:white;
    color:black;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    transition:.3s;
    font-size:20px;
}

.card:hover{

    transform:translateY(-10px);
    box-shadow:0 10px 30px white;
}

.card button{
    margin-top:15px;
    padding:10px 20px;
    border:none;
    background:#2563eb;
    color:white;
    border-radius:5px;
    cursor:pointer;
}

/* ---------------- Footer ---------------- */

.footer{

    margin-top:80px;
    padding:40px 20px;
    background:white;
    color:black;
    text-align:center;
}

.footer h2{

    margin-bottom:10px;
    font-size: 40px;
}

.footer p{

    margin-bottom:20px;
}

.footer-menu{

    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:20px;
    font-size:20px;
}

.footer-menu a{

    color:#2563EB;
    font-weight:bold;
    text-decoration:none;
    transition:0.3s;
}

.footer-menu a:hover{

    color:#D4AF37;
}

.copyright{

    font-size:18px;
    color:black;
}