
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fa;
    color:#222;
}

/* HEADER */

header{
    width:100%;
    background:#0d1b2a;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img{
    height: 50px; /* अपनी आवश्यकतानुसार ऊंचाई कम या ज्यादा कर सकते हैं */
    width: auto;
}

.logo span{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-size:16px;
    transition:0.3s;
}

nav ul li a:hover{
    color:#00b4d8;
}

/* SLIDER */

.slider{
    width:100%;
    overflow:hidden;
    background:#111;
    padding:20px 0;
}

.slide-track{
    display:flex;
    width:calc(250px * 10);
    animation:scroll 20s linear infinite;
}

.slide{
    width:250px;
    height:150px;
    margin:0 10px;
    border-radius:0; /* स्लाइडर इमेजेस से रेडियस हटाया गया */
    overflow:hidden;
    flex-shrink:0;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* SECTION */

section{
    padding:70px 8%;
}

#problems, #parts, #contact, #landmarks {
    padding-top: 10px;
}

#problems {
    padding-bottom: 0;
}

.section-title{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
    color:#0d1b2a;
}

/* ABOUT */

.about{
    display:flex;
    gap:40px;
    align-items:center;
    flex-wrap:wrap;
}

.about-images{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.about-images img{
    width:100%;
    border-radius:12px;
    height:220px;
    object-fit:cover;
}

.about-content{
    flex:1;
}

.about-content h3{
    font-size:32px;
    margin-bottom:20px;
}

.about-content p{
    line-height:1.8;
    color:#555;
    text-align: justify;
}

/* SERVICES */

.section-subtitle{
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-top: -30px;
    margin-bottom: 40px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom: 60px;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-card i{
    font-size: 40px;
    color: #00b4d8;
    margin-bottom: 20px;
}

.feature-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.feature-card p{
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.problem-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin-top: 15px;
}

.problem-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    display: flex;
    gap: 8px;
}

.problem-list li::before {
    content: "•";
    color: #00b4d8;
    font-weight: bold;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
    text-align:center;
    font-size:20px;
}

.whatsapp-btn{
    display: block;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    margin: 0 20px 20px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
}

.whatsapp-btn:hover{
    background: #128c7e;
}

/* CONTACT */

.contact-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.contact-form{
    flex:1;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:8px;
    outline:none;
}

.contact-form button{
    background:#0d1b2a;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#00b4d8;
}

.contact-info{
    flex:1;
    background:#0d1b2a;
    color:#fff;
    padding:30px;
    border-radius:15px;
}

.contact-info h3{
    margin-bottom:20px;
    font-size:28px;
}

.contact-info p{
    margin-bottom:15px;
    line-height:1.8;
}

/* LOCAL LANDMARKS SERVICE */

.local-landmarks-service {
    margin-top: 40px; /* Space from the contact form/info */
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.local-landmarks-service h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #0d1b2a;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: center;
}

.location-grid p {
    background: #f5f7fa;
    padding: 10px 15px;
    border-radius: 8px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.location-grid p:hover {
    background: #e0e0e0;
    color: #0d1b2a;
}

/* FOOTER */

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        gap:15px;
    }

    .about{
        flex-direction:column;
    }

}

/* ===== HERO SECTION ===== */

.hero-section {
    background: #000;
    padding: 50px 8%;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1.2;
    color: #fff;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text span {
    color: #00b4ff;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.hero-image {
    flex: 0.8;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-btns{
    display:flex;
    gap:20px;
}

.hero-btns a{
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    background:#0077ff;
    color:#fff;
    font-size:18px;
    transition:0.3s;
}

.hero-btns a:hover{
    background:#0056c7;
}

/* RESPONSIVE */

@media(max-width:768px){
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-btns{
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    text-decoration: none;
    transition: 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* MOBILE CALL BUTTON STYLES */
.mobile-call-btn {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ff9800; /* Orange background */
        color: #fff;
        padding: 15px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 10001; /* Higher than whatsapp icon */
    }

    .floating-whatsapp {
        bottom: 80px; /* Shifted up on mobile to avoid overlapping with call button */
    }
}
