      @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
      
      /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        body a{
            text-decoration: none;
        }
        
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.2rem;
            color: #000;
        }
        
        .section-title span {
            color: #ff6b00;
        }
        
        .btn {
            display: inline-block;
            background-color: #ff6b00;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e55d00;
            transform: translateY(-2px);
        }
        
                     /* Header Styles */
        header {
            background-color: #000;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            transition: transform 0.3s;
        }
        
        .logo img:hover {
            transform: scale(1.05);
        }
        
        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .desktop-nav ul li a {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 0;
            position: relative;
            text-decoration: none;
        }
        
        .desktop-nav ul li a:hover {
            color: #00b300;
        }
        
        .desktop-nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #00b300;
            transition: width 0.3s;
        }
        
        .desktop-nav ul li a:hover::after {
            width: 100%;
        }
        
        .auth-buttons {
            display: flex;
            gap: 15px;
        }
        
        .auth-buttons a {
            color: white;
            font-weight: 500;
            text-decoration: none;
        }
        
        .auth-buttons .btn-outline {
            border: 2px solid #00b300;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .auth-buttons .btn-outline:hover {
            background-color: #00b300;
            color: white;
        }
        
        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background-color: #000;
            padding: 20px;
            z-index: 99;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav ul li {
            margin-bottom: 15px;
        }
        
        .mobile-nav ul li a {
            color: white;
            font-weight: 500;
            font-size: 1.2rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #333;
            transition: color 0.3s;
            text-decoration: none;
        }
        
        .mobile-nav ul li a:hover {
            color: #00b300;
        }
        
        .mobile-auth-buttons {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .mobile-auth-buttons a {
            display: block;
            text-align: center;
            padding: 12px;
            border: 2px solid #00b300;
            border-radius: 4px;
            color: white;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .mobile-auth-buttons a:hover {
            background-color: #00b300;
        }
        
        /* Responsive Design for Header */
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            
            .auth-buttons {
                display: none;
                text-decoration: none;
            }
            
            .mobile-nav-toggle {
                display: block;
            }
            
            .mobile-nav {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                padding: 0 15px;
            }
            
        .logo img {
            height: 60px;
            transition: transform 0.3s;
        }
        }

        /* Demo Content */
        .content {
            padding: 50px 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .screen-size {
            background: #00b300;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            display: inline-block;
            margin-top: 20px;
        }
        
              /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Assets/Home/Ranger\ Home\ Hero.jpg') no-repeat center center;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .search-box {
            background: white;
            border-radius: 50px;
            padding: 8px;
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .search-box input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            outline: none;
            font-size: 1rem;
        }
        
        .search-box button {
            background: #00b300;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .search-box button:hover {
            background: #008a00;
            transform: translateY(-2px);
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00b300;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .search-box {
                flex-direction: column;
                border-radius: 15px;
                padding: 15px;
                gap: 10px;
            }
            
            .search-box input {
                border-radius: 10px;
                text-align: center;
            }
            
            .search-box button {
                border-radius: 10px;
                padding: 12px;
            }
            
            .hero-stats {
                gap: 25px;
                margin-top: 40px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-item {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Categories Section */
/* Categories section container */
        .categories {
            padding: 60px 20px;
        }

        /* Inner container for centering content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section title styling */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: #000;
        }

        .section-title span {
            color: #00b300; /* A vibrant color for the span */
        }

        /* Categories grid layout */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Individual category card styling */
        .category-card {
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        /* Hover effect for the cards */
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        /* Image inside the card */
        .category-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        /* Image zoom effect on card hover */
        .category-card:hover img {
            transform: scale(1.05);
        }

        /* Content area inside the card */
        .category-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
        }

        /* Heading inside the card */
        .category-content h3 {
            font-size: 1.5rem;
            margin: 0 0 10px;
            color: #00b300;
        }

        /* Paragraph text inside the card */
        .category-content p {
            font-size: 1rem;
            color: #7f8c8d;
            margin: 0 0 20px;
        }

        /* Button styling */
        .category-content .btn {
            display: inline-block;
            background-color: #00b300;
            color: #ffffff;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            margin-top: auto; /* Pushes the button to the bottom */
        }

        /* Button hover effect */
        .category-content .btn:hover {
            background-color: #000;
            transform: translateY(-2px);
        }

        /* Media queries for responsiveness */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .categories {
                padding: 40px 15px;
            }
        }
        /* How It Works Section Styling */
        .how-it-works {
            padding: 60px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .step {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .step-icon {
            font-size: 2.5rem;
            color: #00b300;
            margin-bottom: 20px;
        }

        .step h3 {
            font-size: 1.5rem;
            color: #00b300;
            margin: 0 0 10px;
        }

        .step p {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
        }
        
/* --- Featured Professionals Section Styling --- */
        .featured-pros {
            padding: 60px 20px;
        }

        .pros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pro-card {
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .pro-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .pro-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .pro-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
        }

        .pro-content h3 {
            font-size: 1.8rem;
            margin: 0;
            color: #2c3e50;
        }

        .pro-content .rating {
            color: #ffc107; /* Star color */
            font-size: 1.2rem;
            margin: 10px 0;
        }

        .pro-content .rating span {
            font-size: 1rem;
            color: #7f8c8d;
            margin-left: 5px;
        }

        .pro-content .specialty,
        .pro-content .price {
            font-size: 1rem;
            color: #7f8c8d;
            margin: 5px 0;
        }

        /* Button styling for Featured Professionals */
        .pro-content .btn {
            display: inline-block;
            background-color: #00b300; /* Changed to #00b300 */
            color: #ffffff;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 255, 0, 0.3); /* Changed to #00b300 shadow */
            margin-top: auto;
        }

        .pro-content .btn:hover {
            background-color: #00b300; /* Darker green on hover */
            transform: translateY(-2px);
        }

        
        /* --- Testimonials Section Styling --- */
        .testimonials {
            padding: 80px 20px;
            position: relative;
            color: #ffffff;
            text-align: center;
            overflow: hidden; /* Ensures the pseudo-element doesn't go outside the section */
        }
        
        .testimonials::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
            z-index: 1;
        }
        
        .testimonials .container {
            position: relative;
            z-index: 2; /* Puts content above the overlay */
        }

        .testimonials .section-title {
            color: #ffffff;
        }
        
        .testimonials .section-title span {
            color: limegreen;
        }

        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.1); /* Semi-transparent card background */
            backdrop-filter: blur(5px); /* Adds a subtle blur effect */
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            margin-top: 20px;
            font-size: 1rem;
            color: limegreen;
        }
        
        /* --- CTA Section Styling --- */
        .cta-section {
            background-color: #000;
            color: #ffffff;
            padding: 80px 20px;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            color: #bdc3c7;
            margin-bottom: 30px;
        }
        
        .cta-section .btn {
            background-color: limegreen;
            color: #ffffff;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 255, 0, 0.3);
            display: inline-block;
        }
        
        .cta-section .btn:hover {
            background-color: #00b300;
            transform: translateY(-2px);
        }

        /* --- Footer Styling --- */
        footer {
            background-color: #000;
            color: #bdc3c7;
            padding: 60px 20px 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: limegreen;
            border-radius: 2px;
        }
        
        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: #ffffff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: limegreen;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .copyright p span {
            color: limegreen;
            font-weight: 600;
        }


        /* Media queries for responsiveness */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .categories, .how-it-works, .featured-pros, .testimonials, .cta-section, footer {
                padding: 40px 15px;
            }
        }