 :root {
            --primary-color: #00a8ff;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
        }

        * {
            scroll-behavior: smooth;
        }

        /* Navbar Fixed */
        .navbar {
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar.scrolled {
            background-color: rgba(255,255,255,0.98) !important;
        }

        .navbar-brand img {
            height: 50px;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }

        /* Banner Carousel */
        .carousel-item {
            height: 600px;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
        }

        .search-box {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 600px;
        }

        .search-box input {
            border-radius: 50px 0 0 50px;
            padding: 15px 25px;
            border: none;
        }

        .search-box button {
            border-radius: 0 50px 50px 0;
            padding: 15px 30px;
            background: var(--primary-color);
            border: none;
        }

        /* Section Styling */
        section {
            padding: 80px 0;
        }

        section h2 {
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--secondary-color);
        }

        /* About Section */
        #about img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Services/Products */
        .service-card, .product-card {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }

        .service-card:hover, .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Portfolio */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .portfolio-item img {
            transition: transform 0.5s;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        /* Pricing */
        .pricing-card {
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .pricing-card:hover {
            transform: scale(1.05);
        }

        .pricing-header {
            background: linear-gradient(135deg, var(--primary-color), #0097e6);
            color: white;
            padding: 30px;
            border-radius: 15px 15px 0 0;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
        }

        /* Contact Form */
        .contact-info {
            background: linear-gradient(135deg, var(--primary-color), #0097e6);
            color: white;
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }

        .contact-info i {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 40px 0 20px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary-color);
        }

        /* Product Card */
        .product-img {
            height: 250px;
            object-fit: cover;
        }

        .btn-buy {
            background: var(--accent-color);
            color: white;
            border: none;
            transition: all 0.3s;
        }

        .btn-buy:hover {
            background: #c0392b;
            transform: scale(1.05);
        }
            .navbar-brand img{
            height: 70px;
            width: auto;
        }
        /* =========================
   Practice Section
========================= */

.practice-section{
    background: #f8f9fc;
}

.practice-section h2{
    color: #0b1b52;
    font-weight: 700;
}

.practice-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

.practice-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.practice-body{
    padding: 30px;
}

.practice-body h4{
    color: #3b4ef8;
    font-weight: 700;
    margin-bottom: 20px;
}

.practice-body p{
    color: #666;
    margin-bottom: 14px;
}

.practice-body .btn{
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
}
.about-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}