* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    overflow-x: hidden; /* Screen ke bahar content na jaye */
}

.navbar {
    background: white;
    height: 80px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 80px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #b21f1f; 
}

.contact-btn {
    background:  #1a2a6c; 
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #b21f1f !important;
    transform: translateY(-2px);
}

#check {
    display: none;
}

.checkbtn {
    font-size: 25px;
    color: #333;
    cursor: pointer;
    display: none;
}

/* Navbar Responsive */
@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    .nav-links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #fdfdfd;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        flex-direction: column;
        padding-top: 50px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    #check:checked ~ .nav-links {
        left: 0;
    }
}

#logo{
    display: inline-block;
    background-color: darkgrey;
    align-items: flex-start;
    padding-left: 0%;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 600px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px; 
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out, opacity 1s ease-in-out; 
    filter: brightness(60%); 
}

.hero-content {
    position: relative;
    z-index: 2; 
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.typewriter-text {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    overflow: hidden; 
    white-space: nowrap; 
    border-right: .15em solid orange; 
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-button {
    background-color: #1a2a6c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    z-index: 3;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
}

/* Keyframes */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff; }
}

/* FIX: Main section height auto kar diya gaya hai */
main {
    min-height: 100vh;
    height: auto;
    padding-bottom: 50px;
}

/* Services & Story Section Fixes */
.services {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    text-align: center;
    margin-top: 50px;
}

.services img {
    height: auto;
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.story {
    display: inline-block;
    vertical-align: top;
    width: 55%;
    padding: 0 20px;
    margin-top: 50px;
    font-size: 18px;
    line-height: 1.6;
}

.story h2 {
    text-decoration: underline;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color:  #1a2a6c;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    margin-left: 75px; 
    height: 50px; 
    cursor: pointer;
    min-width: 150px;
    transition: 0.3s;
}

.btn:hover {
    background: #b21f1f !important;
    transform: translateY(-2px);
    text-decoration: underline;
}

.btn-service {
    display: block;
    font-size: 18px;
    color: white;
    background-color: #1a2a6c;
    height: 50px;
    width: 150px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-service:hover {
    background: #b21f1f !important;
    transform: translateY(-2px);
    text-decoration: underline;
}

.zoom-image {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.zoom-image:hover {
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a2a6c, #1a2a6c);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 40px;
    color: #ffffff; 
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    color: #ffffff;
}

.stat-label {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 5px;
    color: white;
    letter-spacing: 1.5px;
}

/* Reviews */
.reviews-section {
    padding: 80px 20px;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid #1a2a6c;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #f1c40f; 
    font-size: 18px;
    margin-bottom: 15px;
}

.feedback {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background-color: #1a2a6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.client-name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Services Container Rows FIX */
ul.services-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #eff1f5;
    padding: 20px;
}

.row {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    margin-bottom: 60px;
    margin-top: 60px;
    gap: 40px;
    padding: 0 20px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

.text h2 {
    text-decoration: underline;
    margin-bottom: 15px;
    color: #1a2a6c;
}

.service-bulletpoints {
    margin-left: 20px;
    margin-top: 15px;
    font-weight: bold;
    color: #1a2a6c;
}

.service-bulletpoints li {
    margin-bottom: 10px;
}

.image-box {
    flex: 1;
    text-align: center;
}

.image-box img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Map Section */
.map-section {
    text-align: center;
    margin: 50px 0 20px;
}

.map {
    text-align: center;
    padding: 0 20px;
}

.map iframe {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    border-radius: 10px;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: #1a2a6c;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-top: 10px;
}

.underline {
    width: 60px;
    height: 4px;
    background: #1a2a6c;
    margin: 15px auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: #fdfdfd;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #1a2a6c;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #eef5ff;
    color: #1a2a6c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: 0.4s;
}

.feature-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Business Hours */
.business-hours-section {
    padding: 60px 20px;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
}

.hours-card {
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 5px solid #1a2a6c;
}

.hours-header {
    background: linear-gradient(135deg, #1a2a6c, #1a2a6c);
    color: white;
    padding: 30px;
    text-align: center;
}

.hours-header h2 {
    margin: 10px 0 5px;
    font-size: 24px;
    text-transform: uppercase;
    color: white;
}

.hours-list {
    list-style: none;
    padding: 20px 30px;
    margin: 0;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
}

.day-row:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: #555;
}

.day-row.closed {
    color: #1a2a6c;
}

.hours-footer {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #eee;
}

/* Footer Section */
.footer {
    background-color: black;
    padding: 70px 0 20px;
    color: #ffffff;
}

.container-footer {
    max-width: 1170px;
    margin: auto;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    width: 50px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}
.social-links a:nth-child(1):hover { background-color: #1877F2; }
.social-links a:nth-child(2):hover { background-color: #E4405F; }
.social-links a:nth-child(3):hover { background-color: #25d366; }
.social-links a:nth-child(4):hover { background-color: #1877F2; }

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px; 
    right: 20px;  
    background-color: #25d366; 
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E; 
    transform: scale(1.1); 
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}


/* ==========================================================================
   MEDIA QUERIES (SAB KUCH MOBILE/TABLET PAR THIK KARNE KE LIYE)
   ========================================================================== */

/* Tablet & Smaller Screens */
@media (max-width: 992px) {
    .services, .story {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    
    .row, .row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .service-bulletpoints {
        text-align: left; /* Bullet points ko left align rakha hai */
        display: inline-block;
    }
    
    .btn {
        margin: 20px auto;
        display: block;
    }

    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .typewriter-text {
        font-size: 2rem;
        white-space: normal; /* Typewriter text wrap hone lagega choti screen pe */
        border-right: none;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 14px; }
    
    .section-title h2 { font-size: 26px; }
    .section-header h2 { font-size: 28px; }
    
    .footer-col {
        width: 100%;
        text-align: center;
    }
    
    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .image-box img {
        width: 100%;
    }
}