/* ==================== Header Nav =================== */
:root {
    --primary-blue: #0056b3;
    --logo-yellow: #FDB813;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #f4f4f4;
}

html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }

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

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

/* --- LOGO SETTINGS FIXED --- */
.logo a { 
    display: flex; 
    align-items: center; 
    height: 80px; 
    text-decoration: none; 
    position: relative; /* Base anchor for image */
}

.logo img {
    height: 150px; /* Aapki height 150px hi hai */
    width: auto;  
    display: block;
    object-fit: contain;
    position: absolute; /* Absolute kiya taaki top/bottom cut na ho */
    top: 50%;
    transform: translateY(-40%); /* Isse logo vertically pura center ho jayega */
    z-index: 1001;
}

/* --- NAV LINKS --- */
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { 
    text-decoration: none; 
    color: var(--black); 
    font-weight: 600; 
    font-size: 15px;
    transition: 0.3s; 
}
.nav-links a:hover { color: var(--primary-blue); }

/* --- BUTTON FIX --- */
.btn-primary-white {
    background-color: var(--primary-blue);
    color: var(--logo-yellow) !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--primary-blue);
    white-space: nowrap; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-left: 10px;
}

/* --- TABLET / IPAD FIX --- */
@media screen and (max-width: 1100px) {
    .nav-links li { margin-left: 15px; }
    .nav-links a { font-size: 14px; }
    .btn-primary-white { padding: 10px 18px; font-size: 13px; }
    
    .logo img { 
        height: 120px; /* iPad par thoda scale kiya taaki pura dikhe */
        transform: translateY(-45%); 
    }
}

/* --- MOBILE & SMALL TABLETS --- */
@media screen and (max-width: 900px) {
    .desktop-only { display: none; }
    .menu-toggle { display: block; cursor: pointer; }
    
    .logo img { 
        height: 100px; 
        transform: translateY(-45%);
        left: 0; 
    }

    .bar {
        display: block; width: 25px; height: 3px;
        margin: 5px; background: var(--black);
        transition: 0.3s;
    }
    
    .nav-links {
        display: block;
        position: absolute;
        top: 80px; right: 0;
        width: 100%;
        background: var(--white);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-in-out;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { max-height: 450px; padding: 20px 0; }
    .nav-links li { margin: 15px 0; margin-left: 0; }
}
/* ================== Hero Section ====================== */
/* ================== Hero Section Base (Desktop/Laptop) ================== */
.hero-section {
    position: relative;
    min-height: 80vh; /* Laptop ke liye height thodi kam ki hai */
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--black);
    padding-top: 80px;
}

.hero-bg-img {
    position: absolute;
    top: -10px; left: -10px;
    width: calc(100% + 20px); 
    height: calc(100% + 20px);
    object-fit: cover;
    filter: blur(6px);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    gap: 30px;
    padding: 20px 0; /* Padding kam ki laptop look ke liye */
}

.hero-content {
    flex: 1;
    color: var(--white);
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Laptop par size balanced rahega */
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0 20px 0;
}

.badge { color: var(--primary-blue); font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 5px; }
.highlight { color: var(--primary-blue); }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; max-width: 550px; }

/* Buttons */
.cta-group { display: flex; gap: 15px; }
.btn-primary, .btn-outline {
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}
.btn-primary { background: var(--primary-blue); color: var(--white); border: 2px solid var(--primary-blue); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-primary:hover { opacity: 0.8; transform: translateY(-2px); }
.btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

/* Gallery */
.hero-gallery {
    flex: 1.3;
    display: flex;
    gap: 15px;
    max-width: 600px;
    height: 400px; /* Laptop height balanced */
}

.gallery-main, .side-img {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.gallery-main { flex: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.gallery-main img, .side-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }

.gallery-sidebar {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-img { flex: 1; border-radius: 10px; }
.side-img:hover img, .gallery-main:hover img { transform: scale(1.05); }

/* ================== Responsive Fixes (iPad & Tablets) ================== */
@media screen and (max-width: 1024px) {
    .hero-section { min-height: 60vh; }
    .hero-gallery { height: 320px; flex: 1; }
    .hero-content h1 { font-size: 2.2rem; }
}

/* ================== Responsive Fixes (Mobile Phones) ================== */
@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 70vh; 
        padding-top: 100px; 
        padding-bottom: 40px;
    }

    .hero-gallery {
        display: none !important; /* Phone par hide */
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 { 
        font-size: 2.2rem; 
        margin: 0 auto 20px auto;
    }

    .hero-content p { 
        margin: 0 auto 30px auto; 
    }

    .cta-group { 
        flex-direction: column; 
        max-width: 320px; 
        margin: 0 auto;
    }

    .btn-primary, .btn-outline { width: 100%; padding: 15px; }
}

/* ==================About===================== */
/* About Section Styling */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
    color: var(--black);
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Side */
.about-image {
    flex: 1;
    position: relative;
}

/* Video Styling (Same as your Image Style) */
.about-video {
    width: 100%;
    height: 450px; /* Laptop height same as before */
    object-fit: cover; 
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    z-index: 10;
}

.experience-badge h3 { font-size: 2rem; margin-bottom: 2px; }
.experience-badge p { font-size: 0.8rem; font-weight: bold; text-transform: uppercase; }

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin: 15px 0 25px 0;
    font-weight: 800;
}

.about-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.about-features {
    list-style: none;
    margin-bottom: 40px;
}

.about-features li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    text-align: left;
}

.about-features li i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: left;
        gap: 50px;
    }

    .about-image {
        width: 100%;
        max-width: 100%; 
        margin: 0 0 40px 0;
    }

    .about-video {
        height: 350px; 
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        transform: none; 
        padding: 15px 20px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-section { padding: 60px 0; }
    
    .about-video {
        height: 280px; 
    }
    
    .experience-badge {
        padding: 12px 18px;
        right: 10px;
    }
    
    .experience-badge h3 { font-size: 1.4rem; }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
}/* =======================service======================== */
/* Container ko top-bottom karne ke liye */
.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-section {
    padding: 80px 0; /* Laptop ke liye padding thodi kam ki hai */
    background-color: var(--gray);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px; /* Spacing balanced ki hai */
}

.services-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem); /* Screen ke mutabiq heading adjust hogi */
    margin: 15px 0;
    color: var(--black);
    font-weight: 800;
}

/* 3 Columns Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    width: 100%;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px; /* Laptop par cards ki height ek jaisi rahegi */
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-blue);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* ================== Responsive Fixes (iPad & Tablets) ================== */
@media (max-width: 1024px) {
    .services-section { padding: 60px 0; }
    .services-grid {
        gap: 20px;
    }
    .service-card { padding: 30px 20px; min-height: 280px; }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablets par 2 columns */
    }
}

/* ================== Responsive Fixes (Mobile Phones) ================== */
@media (max-width: 600px) {
    .services-section { padding: 50px 0; }
    
    .services-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
        gap: 20px;
    }
    
    .services-header { margin-bottom: 30px; }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        min-height: auto; /* Mobile par content ke hisab se height */
        padding: 30px;
    }
}

/* ===========================stats-section======================= */
/* ================== Stats Section Styling ================== */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary-blue); /* Aapka primary blue color */
    color: var(--white);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.stat-text p {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr); /* Tablets par 2 columns */
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr; /* Mobile par 1 column */
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* ================== Project Portfolio Styling ================== */
/* Projects Section Styling */
.projects-section {
    padding: 80px 0;
    background-color: var(--white);
}

.projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.project-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    /* Touch par highlight color hatane ke liye */
    -webkit-tap-highlight-color: transparent; 
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 86, 179, 0.95), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0; 
    transform: translateY(20px);
    transition: all 0.4s ease;
    /* Overlay ke andar ke clicks links ko disturb na karein */
    pointer-events: none; 
}

/* --- Laptop: Mouse Hover Effect --- */
@media (min-width: 1025px) {
    .project-card:hover .project-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    .project-card:hover img {
        transform: scale(1.1);
    }
}

/* --- Phone/Tablet: Touch Effect (Tap to Show) --- */
@media (max-width: 1024px) {
    /* Jab card touch/active ho ya focus mein ho */
    .project-card:active .project-overlay,
    .project-card:focus .project-overlay,
    .project-card:focus-within .project-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .project-card:active img,
    .project-card:focus img,
    .project-card:focus-within img {
        transform: scale(1.1);
    }
}

.proj-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.project-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.proj-meta {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.proj-meta i {
    color: #ffd700;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card { height: 320px; }
}

@media (max-width: 600px) {
    .projects-grid { grid-template-columns: 1fr; gap: 40px; }
    .project-card { height: 300px; }
    .project-overlay {
        background: linear-gradient(to top, rgba(0, 86, 179, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
        padding: 20px;
    }
    .project-info h3 { font-size: 1.3rem; }
    .proj-meta { font-size: 0.8rem; }
}
/* ================== Why Choose Us Styling ================== */
.value-section {
    padding: 100px 0;
    background-color: var(--gray); /* Contrast from previous section */
}

.value-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.value-image {
    flex: 1;
    position: relative;
}

.value-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--white); /* Offset shadow effect */
}

.floating-trust-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-trust-card i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.floating-trust-card h4 { font-size: 1.1rem; margin-bottom: 2px; }
.floating-trust-card p { font-size: 0.8rem; color: #666; }

/* Content Side */
.value-content { flex: 1.2; }

.benefit-list {
    margin-top: 40px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-icon-box {
    min-width: 60px;
    height: 60px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--black);
}

.benefit-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .value-wrapper { flex-direction: column; text-align: center; }
    .value-image { order: 1; margin-top: 50px; }
    .benefit-card { text-align: left; }
    .floating-trust-card { right: 20px; }
}

/* ================== How It Works Styling ================== */
/* Process Section Styling */
.process-section {
    padding: 80px 0; /* Laptop ke liye padding adjust ki */
    background-color: var(--white);
}

.process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop/Laptop par 4 steps */
    gap: 30px;
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.process-card {
    text-align: center;
    padding: 45px 25px;
    position: relative;
    background: var(--gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Hover Effects */
.process-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-icon-box {
    font-size: 2.8rem; /* Thoda icon size badhaya */
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 700;
}

.process-card p {
    font-size: 0.95rem; /* Paragraph readability behtar ki */
    color: #666;
    line-height: 1.6;
}

/* --- Responsive Fixes --- */

/* Tablets (iPad) - 2 Columns */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px; /* Vertical gap badhaya */
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .process-section { padding: 60px 0; }
    .process-grid {
        margin-top: 40px;
    }
}

/* Mobile Phones - 1 Column */
@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr; /* Full width cards */
        gap: 40px;
    }
    
    .process-card {
        padding: 40px 25px;
        max-width: 400px; /* Mobile par card boht wide na ho */
        margin: 0 auto;
    }

    .process-icon-box {
        font-size: 2.5rem;
    }
}
/* ================== Technical Specs Styling ================== */
/* Technical Specs Section Styling */
.tech-specs-section {
    padding: 80px 0; /* Laptop ke liye balanced padding */
    background-color: var(--gray);
    overflow: hidden; /* scale effect screen se bahar na jaye */
}

.tech-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 50px;
    padding: 20px 10px; /* Scale effect ke liye thodi padding */
}

.tech-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s all ease;
    display: flex;
    flex-direction: column;
}

/* Active Card Laptop/Desktop Par */
.active-tech {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.08); /* Laptop par highlight effect */
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
    z-index: 2; /* Ye card baqi cards ke upar rahega */
}

.active-tech h3, 
.active-tech p, 
.active-tech .spec-list li {
    color: var(--white);
}

.active-tech .tech-icon, 
.active-tech .spec-list i {
    color: #ffd700; /* Gold icon for active card */
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.spec-list {
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
    margin-top: auto; /* List ko card ke bottom par align kiya */
}

.active-tech .spec-list {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.spec-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.spec-list i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* ================== Responsive Fixes ================== */

/* Tablets (iPad) */
@media (max-width: 1024px) {
    .tech-main-grid {
        grid-template-columns: repeat(2, 1fr); /* iPad par 2 columns behtar lagte hain */
        gap: 40px 25px;
    }
    .active-tech { transform: scale(1.05); } /* Tablet par scale thoda kam */
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .tech-main-grid {
        grid-template-columns: 1fr; /* 1 column layout */
        gap: 30px;
    }
    
    .active-tech { 
        transform: scale(1); /* Phone par scaling band, focus design se aayega */
        margin: 10px 0;
    }

    .tech-card {
        padding: 35px 25px;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .tech-specs-section { padding: 60px 0; }
    .tech-icon { font-size: 2.5rem; }
    .tech-card h3 { font-size: 1.3rem; }
}
/* ================== Partners Styling ================== */
/* ================== Partners & Certifications ================== */
.partners-section {
    padding: 80px 0; /* Laptop friendly padding */
    background-color: var(--gray);
}

.partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Partners Logo Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop/Laptop 4 columns */
    gap: 25px;
    width: 100%;
    margin-bottom: 60px;
}

.partner-logo {
    background: var(--white);
    height: 130px; /* Thodi height barhai hai professional look ke liye */
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo img {
    max-width: 85%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

/* Hover Effect - Laptop/Desktop */
@media (min-width: 1025px) {
    .partner-logo:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
        border-color: var(--primary-blue);
    }

    .partner-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
}

/* Certification Bar Styling */
.cert-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    padding-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    text-align: left; /* Text hamesha left rahega icon ke sath */
}

.cert-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.cert-text h4 {
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 4px;
    font-weight: 700;
}

.cert-text p {
    font-size: 0.9rem;
    color: #666;
}

/* ================== Responsive Fixes ================== */

/* Tablets (iPad) */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet balance */
        gap: 20px;
    }
    
    .cert-bar {
        gap: 30px;
    }
    
    /* Tablet/Mobile par logos hamesha color mein dikhayenge better visibility ke liye */
    .partner-logo img {
        filter: grayscale(0%);
        opacity: 0.9;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .partners-section { padding: 60px 0; }

    .cert-bar {
        grid-template-columns: 1fr; /* Stack certifications vertically */
        gap: 35px;
        padding-top: 40px;
    }

    .cert-card {
        justify-content: flex-start; /* Mobile par left align icons/text */
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 15px;
    }
    
    .partner-logo {
        height: 100px;
        padding: 15px;
    }

    .cert-card i {
        font-size: 2rem;
    }
}
/* ================== CTA & Footer Styling ================== */
/* ================== CTA & Footer Styling ================== */
/* ================== CTA Section ================== */
.cta-section {
    padding: 60px 0;
    margin-top: -80px; /* Overlap effect laptop par better dikhne ke liye */
    position: relative;
    z-index: 10;
}

.cta-card {
    background: var(--primary-blue);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.4);
    color: var(--white);
}

.highlight-white { color: #ffd700; }

.cta-text h2 { font-size: 2.2rem; margin-bottom: 10px; font-weight: 800; }
.cta-text p { font-size: 1.1rem; opacity: 0.9; }

.cta-actions { display: flex; gap: 20px; flex-shrink: 0; }

/* Buttons for CTA */
.btn-primary-white {
    background: var(--white);
    color: var(--primary-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-white:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-outline-white:hover { background: var(--white); color: var(--primary-blue); }

/* ================== Main Footer (White Background) ================== */
.main-footer {
    background: var(--white);
    padding: 140px 0 0; /* Padding adjust ki taake CTA card overlap sahi lage */
    color: var(--black);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo a { color: var(--black); font-size: 2rem; text-decoration: none; font-weight: 900;}
.footer-brand .logo span { color: var(--primary-blue); } 
.footer-brand p { margin-top: 25px; line-height: 1.7; color: #555; max-width: 350px; }

.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a {
    width: 45px; height: 45px; 
    background: #f4f7fa; 
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--black); transition: 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
}
.social-links a:hover { background: var(--primary-blue); color: var(--white); transform: translateY(-5px); }

.footer-links h3, .footer-contact h3 { 
    color: var(--black); 
    margin-bottom: 30px; 
    font-size: 1.3rem; 
    font-weight: 700;
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
    text-align: left; /* Har system par left rahega */
}

.footer-links ul li { list-style: none; margin-bottom: 12px; }
.footer-links ul li a { color: #555; transition: 0.3s; text-decoration: none; font-weight: 500; }
.footer-links ul li a:hover { color: var(--primary-blue); padding-left: 8px; }

.footer-contact p { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 18px; 
    color: #555; 
    justify-content: flex-start; /* Icons aur text hamesha left se start honge */
    text-align: left;
}
.footer-contact i { color: var(--primary-blue); font-size: 1.2rem; }

.footer-bottom {
    background: #f8f9fa; 
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom p { font-size: 0.95rem; color: #777; font-weight: 500; }

/* ================== Responsive Updates ================== */
@media (max-width: 1024px) {
    .footer-grid { gap: 40px; }
}

@media (max-width: 992px) {
    .cta-card { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
        padding: 50px 30px; 
    }
    
    .cta-actions { flex-direction: column; width: 100%; }
    .btn-primary-white, .btn-outline-white { width: 100%; }

    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        text-align: left; /* Pura grid mobile par LEFT rahega */
    }

    .footer-brand p { max-width: 100%; }
    
    .footer-brand .social-links, 
    .footer-contact p { 
        justify-content: flex-start; /* Mobile par content center nahi, LEFT rahega */
    }
}

@media (max-width: 480px) {
    .cta-section { margin-top: -50px; }
    .main-footer { padding-top: 100px; }
    .cta-text h2 { font-size: 1.8rem; }
}

/* Footer Grid layout fix */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    /* Isse sari headings ek hi line se shuru hongi */
    align-items: start; 
}

/* Headings ka alignment fix */
.footer-links h3, 
.footer-contact h3 { 
    color: var(--black); 
    margin-top: 0;           /* Heading ko top se align karne ke liye */
    margin-bottom: 30px; 
    font-size: 1.3rem; 
    font-weight: 700;
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
    line-height: 1.2;        /* Line height set ki taake spacing barabar rahe */
    text-align: left;
}

/* List aur links ka extra margin hatane ke liye */
.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================== Mobile Responsive Updates ================== */
@media (max-width: 992px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: left; 
    }

    .cta-actions { 
        display: flex;
        flex-direction: column !important; /* Mobile par buttons upar-neeche */
        align-items: center !important; 
        width: 100%; 
        gap: 15px;
    }

    .cta-actions a, 
    .btn-primary-white, 
    .btn-outline-white { 
        width: 100% !important; 
        max-width: 280px; 
        margin: 0 auto !important; 
    }
}