   /* ===== 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;
    }
}






































         .contact-hero {
           padding: 100px 20px;
           background-color: #00bcd4;
           color: #fff;
           text-align: center;
         }

         .contact-hero .container {
           max-width: 800px;
           margin: auto;
         }

         .contact-hero h1 {
           font-size: 40px;
           font-weight: bold;
           margin-bottom: 20px;
         }

         .contact-hero p {
           font-size: 18px;
           line-height: 1.7;
           margin-bottom: 30px;
         }

         .contact-hero .btn {
           display: inline-block;
           padding: 15px 35px;
           font-size: 16px;
           font-weight: 600;
           background-color: #fff;
           color: #00bcd4;
           border-radius: 8px;
           text-decoration: none;
           transition: all 0.3s ease;
         }

         .contact-hero .btn:hover {
           background-color: #e0f7fa;
           transform: translateY(-2px);
         }

         /* Responsive */
         @media (max-width: 992px) {
           .contact-hero h1 {
             font-size: 34px;
           }

           .contact-hero p {
             font-size: 16px;
           }

           .contact-hero .btn {
             padding: 12px 30px;
             font-size: 15px;
           }
         }

         @media (max-width: 576px) {
           .contact-hero h1 {
             font-size: 28px;
           }

           .contact-hero p {
             font-size: 14px;
           }

           .contact-hero .btn {
             padding: 10px 25px;
             font-size: 14px;
           }
         }














         .contact-section {
           padding: 80px 20px;
           background-color: #fff;
         }

         .contact-section .container {
           max-width: 1200px;
           margin: auto;
           display: flex;
           flex-wrap: wrap;
           gap: 40px;
         }

         /* Contact Info */
         .contact-info {
           flex: 1;
           min-width: 300px;
         }

         .contact-info h3 {
           font-size: 28px;
           color: #111;
           margin-bottom: 25px;
         }

         .contact-item {
           display: flex;
           align-items: flex-start;
           margin-bottom: 20px;
         }

         .contact-icon {
           font-size: 24px;
           color: #00bcd4;
           margin-right: 15px;
           min-width: 30px;
           margin-top: 3px;
         }

         .contact-details h4 {
           font-size: 16px;
           font-weight: bold;
           margin-bottom: 5px;
         }

         .contact-details p {
           font-size: 14px;
           color: #555;
         }

         .social-links {
           margin-top: 25px;
         }

         .social-links a {
           display: inline-block;
           margin-right: 10px;
           font-size: 18px;
           color: #00bcd4;
           text-decoration: none;
           transition: color 0.3s;
         }

         .social-links a:hover {
           color: #009bb3;
         }

         /* Contact Form */
         .contact-form {
           flex: 1;
           min-width: 300px;
         }

         .contact-form h3 {
           font-size: 28px;
           color: #111;
           margin-bottom: 25px;
         }

         .contact-form .form-group {
           margin-bottom: 15px;
         }

         .contact-form label {
           display: block;
           margin-bottom: 5px;
           font-size: 14px;
           font-weight: 600;
         }

         .contact-form input,
         .contact-form select,
         .contact-form textarea {
           width: 100%;
           padding: 12px 15px;
           font-size: 14px;
           border: 1px solid #ccc;
           border-radius: 6px;
           outline: none;
           transition: all 0.3s ease;
         }

         .contact-form input:focus,
         .contact-form select:focus,
         .contact-form textarea:focus {
           border-color: #00bcd4;
           box-shadow: 0 0 5px rgba(0, 188, 212, 0.3);
         }

         .contact-form textarea {
           min-height: 120px;
           resize: vertical;
         }

         .contact-form .btn.form-submit {
           background-color: #00bcd4;
           color: #fff;
           border: none;
           padding: 12px 30px;
           font-size: 16px;
           border-radius: 6px;
           cursor: pointer;
           transition: all 0.3s;
         }

         .contact-form .btn.form-submit:hover {
           background-color: #009bb3;
           transform: translateY(-2px);
         }

         /* Responsive */
         @media (max-width: 992px) {
           .contact-section .container {
             flex-direction: column;
           }

           .contact-info,
           .contact-form {
             min-width: 100%;
           }

           .contact-info h3,
           .contact-form h3 {
             font-size: 24px;
           }

           .contact-details h4 {
             font-size: 15px;
           }

           .contact-details p {
             font-size: 13px;
           }
         }

         @media (max-width: 576px) {
           .contact-section {
             padding: 50px 15px;
           }

           .contact-info h3,
           .contact-form h3 {
             font-size: 22px;
           }

           .contact-details h4 {
             font-size: 14px;
           }

           .contact-details p {
             font-size: 12px;
           }

           .contact-form .btn.form-submit {
             width: 100%;
             padding: 10px 0;
           }
         }









         :root {
           --primary: #00bcd4;
         }


         .info-block {
           text-align: center;
           padding: 50px 20px;
           max-width: 400px;
           margin: 0 auto;
           background-color: #fff;
           border-radius: 12px;
           box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
         }

         .info-block i {
           font-size: 50px;
           color: var(--primary);
           margin-bottom: 20px;
           transition: transform 0.3s ease;
         }

         .info-block i:hover {
           transform: scale(1.1);
         }

         .info-block h3 {
           font-size: 24px;
           color: #111;
           margin-bottom: 15px;
         }

         .info-block p {
           font-size: 16px;
           color: #555;
           line-height: 1.6;
         }

         /* Responsive */
         @media (max-width: 576px) {
           .info-block {
             padding: 30px 15px;
           }

           .info-block i {
             font-size: 40px;
             margin-bottom: 15px;
           }

           .info-block h3 {
             font-size: 20px;
             margin-bottom: 10px;
           }

           .info-block p {
             font-size: 14px;
           }
         }



         /* <!-- faq  --> */



         .faq-section {
           padding: 80px 20px;
           background-color: #fff;
         }

         .faq-section .container {
           max-width: 900px;
           margin: auto;
         }

         .section-header {
           text-align: center;
           margin-bottom: 50px;
         }

         .section-header h2 {
           font-size: 32px;
           font-weight: bold;
           margin-bottom: 15px;
           color: #111;
         }

         .section-header p {
           font-size: 16px;
           color: #555;
         }

         .faq-list {
           display: flex;
           flex-direction: column;
           gap: 20px;
         }

         .faq-item {
           background-color: #f1f1f1;
           border-radius: 10px;
           overflow: hidden;
           cursor: pointer;
           transition: all 0.3s ease;
         }

         .faq-item:hover {
           background-color: #e0f7fa;
         }

         .faq-question {
           padding: 20px 25px;
           font-size: 18px;
           font-weight: 600;
           position: relative;
         }

         .faq-question::after {
           content: '+';
           position: absolute;
           right: 25px;
           font-size: 24px;
           transition: transform 0.3s ease;
         }

         .faq-item.active .faq-question::after {
           content: '-';
         }

         .faq-answer {
           max-height: 0;
           padding: 0 25px;
           font-size: 15px;
           color: #555;
           line-height: 1.6;
           overflow: hidden;
           transition: max-height 0.4s ease, padding 0.4s ease;
         }

         .faq-item.active .faq-answer {
           padding: 15px 25px 25px 25px;
           max-height: 500px;
           /* adjust as needed */
         }

         /* Responsive */
         @media (max-width: 576px) {
           .section-header h2 {
             font-size: 26px;
           }

           .section-header p {
             font-size: 14px;
           }

           .faq-question {
             font-size: 16px;
             padding: 15px 20px;
           }

           .faq-question::after {
             right: 20px;
             font-size: 20px;
           }

           .faq-answer {
             font-size: 14px;
             padding: 0 20px;
           }

           .faq-item.active .faq-answer {
             padding: 12px 20px 20px 20px;
           }
         }











         

         /* <!-- footer           --> */



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;
    }
}