   /* White Header */
   .header-bg {
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

 /* Glossy Effect */
 /* Glossy Royal Blue Effect */
 .logo-effect {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #1a237e, #2196f3, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 900;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Shine Animation */
.logo-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-30deg);
    transition: left 0.7s ease-in-out;
}

/* Hover Animation */
.logo-effect:hover {
    transform: scale(1.15);
    text-shadow: 0px 0px 25px rgba(33, 150, 243, 0.9);
}

.logo-effect:hover::after {
    left: 100%;
}

/* Glossy Button Box */
.button-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Toggle Buttons */
.toggle-btn {
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, color 0.3s;
}

/* Active Button Style */
.active {
    color: #4f46e5;
    font-weight: bold;
}

/* Bouncy Effect */
.bouncy {
    animation: bounce 0.4s ease-in-out;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* 3D Gradient Banner */
.banner-bg {
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    overflow: hidden;
}

.banner-bg::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    transform: rotate(-25deg);
}

/* Image Hover Effects */
.banner-image {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.banner-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Banner Image Style */
.banner-main-image {
    max-width: 400px;
    margin: 1rem auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}


  /* Mini Service Cards */
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}



/* home html */

 /* Hide scrollbar */
 .scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}