
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2c5530;
            --secondary: #4a7c59;
            --accent: #f8b500;
            --text: #333;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --border: #e9ecef;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        /* Header Styles */
        .top-bar {
            background: linear-gradient(77deg, #1773d6 0%, #013059 97%);
            color: white;
            padding: 10px 0;
            font-size: 14px;
            position: relative;
            z-index: 1001; /* Increased z-index to prevent overlap */
        }
        @media(max-width:991px)
        {
            .top-bar{
                display: none;
            }
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .main-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .main-header.scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            transition: all 0.3s;
            position: relative;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover:after,
        .nav-menu a.active:after {
            width: 100%;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
        }

        .header-actions {
                display: flex
;
    gap: 15px;
    align-items: center;
    padding: 16px 59px;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: #e6a400;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 181, 0, 0.3);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 5px;
            z-index: 1001;
            top: 100%;
            left: 0;
            overflow: hidden;
            animation: fadeIn 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: var(--text);
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
            border-bottom: 1px solid var(--border);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: var(--light);
            color: var(--primary);
            padding-left: 25px;
        }

        .dropdown-content a i {
            margin-right: 10px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .dropdown-content a:hover i {
            transform: translateX(5px);
        }

        /* Services dropdown without icons and arrows */
        .services-dropdown .dropdown-content a i {
            display: none;
        }

        .services-dropdown .dropdown-content a {
            padding-left: 20px;
        }

        .services-dropdown .dropdown-content a:hover {
            padding-left: 25px;
        }

        /* Remove dropdown arrows from Services and Areas We Serve */
        .dropdown > a .fas.fa-chevron-down {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Updated Hero Section with Image */
        .hero {
            background: white;
            color: var(--text);
            padding: 80px 0;
            position: relative;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-logo {
            font-size: 4rem;
            font-weight: bold;
            color: #ea1b18;
            margin-bottom: 20px;
            line-height: 1;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 700;
        }

        .hero-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent);
            font-weight: 600;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--gray);
            line-height: 1.6;
        }

        .hero-image {
            position: relative;
        }

        .hero-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Service Detail Hero */
        .service-hero {
            background: linear-gradient(77deg, #1773d6 0%, #013059 97%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .service-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .service-hero p {
            font-size: 1.2rem;
            /*max-width: 600px;*/
            margin: 0 auto;
            opacity: 0.9;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: white;
            text-decoration: none;
        }

        .breadcrumb span {
            color: white;
            opacity: 0.8;
        }

        /* Services Section */
        .services {
            background: var(--light);
        }

        /* Section Title with Hover Effect */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .section-title h2:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
        }

        .section-title h2:hover:after {
            width: 100px;
            background: var(--secondary);
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            height: 380px;
            border: 1.5px solid #007bff;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .service-card:hover:before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-card p {
            color: var(--gray);
        }

        /* Service Detail Content */
        .service-detail {
            background: white;
        }

        .service-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .service-main-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .service-main-content p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
        }

        .service-features {
            margin: 30px 0;
        }

        .service-features h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: var(--light);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: white;
        }

        .feature-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 2px;
            transition: all 0.3s ease;
        }

        .feature-item:hover i {
            transform: scale(1.2);
            color: var(--accent);
        }

        .service-sidebar {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            position: sticky;
            top: 100px;
            transition: all 0.3s ease;
        }

        .service-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .service-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .service-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .service-list li:hover {
            padding-left: 10px;
            background: rgba(44, 85, 48, 0.05);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .service-list a:hover {
            color: var(--primary);
        }

        .service-list a i {
            color: var(--primary);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .service-list a:hover i {
            transform: translateX(5px);
        }

        /* Service Types Section */
        .service-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-type {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .service-type-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .service-type-content {
            padding: 30px;
        }

        .service-type-list {
            list-style: none;
        }

        .service-type-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            position: relative;
            padding-left: 30px;
        }

        .service-type-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .service-type-list li:last-child {
            border-bottom: none;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(77deg, #1773d6 0%, #013059 97%);
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        .cta h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        /* Updated Team Section */
        .team {
            background: var(--light);
        }

        .team-image-container {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .team-main-image {
                width: 100%;
    /* max-width: 800px; */
    height: 400px;
    object-fit: cover;
    transition: all 0.5s 
ease;
    border: 1px solid #007bff;
    border-radius: 17px;
        }

        .team-image-container:hover .team-main-image {
            transform: scale(1.05);
        }

        .team-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 85, 48, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .team-image-container:hover .team-image-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .team-image-container:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-content h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .overlay-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .team-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .team-feature {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .team-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .team-feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .team-feature:hover .team-feature-icon {
            color: var(--accent);
            transform: scale(1.2) rotate(5deg);
        }

        .team-feature h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .team-feature:hover h4 {
            color: var(--secondary);
        }

        .team-feature p {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        .team-divider {
            width: 100%;
            height: 2px;
            background: var(--border);
            margin: 40px 0;
        }

        /* Testimonials */
        .testimonials {
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--border);
            font-family: Georgia, serif;
            line-height: 1;
            display:none;
        }

        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
    top: -17px;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }

        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }

        .rating {
                color: var(--accent);
    margin-top: 4px;
    position: relative;
    top: -65px;
    left: 106px;
        }

        /* FAQ Section */
        .faq {
            background: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: #f9f9f9;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.active .faq-question {
            background: #f9f9f9;
            color: var(--primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* Service Area with Real Map */
        .service-area {
            text-align: center;
        }

        .area-map {
            margin: 40px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            height: 400px;
            position: relative;
        }

        .map-container {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-overlay {
            position: absolute;
                top: 7px;
    left: 7px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: left;
        }

        .map-overlay h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .map-overlay p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .area-selector {
            max-width: 500px;
            margin: 0 auto;
        }

        .select-wrapper {
            position: relative;
            margin-bottom: 20px;
        }

        .select-wrapper select {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            background: white;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            appearance: none;
        }

        .select-wrapper:after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            pointer-events: none;
        }

        /* Location Page Styles */
        .location-hero {
            background: linear-gradient(77deg, #1773d6 0%, #013059 97%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .location-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .location-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .location-content {
            background: white;
        }

        .location-main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .location-main-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .location-main-content p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
        }

        .location-features {
            margin: 30px 0;
        }

        .location-sidebar {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            position: sticky;
            top: 100px;
            transition: all 0.3s ease;
        }

        .location-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .location-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        /* Booking Form Styles */
        .booking-form {
            background: var(--light);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 40px;
        }

        .booking-form h3 {
            color: var(--primary);
            margin-bottom: 30px;
            text-align: center;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
        }

        /* About Us Page Styles */
        .about-hero {
            background: linear-gradient(77deg, #1773d6 0%, #013059 97%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .about-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .about-content {
            background: white;
        }

        .about-main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .about-main-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .about-main-content p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
        }

        .about-features {
            margin: 30px 0;
        }

        .about-sidebar {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            position: sticky;
            top: 100px;
            transition: all 0.3s ease;
        }

        .about-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .about-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .about-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .about-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .about-list li:hover {
            padding-left: 10px;
            background: rgba(44, 85, 48, 0.05);
        }

        .about-list li:last-child {
            border-bottom: none;
        }

        .about-list a {
            color: var(--text);
            text-decoration: none !important;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .about-list a:hover {
            color: var(--primary);
        }

        .about-list a i {
            color: var(--primary);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .about-list a:hover i {
            transform: translateX(5px);
        }

        /* Mission & Vision Section */
        .mission-vision {
            background: #99bfe594;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .mv-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mv-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248, 181, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .mv-card:hover:before {
            left: 100%;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .mv-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .mv-card:hover i {
            transform: scale(1.2) rotate(5deg);
            color: var(--accent);
        }

        .mv-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .mv-card:hover h3 {
            color: var(--secondary);
        }

        .mv-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Values Section */
        .values {
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-card {
                background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #007bff;
        }

        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .value-card:hover:before {
            transform: scaleX(1);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotate(5deg);
            color: var(--accent);
        }

        .value-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .value-card:hover h3 {
            color: var(--secondary);
        }

        .value-card p {
            color: var(--gray);
        }

        .expert-features {
            margin-top: 50px;
        }

        .expert-feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .expert-feature {
            padding: 30px 20px;
            background: var(--light);
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .expert-feature:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248, 181, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .expert-feature:hover:before {
            left: 100%;
        }

        .expert-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            background: white;
        }

        .expert-feature h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .expert-feature:hover h3 {
            color: var(--secondary);
        }

        .expert-feature p {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Contact Table */
        .contact-table {
            /*display: grid;*/
            display:none;
            grid-template-columns: 1fr 1fr;
            max-width: 600px;
            margin: 30px auto;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .contact-table:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .contact-cell {
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-cell:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: #fff !important;
            text-decoration: none !important;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--accent);
        }
        .lefts{
            text-align: left;
        }
        .rights{
            text-align: right;
        }

        @media(max-width:991px){
            .lefts , .rights
            {
                text-align: center !important;
            }
            .footer-column{
                    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
            }
        }

        .footer-about p {
            color: #bbb;
            margin-bottom: 20px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #000;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
            /*color: #000;*/
        }

        .contact-item i {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding: 20px 0;
            text-align: center;
            color: #bbb;
            font-size: 14px;
        }

        /* Page Content */
        .page-content {
            /* display: block; */
        }

        .page-content.active {
            display: block;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            z-index: 1000;
        }

        .mobile-menu-close {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1002;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .team-features, .expert-feature-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .service-content, .about-main-content, .location-main-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            
            .hero .container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .service-types, .mv-grid {
                grid-template-columns: 1fr;
            }
            
            .team-features, .expert-feature-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .header-actions {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.3s ease-in-out;
                z-index: 1000;
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-menu-close {
                display: block;
            }

            .nav-container {
                position: relative;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .header-actions {
                display: none;
            }

            .hero, .about-hero, .location-hero {
                padding: 60px 0;
            }

            .hero-content h1, .about-hero h1, .location-hero h1 {
                font-size: 2rem;
            }

            .hero-content h2 {
                font-size: 1.5rem;
            }

            .hero-main-image, .team-main-image {
                height: 300px;
            }

            .btn {
                padding: 10px 20px;
            }

            .section-padding {
                padding: 60px 0;
            }

            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 20px;
            }

            .team-features, .expert-feature-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .service-hero h1, .about-hero h1, .location-hero h1 {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .booking-form {
                padding: 20px;
            }
            
            /* Mobile dropdown styles */
            .dropdown-content {
                position: static;
                box-shadow: none;
                display: block;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background: var(--light);
                margin-top: 10px;
                border-radius: 5px;
            }
            
            .dropdown.active .dropdown-content {
                max-height: 500px;
            }

            .dropdown > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .dropdown > a:after {
                content: '\f078';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                transition: transform 0.3s ease;
            }

            .dropdown.active > a:after {
                transform: rotate(180deg);
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card, .testimonial-card, .value-card {
                padding: 20px;
            }
            
            .team-feature, .expert-feature {
                padding: 20px;
            }
            
            .hero-logo {
                font-size: 3rem;
            }
            
            .hero-content h1, .about-hero h1, .location-hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-content h2 {
                font-size: 1.3rem;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 8px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 8px;
            }
        }
    /*Blog css starts*/

.container1 {
    max-width: 1200px;
    margin: 50px auto;
    flex: 1;
}

.blog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.blog {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    /*flex: 1 0 calc(33.33% - 20px);*/
    display: flex;
    flex-direction: column;
    width : 385px ;
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.blog-image img:hover {
    transform: scale(1.05);
}

.blog-image .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ea1b1c;
}

.blog-content p {
    flex-grow: 1;
    color: #000;
    margin-bottom: 20px;
}

.blog-content a {
    align-self: flex-start;
    background-color: #047ee4;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.blog-content a:hover {
    background-color: #ea1b1c;
    text-decoration:none;
    color:#fff;
}

@media (max-width:768px)
{
    .blog
    {
        max-width:80%;
                margin: 10px 43px;
    }
}

/*ends*/

.hero-logo h4{
        font-size: 20px;
            color: #007bff;

}