*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
}

/* Header */

header{
    background:#0d47a1;
    color:white;
    padding:10px 40px;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */

.logo img{
    width: 200px;
    height:120px;
    object-fit:contain;
}

/* Website Name */

.website-name{
    text-align:center;
    flex:1;
}

.website-name h1{
    font-size:32px;
    font-weight:700;
}

.website-name p{
    font-size:14px;
    letter-spacing:1px;
}
.header-line {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #0d6efd, transparent);
  margin: 15px 0;
}

/* Navigation */

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#FFD54F;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Header ke neeche slider */

.slider{
    width:400px;
    height:200px;      /* Apni zarurat ke hisab se 400px ya 600px bhi kar sakte hain */
    overflow:hidden;
    position:relative;
}

.slide{
    width:100%;
    height:500px;
    object-fit:cover;
    display:none;
}
.slider{
    width:100%;
    height:550px;
    margin:0;
}

.slide{
    width:100%;
    height:550px;
    object-fit:cover;
}
.info-section{
    width:90%;
    margin:40px auto;
    display:flex;
    gap:30px;
}


/* Both Boxes */

.info-box{
    width:50%;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    border-top:5px solid #0d47a1;
}


.info-box h2{
    color:#0d47a1;
    font-size:28px;
    margin-bottom:15px;
}


.info-box p{
    color:#555;
    line-height:1.7;
    font-size:16px;
}


.info-box ul{
    margin:15px 0;
    padding-left:20px;
}


.info-box ul li{
    margin-bottom:8px;
}


/* Button */

.info-box button{
    background:#0d47a1;
    color:white;
    border:none;
    padding:10px 25px;
    border-radius:5px;
    cursor:pointer;
    margin-top:15px;
}


.info-box button:hover{
    background:#ff9800;
}


/* Mobile Responsive */

@media(max-width:768px){

    .info-section{
        flex-direction:column;
    }

    .info-box{
        width:100%;
    }

}.services-section{
    width:90%;
    margin:50px auto;
    text-align:center;
}


.services-section h2{
    font-size:38px;
    color:#0d47a1;
    margin-bottom:15px;
}


.services-intro{
    font-size:24px;
    font-weight:600;
    color:#333;
}


.services-description{
    width:80%;
    margin:15px auto 40px;
    color:#666;
    line-height:1.7;
    font-size:16px;
}


/* Services Cards */

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.service-card{
    background:white;
    padding:25px;
    text-align:left;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    border-top:5px solid #0d47a1;
    transition:0.3s;
}


.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}


.service-card h3{
    color:#0d47a1;
    font-size:20px;
    margin-bottom:12px;
}


.service-card p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}
.service-card h4{
    color:#0d47a1;
    font-size:20px;
    margin-bottom:12px;
}

.service-card p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}


/* Responsive */

@media(max-width:992px){

    .services-container{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:600px){

    .services-container{
        grid-template-columns:1fr;
    }

    .services-description{
        width:100%;
    }

}
/* Customers Section */

.customers-section{
    width:90%;
    margin:60px auto;
    text-align:center;
}

.customers-section h2{
    font-size:38px;
    color:#0d47a1;
    margin-bottom:10px;
}

.customers-section h3{
    color:#444;
    margin-bottom:20px;
}

.customer-text{
    width:80%;
    margin:auto;
    color:#666;
    line-height:1.7;
    margin-bottom:40px;
}

.customer-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.customer-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:left;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    border-top:5px solid #0d47a1;
}

.customer-card h4{
    color:#0d47a1;
    margin-bottom:15px;
    font-size:22px;
}

.customer-card ul{
    padding-left:20px;
}

.customer-card li{
    margin-bottom:10px;
    color:#555;
    line-height:1.6;
}

/* Responsive */

@media(max-width:768px){

.customer-container{
    grid-template-columns:1fr;
}

.customer-text{
    width:100%;
}

}
/* Footer */

.footer{
    background:#0d47a1;
    color:#fff;
    margin-top:60px;
}

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding:50px 0;
}

/* Footer Heading */

.footer-box h2{
    margin-bottom:20px;
    color:#FFD54F;
}

/* Form */

.footer-box input,
.footer-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:none;
    border-radius:5px;
    font-size:15px;
}

.footer-box textarea{
    height:100px;
    resize:none;
}

.footer-box button{
    background:#FFD54F;
    color:#000;
    padding:12px 25px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;
}

.footer-box button:hover{
    background:#ffb300;
}

/* Map Button */

.map-btn{
    display:inline-block;
    margin-top:15px;
    background:#FFD54F;
    color:#000;
    text-decoration:none;
    padding:10px 20px;
    border-radius:5px;
    font-weight:bold;
}

/* Quick Links */

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#fff;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#FFD54F;
}

/* Bottom Footer */

.footer-bottom{
    text-align:center;
    padding:15px;
    background:#08306b;
    font-size:15px;
}

/* Responsive */

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
}

}
/* Footer */

.footer{
    background:#0d47a1;
    color:#fff;
    margin-top:50px;
}

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding:50px 0;
}

/* Footer Box */

.footer-box h2{
    margin-bottom:20px;
    color:#FFD54F;
}

/* Logo */

.footer-logo{
    width:90px;
    margin-bottom:15px;
}

/* Paragraph */

.footer-box p{
    line-height:1.8;
    color:#eee;
}

/* Social Links */

.social-links,
.quick-links{
    list-style:none;
    padding:0;
}

.social-links li,
.quick-links li{
    margin-bottom:12px;
}

.social-links a,
.quick-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.social-links a:hover,
.quick-links a:hover{
    color:#FFD54F;
    padding-left:8px;
}

/* Bottom */

.footer-bottom{
    background:#062d66;
    text-align:center;
    padding:15px;
    font-size:15px;
}

/* Responsive */

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    margin:auto;
    display:block;
    margin-bottom:15px;
}

}