   /* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
header {
    width: 100%;
    height: 100px;   /* Logo ke hisaab se height barhai */
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

/* ===== CONTAINER ===== */
.container100 {
    max-width: 1300px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* ===== LOGO (AB AUR BARA) ===== */
.logo img {
    width: 380px;   /* Desktop par aur bara */
    height: auto;
    margin-left: -30px;
}

/* ===== NAV LINKS DESKTOP ===== */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    color: #0077ff;
}

/* ===== HIDE CHECKBOX ===== */
#menu-toggle {
    display: none;
}

/* ===== MENU ICON ===== */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

    header {
        height: 90px;
    }

    .container100 {
        height: 90px;
    }

    .logo img {
        width: 300px;   /* Tablet par bhi bara */
    }

    .nav-links {
        gap: 20px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    header {
        height: 85px;
    }

    .container100 {
        height: 85px;
    }

    .logo img {
        width: 240px;   /* Mobile par bhi noticeable bara */
    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        gap: 18px;
    }

    .nav-links li {
        margin: 5px 0;
    }

    .nav-links li a {
        font-size: 16px;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
}










         .services-page {
           padding: 80px 20px;
           background-color: #fff;
         }

         .services-page .container {
           max-width: 1200px;
           margin: auto;
           text-align: center;
         }

         .services-page h1 {
           font-size: 40px;
           font-weight: bold;
           margin-bottom: 10px;
           color: #111;
         }

         .services-page h4 {
           font-size: 24px;
           color: #00bcd4;
           margin-bottom: 20px;
         }

         .services-page p {
           font-size: 18px;
           color: #555;
           line-height: 1.7;
           margin-bottom: 50px;
         }

         .row {
           display: grid;
           grid-template-columns: repeat(3, 1fr);
           gap: 30px;
         }

         .service-box {
           background-color: #f0f0f0;
           border-radius: 12px;
           padding: 25px 20px;
           box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
           transition: transform 0.3s, box-shadow 0.3s;
           text-align: center;
         }

         .service-box:hover {
           transform: translateY(-5px);
           box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
         }

         .service-box img {
           width: 100px;
           object-fit: contain;
           margin-bottom: 15px;
         }

         .service-box h5 {
           font-size: 20px;
           color: #111;
           margin-bottom: 10px;
         }

         .service-box p {
           font-size: 15px;
           color: #555;
           line-height: 1.6;
           margin-bottom: 10px;
         }

         .service-box ul {
           list-style: disc;
           padding-left: 20px;
           text-align: left;
           margin-bottom: 15px;
         }

         .service-box ul li {
           font-size: 14px;
           margin-bottom: 5px;
         }

         .service-box .btn {
           display: inline-block;
           padding: 10px 20px;
           font-size: 14px;
           font-weight: 600;
           background-color: #00bcd4;
           color: #fff;
           border-radius: 6px;
           text-decoration: none;
           transition: all 0.3s ease;
         }

         .service-box .btn:hover {
           background-color: #009bb3;
           transform: translateY(-2px);
         }

         .service-box .quote-link {
           display: block;
           margin-bottom: 10px;
           font-size: 14px;
           color: #00bcd4;
           text-decoration: none;
         }

         .service-box .quote-link:hover {
           text-decoration: underline;
         }

         /* Responsive */
         @media (max-width: 992px) {
           .row {
             grid-template-columns: repeat(2, 1fr);
             gap: 25px;
           }

           .services-page h1 {
             font-size: 34px;
           }

           .services-page h4 {
             font-size: 20px;
           }

           .services-page p {
             font-size: 16px;
           }
         }

         @media (max-width: 576px) {
           .row {
             grid-template-columns: 1fr;
             gap: 20px;
           }

           .services-page h1 {
             font-size: 28px;
           }

           .services-page h4 {
             font-size: 18px;
           }

           .services-page p {
             font-size: 14px;
           }

           .service-box h5 {
             font-size: 18px;
           }

           .service-box p {
             font-size: 14px;
           }

           .service-box ul li {
             font-size: 13px;
           }

           .service-box .btn {
             padding: 8px 18px;
             font-size: 13px;
           }
         }























































footer {
    background-color: #111;
    color: #fff;
    padding: 60px 20px 30px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}


.footer-col {
    margin-top: -60px;
}

.footer-colqq {
    margin-top: 30px;
}

.sss {
    margin-top: -50px;
}   

.footer-col img {
    width: 360px;
    height: auto;
    display: block;
    margin-left: -60px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #00bcd4;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #888;
}

.footer-bottom a {
    color: #00bcd4;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-links {
        justify-content: flex-start;
    }
}