        :root {
            --primary-color: #FBC224;
            --secondary-color: #000000;
            --accent-color: #F8F9FA;
            --text-dark: #1e293b;
            --gradient: linear-gradient(135deg, #fae9bb 0%, #FBC224 100%);
        }

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prlink a{color:#FBC224}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.excards {
    padding-top: 20px;
    padding-bottom: 20px;
}


        body {
            font-family: Lato, Tahoma, Verdana, sans-serif;
            font-weight: 400;
            line-height: 1.6;
            
            color: var(--text-dark);
        }

        h1, h2, h3 {
            font-family: Lato, Tahoma, Verdana, sans-serif;
            font-weight:700;
            
        }

        .hero-section {
            background: var(--gradient);
            color: rgb(18, 16, 16);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
           /*  disabled because button was not working position: absolute; */
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-section p {color: rgb(18, 16, 16);}

        .section-padding {
            padding: 200px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }


       

        .card {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-radius: 15px;
            overflow: hidden;
        }

      .pricee h2{
        color: #E3A604;
      }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .package-card {
            position: relative;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .package-card.featured {
            background: var(--gradient);
            color: rgb(8, 8, 8);
            transform: scale(1.05);
        }

        .package-card.featured .card-header {
            background: rgba(255,255,255,0.1);
        }

        .contact-section {
            background: var(--accent-color);
            
        }

      .viaemail {
        padding-top: 50px; 
            padding-bottom: 80px;
      }

        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #d8af1d;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }

        .case-study-img {
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .navbar {
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.95);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .display-4 {
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 4rem;
        }

        .lead {
            font-size: 1.35rem;
            color: rgba(255,255,255,0.9);
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--gradient);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: 100%;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            padding-right: calc(50% + 40px);
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            padding-left: calc(50% + 40px);
            text-align: left;
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 0 0 10px white, 0 0 20px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .timeline-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border: 2px solid transparent;
        }

        .timeline-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .timeline-card h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .timeline-features {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }

        .timeline-features li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--secondary-color);
        }

        .timeline-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }
            
            .timeline-marker {
                left: 30px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                padding-left: 80px;
                padding-right: 0;
                text-align: left;
            }
        }

  