 :root {
            --accent: #4ab7ff;     /* orange for button / highlights */
            --text-dark: #1c1d1f;
            --text-muted: #6c7077;
            --bg: #eff7ff;
            
            --info-bg:rgba(143, 251, 255, 0); 
            --info-clr:#a0d4ff36;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background:var(--bg);
            font-family: "Poppins", sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        /* === Hero Section === */
        .hero {
            background: var(--bg);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            padding: 110px 7%;
            min-height: 94vh;
        }

        .hero__content {
            flex: 1 1 420px;
            max-width: 520px;
        }
        .tag {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--accent);
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .hero__title {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero__text {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 90%;
        }
        .btn {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 500;
            padding: 14px 36px;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        .btn:hover {
            background: #0065c4;
        }

        .hero__image {
            box-shadow: 0 6px 14px rgba(0,0,0,0.35);  
            flex: 1 1 450px;
            text-align: center;
        }
            
/* === TITLE AND CARDS FOR SERVICES */
.title-slider{
    position:relative;
    margin-top: 100px;
    padding:60px 6% 40px;
   
}   

.title-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    justify-content:center;
    scroll-behavior:smooth;
}
    
.title-track::-webkit-scrollbar{
    display:none;
}

.title-slide{
    flex:0 0 220px;
    background:#ffffff;
    padding:14px 20px;
    border-radius:12px;
    text-align:center;
    font-family:"Times New Roman", serif;
    font-size:1.2rem;
    line-height:1.35;
    font-weight:60;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,.06);
    user-select:none;
    transition:background .25s,color .25s;
    scroll-snap-align:center;
    word-wrap:break-word;
}

.title-slide.active{
    background:var(--accent);
    color:#fff;
}

.nav-btn{
    position:absolute;
    top:50%;transform:translateY(-50%);
    width:42px;height:42px;border:none;
    border-radius:50%;background:#fff;
    box-shadow:0 3px 8px rgba(0,0,0,.15);
    cursor:pointer;font-size:1.2rem;
    font-weight:bold;display:grid;
    place-items:center;
    transition:background .25s;z-index:5;
}

.nav-btn:hover{
    background:var(--accent);
    color:#fff;
}
    
.nav-prev{
    left:12px
}
    
.nav-next{
    right:12px
}

 
       /* CSS FOR TITLE BUTTONS AND CARDS */
        .service-title{
            font-family: 'Times New Roman', Times, serif;
        }

        .button-container {
            margin-top: 100px;
            margin-left: 250px;
            margin-right: 250px;
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: space-between;
        }
        .button {
            flex: 1;
            padding: 1rem;
            background:var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .card-container {
            margin: 250px;
            display: none;
            gap: 1.5rem;
            margin-top: 1rem;
            animation: fadeIn 0.5s ease-out;
        }
        .card-container.active {
            display: flex;
        }
        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            width: 32%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        }
        .card-image {
            height: 123px;
            overflow: hidden;
        }
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-image img {
            transform: scale(1.05);
        }
        .card-content {
            padding: 1.5rem;
        }
        .card-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }
        .card-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
