 :root {
            --primary: #FFD700 !important;
            --bs-primary:#FFD700 !important;
            --bs-primary-rgb: 255, 215, 0 !important;
            --primary-dark: #FFC107;
            --primary-light: #FFF8E1;
            --secondary: #212529;
            --light: #F8F9FA;
            --dark: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }
        
        /* Top Header */
        .top-header {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: var(--dark);
            padding: 10px 0;
            font-size: 14px;
            font-weight: 400;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .social-icons a {
            color: var(--dark);
            margin-right: 15px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: white;
            transform: translateY(-3px);
        }
        
        .contact-info i {
            color: var(--dark);
            margin-right: 5px;
        }
        
        /* Navigation */
        .navbar {
            padding: 15px 0;
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 28px;
            color: var(--dark) !important;
        }
        
        .navbar-brand span {
            color: var(--primary);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            margin: 0 10px;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: all 0.3s;
        }
        
        .nav-link:hover:before, .nav-link.active:before {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-dark) !important;
        }
        
        .nav-link.active {
            color: var(--primary-dark) !important;
        }
        
        /* Slider */
        .carousel-item {
            height: 600px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
        }
        
        .carousel-caption {
            bottom: 180px;
        }
        
        .carousel-caption h5 {
            font-size: 60px;
            font-weight: 600;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            color: white;
        }
        
        .carousel-caption p {
            font-size: 20px;
            margin-top: 20px;
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            border: none;
            color: var(--dark);
            font-weight: 500;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            color: var(--dark);
        }
        
        /* Working Process */
        .process-section {
            padding: 80px 0;
            background-color: var(--primary-light);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
        }
        
        .section-title h6 {
            color: var(--primary-dark);
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .section-title h1 {
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
            color: var(--dark);
        }
        
        .section-title h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            transition: all 0.3s;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
            border: 1px solid #FFC505;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #FFC505;
        }
        
        .process-icon {
            width: 130px;
            height: 130px;
            background: white;
            border: 8px solid var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .process-step:hover .process-icon {
            border-color: var(--primary);
            transform: scale(1.05);
        }
        
        .process-icon img {
            width: 60px;
            height: auto;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .about-img {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-img:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 6px solid var(--primary);
            top: 15px;
            left: 15px;
            z-index: -1;
            border-radius: 10px;
        }
        
        .about-img img {
            border-radius: 10px;
            transition: all 0.5s;
            width: 100%;
        }
        
        .about-img:hover img {
            transform: scale(1.03);
        }
        
        .about-content h6 {
            color: var(--primary-dark);
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .about-content h1 {
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .about-content h5 {
            font-style: italic;
            font-weight: 400;
            margin-bottom: 20px;
            color: #555;
            border-left: 3px solid var(--primary);
            padding-left: 15px;
        }
        
        .feature-item {
            margin-bottom: 10px;
        }
        
        .feature-item i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 16px;
        }
        
        /* Why Us Section */
        .why-us-section {
            padding: 80px 0;
            background-color: var(--primary-light);
        }
        
        .why-card {
            text-align: center;
            padding: 30px 25px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            transition: all 0.3s;
            margin-bottom: 30px;
            border: 1px solid #FFC505;
        }
        
        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #FFC505;
        }
        
        .why-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: white;
            transition: all 0.3s;
        }
        
        .why-card:hover .why-icon {
            transform: rotateY(180deg);
        }
        
        .why-card h3 {
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .why-card p {
            color: #666;
            font-size: 15px;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: var(--dark);
            padding-top: 70px;
        }
        
        .footer-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .footer-title span {
            color: var(--dark);
        }
        
        .footer-links a {
            color: var(--dark);
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
            text-decoration: none;
            font-weight: 400;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-links i {
            color: var(--dark);
            margin-right: 10px;
            font-size: 12px;
        }
        
        .footer-social a {
            width: 38px;
            height: 38px;
            background: transparent;
            border: 1px solid var(--dark);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--dark);
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            background: rgba(0,0,0,0.08);
            padding: 18px 0;
            margin-top: 50px;
            font-weight: 400;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .carousel-item {
                height: 500px;
            }
            
            .carousel-caption h5 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .carousel-item {
                height: 400px;
            }
            
            .carousel-caption {
                bottom: 100px;
            }
            
            .carousel-caption h5 {
                font-size: 30px;
            }
            
            .carousel-caption p {
                font-size: 16px;
            }
            
            .top-header .contact-info span {
                display: block;
                margin-bottom: 5px;
            }
            
            .footer-links, .footer-social {
                margin-bottom: 30px;
            }
        }

        /* SEO Optimization */
        .seo-content {
            padding: 40px 0;
            background-color: white;
        }
        
        .seo-content h2 {
            color: var(--dark);
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .seo-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        /* Additional Beautification */
        .divider {
            height: 3px;
            width: 50px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            margin: 15px 0;
            border-radius: 2px;
        }
        
        .testimonial-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .testimonial-card {
            padding: 25px;
            border-radius: 12px;
            background: var(--primary-light);
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            margin: 15px;
            border: 1px solid #ffefc6;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid var(--primary);
        }



        .page-header {
      background: linear-gradient(135deg,var(--primary), var(--primary-dark));
      color: white;
      padding: 2rem;
      text-align: center;
      border-radius: 0 0 1rem 1rem;
      margin-bottom: 2rem;
    }
    .page-header h1 {
      font-weight: 400px;
      font-size: 2rem;
    }
    .card {
      border-radius: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
    }
    .card-header {
      background: linear-gradient(135deg,var(--primary), var(--primary-dark));
      color: white;
      font-weight: 400px;
      border-radius: 1rem 1rem 0 0 !important;
    }
    table th {
      background-color: #f1f1f1;
    }



    
    .contact-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 30px;
      margin-bottom: 30px;
      transition: all 0.3s ease-in-out;
    }
    .contact-card:hover {
      transform: translateY(-5px);
    }
    .form-control, .btn {
      border-radius: 10px;
    }

    .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }



    /* Fix service image size */
.service-img {
  height: 220px;        /* same height for all */
  object-fit: contain;    /* crop instead of stretching */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Yellow border for service cards */
.service-card {
  border: 1px solid #FFC505 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
