
        :root {
            --primary-orange: #FB923C;
            --light-orange: #FFF7ED;
            --medium-orange: #FDBA74;
            --dark-text: #1f2937;
            --light-text: #6b7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-orange) !important;
        }

        .navbar-brand i {
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        .btn-cta {
            background: var(--primary-orange);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }

        .btn-cta:hover {
            background: var(--medium-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-orange) 0%, var(--primary-orange) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://eliphaz.in/wp-content/uploads/2019/05/s2.jpg') center/cover;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 7rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: white;
            margin-bottom: 30px;
        }

        .btn-hero {
            background: white;
            color: var(--primary-orange);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-hero:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--light-text);
            margin-bottom: 50px;
        }

        /* About Section */
        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content {
            padding: 20px;
        }

        .btn-read-more {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            color: var(--medium-orange);
            transform: translateX(5px);
        }

        /* Counter Section */
        .counter-section {
            background: var(--light-orange);
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-orange);
        }

        .counter-label {
            font-size: 1.1rem;
            color: var(--dark-text);
            font-weight: 600;
        }

        /* Vision & Mission */
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-5px);
        }

        .vm-card i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .vm-card h3 {
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(251, 146, 60, 0.2);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .feature-card h4 {
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        /* Service Cards */
        .service-card {
            background: var(--light-orange);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .nav-item{
            margin-left:35px !important;
        }

        .service-card-body {
            padding: 30px;
        }

        .service-card-body h4 {
            color: var(--dark-text);
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Review Cards */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-stars {
            color: #FFC107;
            margin-bottom: 15px;
        }

        .review-text {
            font-style: italic;
            color: var(--light-text);
            margin-bottom: 20px;
        }

        .review-author {
            font-weight: bold;
            color: var(--dark-text);
        }

        .review-location {
            color: var(--light-text);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--medium-orange) 100%);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Contact Section */
        .contact-section {
            background: var(--light-orange);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-right: 20px;
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--primary-orange);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--medium-orange);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
