/* --- AL SALAM GLOBAL HEADER FIX --- */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.als-header-final {
    background: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    font-family: Arial, sans-serif !important;
}

.als-nav-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 80px !important;
    padding: 0 20px !important;
}

.als-logo-container img {
    height: 60px !important;
    width: auto !important;
}

/* Menu Reset */
.als-nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.als-nav-menu li {
    list-style: none !important;
    margin: 0 !important;
}

.als-nav-menu li a {
    text-decoration: none !important;
    color: #1a3a63 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
}

/* Dropdown */
.als-has-dropdown {
    position: relative !important;
}

.als-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    background: #fff !important;
    min-width: 200px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0 !important;
    border-top: 3px solid #6ab04c !important;
}

.als-has-dropdown:hover .als-dropdown {
    display: block !important;
}

/* Mobile logic */
.als-nav-input,
.als-nav-btn {
    display: none !important;
}

@media (max-width: 992px) {
    .als-nav-btn {
        display: block !important;
        cursor: pointer;
    }

    .als-nav-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1a3a63;
        margin: 5px 0;
    }

    .als-nav-menu {
        position: absolute !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        flex-direction: column !important;
        background: #fff !important;
        transition: 0.3s !important;
        padding: 20px 0 !important;
        text-align: center !important;
    }

    .als-nav-input:checked~.als-nav-menu {
        left: 0 !important;
    }

    .als-desktop-cta {
        display: none !important;
    }
}

.als-btn {
    background: #1a3a63 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

/* --- BUTTON HOVER FIX --- */
.als-btn {
    background-color: #1a3a63 !important;
    /* Original Blue */
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    transition: all 0.3s ease-in-out !important;
    border: none !important;
}

/* Hover par Green Color */
.als-btn:hover {
    background-color: #6ab04c !important;
    /* Logo Green */
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(106, 176, 76, 0.4) !important;
}

/* --- MODERN DROPDOWN DESIGN --- */
.als-dropdown {
    position: relative !important;
}

.als-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #ffffff !important;
    min-width: 220px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-top: 4px solid #6ab04c !important;
    /* Green Accent */
    border-radius: 0 0 10px 10px !important;
    padding: 10px 0 !important;
    z-index: 999 !important;
    list-style: none !important;
}

/* Show Dropdown on Hover */
.als-dropdown:hover .als-dropdown-menu {
    display: block !important;
    animation: alsFadeIn 0.3s ease !important;
}

.als-dropdown-menu li a {
    color: #1a3a63 !important;
    padding: 12px 20px !important;
    display: block !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
    transition: 0.2s !important;
}

.als-dropdown-menu li a:hover {
    background-color: #f8f9fa !important;
    color: #6ab04c !important;
    padding-left: 25px !important;
    /* Chota sa slide effect */
}

/* Arrow Styling */
.als-arrow {
    font-size: 10px !important;
    margin-left: 5px !important;
    vertical-align: middle !important;
}

/* Fade Animation */
@keyframes alsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* header end */

/* Home Page */

/* --- GLOBAL SETTINGS --- */
:root {
    --primary: #1a3a63;
    /* Deep Blue */
    --secondary: #6ab04c;
    /* Logo Green */
    --text-dark: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

/* --- HERO SECTION --- */
.hero-modern {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    background: rgba(106, 176, 76, 0.1);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-text-box h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
}

.gradient-text {
    color: var(--secondary);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-main {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 15px 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--primary);
    border-radius: 8px;
}

.floating-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- STATS SECTION --- */
.glass-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin: 0;
}

.stat-card p {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 600;
}


/* --- SYSTEM CARDS --- */
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.system-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.system-card.featured {
    border: 2.5px solid var(--secondary);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
}

.card-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
}

.sys-header {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.sys-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.sys-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.sys-list i {
    color: var(--secondary);
    margin-right: 8px;
}

/* --- APPLIANCE SHOWCASE --- */
.appliance-showcase-wrapper {
    padding: 80px 0;
    background: #1a3a63;
    color: white;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-app-img {
    width: 100%;
    border-radius: 20px;
}

.tagline {
    color: var(--secondary);
    font-weight: bold;
    text-transform: uppercase;
}

.section-heading {
    font-size: 2.5rem;
    margin: 10px 0;
}

.app-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
}

/* --- CATEGORY CARDS --- */
/* --- SERVICE CARDS STYLING --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cat-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth bounce effect */
    border: 1px solid #f0f0f0;
}

/* --- HOVER EFFECT --- */
.cat-card:hover {
    transform: translateY(-12px);
    /* Card upar uthay ga */
    box-shadow: 0 20px 40px rgba(26, 58, 99, 0.15);
    /* Blueish shadow */
    border-color: #6ab04c;
    /* Border green ho jayegi */
}

.cat-img-box {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    /* Image na ho to grey background dikhega */
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img-box img {
    transform: scale(1.1);
    /* Image halki si zoom hogi */
}

.cat-info {
    padding: 25px;
}

.cat-info h4 {
    color: #1a3a63;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.cat-card:hover .cat-info h4 {
    color: #6ab04c;
    /* Heading green ho jayegi hover par */
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {

    .hero-grid,
    .system-grid,
    .dual-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-text-box {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .glass-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        border: none;
    }

    .hero-text-box h1 {
        font-size: 2.5rem;
    }
}

/* Product Page */

/* --- PRODUCT CARD STYLING --- */
.cat-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    height: 100%;
    /* Taake grid mein saare card barabar hon */
}

.cat-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Padding Fix yahan hy */
.cat-info {
    padding: 20px 25px;
    /* Sides par 25px padding di hy taake text na chipke */
}

.cat-info span.category-label {
    color: #6ab04c;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.cat-info h4 {
    color: #1a3a63;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cat-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 40px;
    /* Description box size set kiya hy */
}

/* Price aur Button ko align karne k liye */
.card-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a3a63;
}

.order-btn {
    background: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.order-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* services Page*/

/* --- SERVICES PAGE EXTRA STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

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

body {
    background: #ffffff;
    color: #1d1d1f;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-bg {
    background: #fbfbfd;
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blue-text {
    color: #0062ff;
}

.hero-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6e6e73;
}

.service-block {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.flex-align {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flex-item {
    flex: 1;
    min-width: 320px;
}

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

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    border-left: 5px solid #0062ff;
    padding-left: 20px;
}

.content-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #6e6e73;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0062ff;
    font-weight: bold;
}

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

.repair-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.repair-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.service-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.footer-cta {
    background: #0f172a;
    color: white;
    padding: 80px 0;
}

.btn-wa-expert {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
}

.text-center {
    text-align: center;
}





/* About us page */

/* --- ABOUT US PAGE MASTER STYLES --- */
.about-us-page article {
    line-height: 1.8;
}

.about-us-page h2 {
    letter-spacing: -1px;
}

/* Feature List (Why Us) */
.why-us-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.why-us-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #0062ff;
    font-weight: bold;
}

/* Call to Action Button */
.btn-wa-about {
    background: #25d366;
    color: white;
    padding: 22px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-wa-about:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive Fixes */
@media (max-width: 992px) {

    .about-us-page .hero-flex,
    .about-us-page style[display*='flex'] {
        flex-direction: column !important;
        text-align: center;
    }

    .about-us-page h1 {
        font-size: 2.8rem !important;
    }

    .about-us-page h2 {
        font-size: 2.2rem !important;
    }

    .about-mission div[style*='grid'] {
        grid-template-columns: 1fr !important;
    }
}



/* contact page start */

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.info-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: 0.3s ease;
}

.whatsapp-highlight:hover {
    background: #e8f9ee !important;
    /* WhatsApp Light Green */
    border: 1px solid #25d366 !important;
    transform: translateX(10px);
}

.whatsapp-highlight:hover h4 {
    color: #25d366 !important;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background: #fbfbfd;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #0062ff;
    outline: none;
    background: #fff;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.info-card .icon {
    font-size: 1.5rem;
}

.info-card h4 {
    color: #0062ff;
    font-weight: 800;
    margin-bottom: 5px;
}

.map-section {
    margin-top: 60px;
    line-height: 0;
}

/* --- BUTTON HOVER FIX --- */
.als-btn {
    background-color: #1a3a63 !important;
    /* Original Blue */
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    transition: all 0.3s ease-in-out !important;
    border: none !important;
}

/* Hover par Green Color */
.als-btn:hover {
    background-color: #6ab04c !important;
    /* Logo Green */
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(106, 176, 76, 0.4) !important;
}

/* --- MODERN DROPDOWN DESIGN --- */
.als-dropdown {
    position: relative !important;
}

.als-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #ffffff !important;
    min-width: 220px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-top: 4px solid #6ab04c !important;
    /* Green Accent */
    border-radius: 0 0 10px 10px !important;
    padding: 10px 0 !important;
    z-index: 999 !important;
    list-style: none !important;
}

/* Show Dropdown on Hover */
.als-dropdown:hover .als-dropdown-menu {
    display: block !important;
    animation: alsFadeIn 0.3s ease !important;
}

.als-dropdown-menu li a {
    color: #1a3a63 !important;
    padding: 12px 20px !important;
    display: block !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
    transition: 0.2s !important;
}

.als-dropdown-menu li a:hover {
    background-color: #f8f9fa !important;
    color: #6ab04c !important;
    padding-left: 25px !important;
    /* Chota sa slide effect */
}

/* Arrow Styling */
.als-arrow {
    font-size: 10px !important;
    margin-left: 5px !important;
    vertical-align: middle !important;
}

/* Fade Animation */
@keyframes alsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* footer style */
/* --- FOOTER STYLES --- */
.main-footer {
    background: #1a3a63;
    color: #fff;
    padding: 70px 0 20px;
    margin-top: 50px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo span {
    color: #6ab04c;
}

.footer-desc {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #6ab04c;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #6ab04c;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #6ab04c;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e0;
    font-size: 14px;
}

.contact-item i {
    color: #6ab04c;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #a0aec0;
}