/* ===== 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;
    }
}








.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f0f, #222222);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero .container1 {
    max-width: 1000px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn {
    text-decoration: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-btns .btn-primary {
    background-color: #00bcd4;
    color: #fff;
}

.hero-btns .btn-primary:hover {
    background-color: #009bb3;
    transform: translateY(-2px);
}

.hero-btns .btn-secondary {
    background-color: transparent;
    border: 2px solid #00bcd4;
    color: #00bcd4;
}

.hero-btns .btn-secondary:hover {
    background-color: #00bcd4;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
}











.services {
    padding: 80px 20px;
    background-color: white;
}

.container111 {
    max-width: 1200px;
    margin: auto;
}

.services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services .section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111;
}

.services .section-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-card ul {
    text-align: left;
    margin-bottom: 20px;
    list-style: disc inside;
    color: #555;
}

.service-card ul li {
    margin-bottom: 8px;
}

.service-card .btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.service-card .btn:hover {
    background-color: #009bb3;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card img {
        width: 80px;
    }

    .services .section-header h2 {
        font-size: 28px;
    }

    .services .section-header p {
        font-size: 16px;
    }
}






.about {
    padding: 80px 20px;
    background-color: #fff;
}

.about .container {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text p em {
    color: #00bcd4;
}

.about-text .btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.about-text .btn:hover {
    background-color: #009bb3;
    transform: translateY(-2px);
}

.about-image {
    flex: 1 1 500px;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 500px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-text h2 {
        font-size: 26px;
    }

    .about-text h3 {
        font-size: 18px;
    }

    .about-text p {
        font-size: 14px;
    }
}





.testimonials {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonials .container11111 {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111;
}

.section-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}

.testimonial {
    background-color: #f0f0f0;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-author .author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .author-info h4 {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

.testimonial-author .author-info p {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author .author-avatar img {
        width: 50px;
        height: 50px;
    }

    .testimonial-author .author-info h4 {
        font-size: 16px;
    }

    .testimonial-author .author-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}










.cta {
    background: linear-gradient(135deg, #00bcd4, #009bb3);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta .container00 {
    max-width: 800px;
    margin: auto;
}

.cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta .btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #111;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta .btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }

    .cta .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 14px;
    }

    .cta .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}





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;
    }
}