@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
}

nav {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    padding: 20px 80px;
    line-height: normal;
}
nav .logo {
    font-size: 30px;
    font-weight: 700;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li{
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
nav ul li a{
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #1e1e1e;
    transition: 0.3s;
}
nav .navLinks .login-btn{
    padding: 6px 20px;
    border-radius: 10px;
    background-color: #E67E22;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s;
}

nav .navLinks .login-btn:hover{
    background-color: #cf711f;
}
nav ul li:hover {
    background-color: #E67E22;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}
nav ul li:hover a {
    color: #ffffff;
}
nav .menubtn{
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
    display: none;
}

/* responsive navbar css */
@media screen and (max-width: 600px) {
    nav .menubtn{
        display: flex;
    }
    nav .navLinks{
        display: none;
    }
    .sideNav {
        display: block !important;
    }
}
.sideNav{
    height: 100%;
    position: fixed;
    top: 0;
    right: 0%;
    background-color: #2C2C2C;
    overflow-x: hidden;
    transition: 0.3s ease-in;
    padding-top: 60px;
    display: none;
}

.sideNav a{
    padding: 8px 8px 8px 40px;
    display: block;
    font-size: 25px;
    font-weight: 500;
    color: #d1d1d1;
    transition: 0.3s;
    text-decoration: none;
}
.sideNav .login-btn{
    display: block;
    background-color: #E67E22;
    color: white;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
}
.column1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
}
.row {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;      
    text-align: center;
    min-height: 80vh;
    margin-bottom: 80px;
}
.row .column2{
    padding-right: 50px;
}

.column2 h1 {
    font-size: 55px;
    margin-bottom: 10px;
    text-align: center;
}

.column2 p{
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.column2 button {
    width: auto;
    padding: 12px 20px;
    border-radius: 30px;
    border-style: none;
    color: #2c2b2b;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}
.column2 button:hover {
    background-color: #2c2b2b;
    color: white;
}
.section .navbar {
    margin-top: 80px;
    padding: 60px 0;
}

@media screen and (max-width: 980px) {
    .column1 img{
        width: 350px;
    }
    .column2 h1 {
        font-size: 40px;
    }
    .column2 p {
        font-size: 17px;
    }
    .row {
        margin-top: 80px;
    }
}

@media screen and (max-width: 600px) {
    .column2 h1{
        font-size: 35px;
    }
    .row{
        flex-direction: column;
    }
    .row .column2 {
        padding: 30px;
    }
}

#requirement {
    padding: 80px 10%;
    background-color: #F8F9FA;
    text-align: center;
}

#requirement h2 {
    margin-bottom: 15px;
    font-size: 32px;
    color: #2c2b2b;
}

#requirement p {
    margin-bottom: 40px;
    color: #4A4A4A;
}

.requirement-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 220px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    outline: none;
    border-color: #FF8C00;
}

.requirement-container {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}
.hero-button {
    width: 100%;
    margin-top: 25px;
    justify-content: center;
    gap: 15px;
    background-color: #FF8C00;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 12px 18px;
    font-weight: 500;
    display: inline-block;
    border: none;
    text-align: center;
}

@media (max-width: 768px) {

    #requirement {
        padding: 60px 20px;
    }

    .requirement-container {
        padding: 25px;
    }

    .requirement-form {
        flex-direction: column;
        align-items: center;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        max-width: 100%;
    }

    .hero-button {
        width: 100%;
        max-width: 100%;
    }
}

#services {
    padding: 100px 10%;
    background: #F8F9FA;
    text-align: center;
    color: #2c2b2b;
}

#services h2 {
    margin-bottom: 10px;
    color: #2c2b2b;
    font-size: 36px;
}

#services p {
    color: #4A4A4A;
}

.services-subtext {
    margin-bottom: 50px;
    color: #4A4A4A;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}
.service-card i {
    font-size: 28px;
    color: #FF8C00;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    #services {
        padding: 60px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

#footer {
    background: #1e1e1e;
    color: #FFF;
    width: 100%;
    bottom: 0;
    left: 0;
}
footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    height: 1px;
    width: 100%;
    background: #F39C12;
}
footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
}
footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.logo-details img {
    height: 50px;
    align-items: center;
}
.content .top .logo-details {
    color: #fff;
    font-size: 30px;
}
.content .top .media-icon {
    display: flex;
}
.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}
.top .media-icon a:nth-child(1){
    background: #4267B2;
}
.top .media-icon a:nth-child(1):hover {
    color: #4267B2;
    background: #fff;
}
.top .media-icon a:nth-child(2){
    background: #1DA1F2;
}
.top .media-icon a:nth-child(2):hover {
    color: #1DA1F2;
    background: #fff;
}
.top .media-icon a:nth-child(3){
    background: #E1306C;
}
.top .media-icon a:nth-child(3):hover {
    color: #E1306C;
    background: #fff;
}
.top .media-icon a:nth-child(4){
    background: #0077B5;
}
.top .media-icon a:nth-child(4):hover {
    color: #0077B5;
    background: #fff;
}
.top .media-icon a:nth-child(5){
    background: #FF0000;
}
.top .media-icon a:nth-child(5):hover {
    color: #FF0000;
    background: #fff;
}
footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
footer .content .link-boxes .box{
    width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}
.link-boxes .box .link-name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #FFF;
}
.content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}
.content .link-boxes .box li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease;
}
.content .link-boxes li a:hover {
    opacity: 1;
    text-decoration: underline;
}
.content .link-boxes .box li a:hover {
  margin-right: 55px;
}
.link-boxes .input-box input{
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #AFAFB6;
    background: #2C2C2C;;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}
.link-boxes .input-box input[type="button"] {
    color: #2C2C2C;;
    border: none;
    font-size: 18px;
    font-weight: 600;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
    opacity: 1;
}
footer .bottom-details {
    width: 100%;
    background: #FF8C00;
}
footer .bottom-details .bottom-text {
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}
.bottom-details .bottom-text span,
.bottom-details .bottom-text a{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}
.bottom-details .bottom-text a:hover{
    opacity: 1;
    text-decoration: underline;
}
.bottom-details .bottom-text a{
    margin-right: 10px;
}
@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box{
        width: 40px;
        margin-top: 10px;
    }
}
@media (max-width: 700px) {
    footer{
        position: relative;
    }
    .content .top .logo-details{
        font-size: 26px;
    }
    .content .top .media-icons a{
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }
    footer .content .link-boxes .box{
        width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box{
        width: 60%;
    }
    .bottom-details .bottom-text span,
    .bottom-details .bottom-text a{
        font-size: 12px;
    }
}
@media (max-width: 520px) {
    footer::before{
        top: 145px;
    }
    footer .content .top{
        flex-direction: column;
    }
    .content .top .media-icons{
        margin-top: 16px;
    }
    footer .content .link-boxes .box{
        width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box{
        width: 100%;
    }
}

.card-container{
    display: grid;
    grid-template-columns: repeat(4, 250px);
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

/* Card */
.card{
    width: 250px;
    height: 300px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Glass Content */
.card .content{
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.card .content h2{
    margin-bottom: 15px;
    font-size: 20px;
}

.card .content p{
    font-size: 14px;
    line-height: 1.5;
}

/* Hover effect */
.card:hover .content{
    background: rgba(255,255,255,0.7);
    color: #2C2C2C;
}

/* Animated Orange Glow */
.card::before,
.card::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #E67E22;
    z-index: -1;
    transition: 0.4s;
    border-radius: 15px;
}

.card::after{
    background: #F39C12;
}

.card:hover::before{
    width: 80px;
    height: 80px;
    transform: translate(20px, -20px);
    border-radius: 50%;
}

.card:hover::after{
    width: 120px;
    height: 120px;
    transform: translate(-20px, 20px);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1100px){
    .card-container{
        grid-template-columns: repeat(2, 250px);
    }
}

@media (max-width: 600px){
    .card-container{
        grid-template-columns: 1fr;
    }
}