/* Styling for Service Page */
* {
    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 {
    background-color: #fafafa;
    color: #444;
    overflow-x: hidden; /* Screen ke bahar content ko jaane se rokne ke liye */
}

/* Navbar */
.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;
}

/* Mobile Navbar Responsive Styles */
@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;
    }
}

/* Typewriter & Utilities */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 1.5s steps(30, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff; }
}

.clickable-div {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Mobile par side se chipakne se bachayega */
}

:root {
    --primary-color: #b6bedd;
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107;
    --text-dark: #333;
    --text-light: #fff;
}

/* Header / Hero Section */
.services-header {
    background-color: #1a2a6c;
    min-height: 80vh; /* height ki jagah min-height use kiya taaki content badhne par break na ho */
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 100px 5% 50px; /* Top padding added for fixed navbar */
} 

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.hero-btns {
    display: flex;
    flex-wrap: wrap; /* Buttons choti screen par niche aa jayenge */
    gap: 15px;
}

.hero-btns .btn-primary {
    background: var(--primary-color);
    color: #1a2a6c; /* Text dark kiya for better visibility */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btns .btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-btns a:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* Review Card Styling */
.hero-review-card {
    flex: 0 1 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.hero-review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.reviewer-info strong {
    display: block;
    color: var(--accent-color);
}

.reviewer-info span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Detailed Services */
.detailed-services {
    padding-top: 50px;
}

.service-block {
    margin-bottom: 60px;
    margin-top: 50px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.service-block h2 {
    color: #1a2a6c;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-block h2:hover {
    text-decoration: underline;
}

.service-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Industry Section */
.industry-section {
    background-color: #f0f2f5;
    padding: 80px 20px; /* Added side padding */
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1a2a6c;
    margin-bottom: 10px;
}

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

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 300px se 280px kiya for better mobile fit */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    padding: 15px; /* Thoda padding badhaya */
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.industry-card img {
    height: 200px;
    width: 100%;
    object-fit: cover; /* Images ko stretch hone se rokega */
    border-radius: 10px;
    margin-bottom: 15px;
}

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

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

.industry-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.industry-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Partners */
.partners-section {
    text-align: center;
    padding: 80px 20px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap; /* FIX: Logos ab mobile me cut nahi honge, niche shift honge */
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.logo-image {
    height: auto;
    max-width: 120px; /* Mobile ke liye image size optimize kiya */
    max-height: 80px;
    object-fit: contain;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    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;
}

.footer-col p {
    color: #bbbbbb;
    line-height: 1.5;
}

.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 {
    color: #ffffff;
    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;
    text-align: center;
    font-size: 30px;
    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 (Responsive Magic for Tablet and Mobile)
   ========================================================================== */

/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-review-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .services-header {
        padding-top: 120px; /* Extra padding for mobile navbar */
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-block h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-col {
        width: 100%;
        text-align: center;
    }
    
    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
}