        /* Base Styles */
        :root {
            --primary: #891944;    /* Deep Burgundy */
            --secondary: #027596;  /* Ocean Blue */
            --accent: #008E74;     /* Emerald Green */
            --light: #f8f9fa;
            --white: #ffffff;
            --text: #2d3748;
            --text-light: #718096;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(137, 25, 68, 0.1), 0 2px 4px -1px rgba(2, 117, 150, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 142, 116, 0.1), 0 4px 6px -2px rgba(2, 117, 150, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-Schedule {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
            background: #ffffff;
            color: #000;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: #ffffff;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            color: var(--accent);
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            z-index: -1;
            border-radius: 4px;
        }

        /* .btn-outline:hover {
            color: var(--white);
        } */

        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.0rem;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--white);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 0.5rem 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--text);
            font-weight: 500;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: #000; /* Fallback for browsers that don't support video */
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            -ms-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            background-size: cover;
        }

        .video-overlay {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Dark overlay */
            z-index: 1;
        }

        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 20; /* Increased z-index to ensure it's above the video and overlay */
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards 0.5s;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-color: #ffffff;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards 0.8s;
            color: #ffffff;
        }

        .hero-btns {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards 1.1s;
        }

        .hero-btns .btn {
            margin-right: 1rem;
        }

        /* Animated Background Elements */
        .hero-shapes {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), rgba(137, 25, 68, 0.3));
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--secondary), rgba(2, 117, 150, 0.3));
            top: 50%;
            right: 20%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--accent), rgba(0, 142, 116, 0.3));
            bottom: 10%;
            right: 30%;
            animation-delay: 4s;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(153deg,
                rgba(137, 25, 68, 0.95) 5%,
                rgba(2, 117, 150, 0.95) 50%,
                rgba(0, 142, 116, 0.95) 100%);
            color: var(--white);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(137, 25, 68, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 142, 116, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(2, 117, 150, 0.3) 0%, transparent 50%);
            z-index: 1;
        }

        .stats .container {
            position: relative;
            z-index: 2;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .stat-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            border-top: 4px solid;
            border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow:
                0 20px 40px -10px rgba(137, 25, 68, 0.15),
                0 10px 20px -5px rgba(2, 117, 150, 0.1),
                0 5px 10px -3px rgba(0, 142, 116, 0.08);
        }

        .service-icon {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card ul {
            padding-left: 1.5rem;
            margin-top: 1rem;
        }

        .service-card li {
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .about-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            opacity: 0;
            transform: translateX(-50px);
        }

        .about-card.right {
            transform: translateX(50px);
        }

        .about-card.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease;
        }

        .about-text {
            padding: 2rem;
        }

        .about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 400px;
            background-color: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg,
                rgba(137, 25, 68, 0.1),
                rgba(2, 117, 150, 0.1),
                rgba(0, 142, 116, 0.1));
            z-index: 1;
        }

        .about-image i {
            position: relative;
            z-index: 2;
            font-size: 5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-card.right .about-text {
            order: 2;
        }

        .about-card.right .about-image {
            order: 1;
        }

        /* Process Section */
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 3rem;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 1rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white !important;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            z-index: 3;
            box-shadow: 0 4px 15px rgba(137, 25, 68, 0.2);
        }

        /* Team Section */
        .team {
            background-color: var(--light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .team-member:hover::before {
            transform: scaleX(1);
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .member-image {
            height: 250px;
            background-color: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: linear-gradient(45deg,
                rgba(137, 25, 68, 0.1),
                rgba(2, 117, 150, 0.1));
        }

        .member-image i {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .member-info {
            padding: 1.5rem;
            text-align: center;
        }

        .member-info h3 {
            margin-bottom: 0.5rem;
        }

        .member-role {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Testimonials Section */
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background-color: var(--white);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin: 0 1rem;
            opacity: 0;
            transform: translateY(30px);
            border-left: 4px solid;
            border-image: linear-gradient(to bottom, var(--primary), var(--accent)) 1;
        }

        .testimonial.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            margin-right: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        .author-info h4 {
            margin-bottom: 0.2rem;
        }

        .author-role {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg,
                rgba(137, 25, 68, 0.9) 0%,
                rgba(2, 117, 150, 0.9) 50%,
                rgba(0, 142, 116, 0.9) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .cta .container {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .cta .btn {
            background: var(--white);
            color: var(--primary);
            animation: pulse 2s infinite;
        }

        .cta .btn:hover {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(20, 20, 20, 0.95) 100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: translateY(-3px) scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(-10px) rotate(240deg);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-card {
                grid-template-columns: 1fr;
            }

            .about-card.right .about-text {
                order: 1;
            }

            .about-card.right .about-image {
                order: 2;
            }
        }

        /* Mobile Menu Styles */
        @media (max-width: 768px) {

            .hero {
               top: 60px;
            }
            .navbar {
                padding: 1rem 0;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 999;
                display: none; /* Initially hidden */
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                display: flex; /* Show when active */
                height: 100vh;
                overflow-y: auto;
            }

            .nav-links li {
                margin: 1rem 0;
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 0.8rem 1rem;
                font-size: 1.1rem;
            }

            .hamburger {
                display: block;
                z-index: 1000;
            }

            .hero h1 {
                font-size: 2.0rem;
            }

            .hero-shapes {
                display: none;
            }

            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }

            .process-steps::before {
                display: none;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles */
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important; /* Force display on desktop */
                position: static;
                transform: none;
                opacity: 1;
                background: none;
                box-shadow: none;
                padding: 0;
            }

            .hamburger {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero {
                top: 45px;
             }
            .stats-container {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                display: flex;
                flex-direction: column; /* Stacks them by default, will override for row below */
                gap: 1rem; /* Space between buttons */
            }

            .hero-btns .btn {
                width: auto; /* Allow buttons to take natural width */
                flex-grow: 1; /* Allow buttons to grow and fill space */
                text-align: center; /* Center text within buttons */
                margin-right: 0; /* Remove extra margin */
            }
            @media (min-width: 320px) { /* Adjust breakpoint as needed for very small screens */
                .hero-btns {
                    flex-direction: row; /* Arrange in a row on smaller screens */
                    flex-wrap: wrap; /* Allow wrapping if buttons are too wide */
                    justify-content: center; /* Center buttons horizontally */
                }
            }

            .service-card {
                padding: 1.5rem;
            }
        }

        /* additional css */

        /* Additional styles for new pages */
.service-section {
    margin-bottom: 4rem;
}

.service-category {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.05), rgba(2, 117, 150, 0.05));
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.tag {
    background: rgba(137, 25, 68, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.share-section .social-links {
    display: flex;
    gap: 1rem;
}

.share-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    color: var(--text);
    transition: all 0.3s ease;
}

.share-section .social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* Form Styles */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(137, 25, 68, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

/* Clickable Cards */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-count {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
}
/* Small Hero Section */
.blog-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg,
        rgba(137, 25, 68, 0.05) 0%,
        rgba(2, 117, 150, 0.08) 50%,
        rgba(0, 142, 116, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.breadcrumbs ol {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: var(--primary);
}
breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-light);
    opacity: 0.5;
}
.breadcrumbs li[aria-current="page"] {
    color: var(--primary);
    font-weight: 500;
}
@media (max-width: 992px) {
    .blog-hero {
    padding: 8rem 0 3rem;
}
}
@media (max-width: 768px) {
    .hide-on-mobile{
        display: none !important;
    }
    .blog-hero {
        padding: 4rem 0 2rem;
    }
  .blog-hero h1 {
        font-size: 2rem;
    }
  .blog-hero .subtitle {
        font-size: 1rem;
    }
    .breadcrumbs ol {
        font-size: 0.85rem;
    }
}
@media (max-width: 576px) {
    .hide-on-mobile{
        display: none !important;
    }
    .blog-hero {
        /* padding: 3rem 0 1.5rem; */
        padding: 8rem 0 1rem;
    }
    .blog-hero h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .hide-on-mobile{
        display: none !important;
    }
    .blog-hero h1 {
        font-size: 1.6rem;
    }
    .blog-hero .subtitle {
        font-size: 0.95rem;
    }
}

.founder-message-content {
    margin-top: 3rem;
}

.founder-image {
    width: 300px; /* Or any desired fixed width */
    height: 300px; /* Or any desired fixed height */
    overflow: hidden; /* Ensures image doesn't spill out */
    border-radius: 8px; /* Optional: adds rounded corners */
    box-shadow: var(--shadow-lg); /* Optional: adds a shadow */
    margin: 0 auto 2rem auto; /* Center image and add some bottom margin for spacing */
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.founder-bio {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .founder-image {
        margin: 0; /* Remove auto margin on larger screens */
    }
}

@media (max-width: 767px) {
    .founder-message-content .row {
        flex-direction: column; /* Stack columns on small screens */
    }
}


/* contact-us */
#contactForm input,
#contactForm select,
#contactForm textarea {
    transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(137, 25, 68, 0.1);
}

/* services-page */

.service-section {
    margin-bottom: 4rem;
}

.service-category {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}
