/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-color: var(--border);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Basic Button Styling */
button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 15px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #1d4ed8;
}


/* he zal sgly sathi aata ak ak  */
/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    z-index: 1000;
}

.container0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.sub-brand {
    font-size: 16px;
    color: #333;
    display: none;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.btn-primary {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Mobile Menu */
.menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .sub-brand {
        display: block;
    }
}


/* spl */
/* main /hero  */
/* ----- General Styling ----- */
.banner {
    position: relative;
    padding: 60px 0;
    text-align: left;
    background: #f4f4f4; /* Light Grey Background */
}

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ----- Text Styling ----- */
.banner-text {
    flex: 1;
    max-width: 50%;
}

.banner-text h1 {
    font-size: 2.5rem;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* ----- Buttons: Smaller, Stylish Design ----- */
/* ----- Buttons Styling (Rounded, Shadow, Gradient) ----- */
.banner-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.banner-buttons .btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px; /* Fully Rounded */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.banner-buttons .btn a {
    text-decoration: none;
    font-weight: bold;
}

/* 🚀 Primary Button (Blue Gradient + 3D Effect) */
.banner-buttons .btn-primary {
    background: linear-gradient(45deg, #007bff, #0048ff);
    color: white;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
}

.banner-buttons .btn-primary a {
    color: white;
}

.banner-buttons .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.4);
}

/* 👀 Outline Button (White Background + Purple Border) */
.banner-buttons .btn-outline {
    background: white;
    color: #6a0dad;
    border: 2px solid #6a0dad;
}

.banner-buttons .btn-outline a {
    color: #6a0dad;
}

.banner-buttons .btn-outline:hover {
    background: #6a0dad;
    color: white;
}

.banner-buttons .btn-outline:hover a {
    color: white;
}


/* ----- 3D Black Shadow Effect for Image ----- */
.banner-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.image-wrapper {
    display: inline-block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.6); /* Black Shadow Effect */
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease-out;
}

/* Slight Zoom Effect on Hover */
.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    .banner-text, .banner-image {
        max-width: 100%;
    }
    .banner-image {
        text-align: center;
        margin-top: 20px;
    }
}

/* spl */
/* Services Section */
.services-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.services-header h2 {
    font-size: 36px;
    font-weight: bold;
}

.services-header p {
    color: #666;
    max-width: 600px;
    margin: 10px auto 40px;
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

/* Service Icons */
.service-icon {
    font-size: 40px;
    color: #007bff;
}

/* ith spl */

/* Pricing Section */
.pricing-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pricing-header h2 {
    font-size: 36px;
    font-weight: bold;
}

.pricing-header p {
    color: #666;
    max-width: 600px;
    margin: 10px auto 40px;
    font-size: 18px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: bold;
}

.description {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

/* Features List */
.features {
    text-align: left;
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 14px;
    color: #333;
    padding: 5px 0;
}

/* Best Seller Tag */
.best-seller {
    border: 2px solid #007bff;
    position: relative;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #007bff;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 10px;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #007bff;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

.btn.primary {
    background: #ff9800;
}

.btn.primary:hover {
    background: #e68900;
}

/* spl */

/* WhatsApp Chat Section */
.chat-section {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 50px auto;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Chat Container (Flex Layout) */
.chat-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Side: Text Content */
.chat-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.chat-text h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}

.chat-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* WhatsApp Button */
.chat-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease;
}

.chat-btn:hover {
    background: #1ebe5d;
}

/* Right Side: Image */
.chat-image {
    flex: 1;
    text-align: center;
    max-width: 500px;
}

.chat-img-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.chat-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chat-container {
        flex-direction: column;
        text-align: center;
    }

    .chat-text {
        text-align: center;
        margin-bottom: 20px;
    }
}


/* spl */
/* contact Section  */
.contact-section {
    padding: 50px 20px;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: bold;
}

.contact-header p {
    color: gray;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    font-size: 24px;
    margin-right: 10px;
    color: blue;
}

.map-placeholder {
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.form-group {
    display: flex;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background: blue;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* ith spl */

/* Footer Section */

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 0.9rem;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    font-size: 20px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 0.8rem;
    text-align: center;
}


/* spl sagl */
