
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        a {
            text-decoration: none;
        }
        
        .btn {
            display: inline-block;
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }
        
        /* Header Styles */
       /* Header Styles */
header {
    background-color: #f7f9fc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.company-name h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2a5d9f; /* Primary blue color */
    margin: 0;
    line-height: 1.2;
}

.company-name h1 span {
    color: #37b24d; /* Accent green color */
}

.tagline {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: #2a5d9f;
}

.nav-menu li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a5d9f;
}

.contact-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #37b24d;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.contact-button .btn:hover {
    background-color: #2b9a3f;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .brand {
        flex-grow: 1;
    }
    
    nav {
        display: none;
    }
    @media (max-width: 768px) {
        .brand {
            flex-grow: 1;
        }
        
        nav {
            display: none;
        }
        
        .mobile-menu-btn {
            display: block;
        }
        
        /* Add your new styles here (around line 162) */
        .header-container .btn {
            margin-right: 15px; /* Add space between call button and menu button */
        }
        
        /* If you have this line, you can remove it or modify it */
        .contact-button {
            display: none;
        }
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .contact-button {
        display: none;
    }
}

@media (max-width: 576px) {
    .company-name h1 {
        font-size: 20px;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .logo img {
        height: 40px;
    }
}
        
        /* Hero Section Styles */
        .hero {
            background-image: url('main.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            position: relative;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        
        /* About Section Styles */
        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            color: #007bff;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .about-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .about-content p {
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
        }
        
        /* Services Section Styles */

        .services-section {
            background-color: #1d3146;
            padding: 35px 0 30px;
            text-align: center;
        }
        
        .services-section h1 {
            color: #fdfeff;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .services-section h2 {
            color: #fdfeff;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }



        
        .services-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #555;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin: 20px 0;
            color: #007bff;
        }
        
        .service-card p {
            color: #555;
            line-height: 1.6;
        }
        
        .service-icon {
            font-size: 3rem;
            color: #007bff;
        }
        
      /* Provider Section Styles */
.provider-section {
    padding: 80px 0;
    background-color: #007bff;
    color: white;
    overflow: hidden;
}

.provider-container {
    display: flex;
    align-items: stretch; /* Changed from flex-start to stretch to make heights match */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.provider-left {
    flex: 1;
}

.provider-right {
    flex: 0 0 350px;
    display: flex; /* Added to ensure full height */
}

.provider-content {
    text-align: center; /* Changed to center for alignment with screenshot 1 */
    max-width: 100%;
    margin-bottom: 40px;
}

.provider-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.provider-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed to 3 columns as in screenshot 1 */
    gap: 20px;
    margin-top: 30px;
}

.service-type {
    background-color: white;
    color: #333;
    height: 250px; /* Increased height to accommodate text */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    perspective: 1000px;
}

.service-type:hover .service-front{
    transform: rotateY(180deg);
}
.service-type:hover .service-back {
    transform: rotateY(0);
}

.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.service-back {
    transform: rotateY(180deg);
    /*overflow-y: auto;*/
}
.service-back {
    transform: rotateY(-180deg);
}
.service-type img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-type h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.service-type p {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.stats-image {
    position: relative;
    height: 100%; /* This ensures the stats image takes full height */
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Increased gap for better spacing */
    padding: 20px;
}

.stat-overlay-item {
    text-align: center;
    color: white;
}

.stat-overlay-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-overlay-item p {
    font-size: 1rem;
    color: white;
}

/* Add responsive styles */
@media (max-width: 992px) {
    .provider-container {
        flex-direction: column;
    }
    
    .provider-right {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: 500px; /* Fixed height for mobile */
    }
    
    .provider-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-type {
        height: 220px;
    }
    
    .service-type img {
        width: 50px;
        height: 50px;
    }
    
    .service-type h3 {
        font-size: 1.1rem;
    }
    
    .service-type p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .service-types {
        grid-template-columns: repeat(1, 1fr);
    }
}
        
        /* Stats Section Styles */
        .stats-section {
            padding: 50px 0;
            background-color: #f9f9f9;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-item h2 {
            font-size: 3rem;
            color: #007bff;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            color: #555;
            font-size: 1.2rem;
        }
        
        /* Blog Section Styles */
        .blog-section {
            padding: 80px 0;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .blog-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: #007bff;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more span {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover span {
            transform: translateX(5px);
        }
        
        /* Our Vision Section */
        .vision-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .vision-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .vision-content {
            flex: 1;
        }
        
        .vision-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .vision-content p {
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }
        
        .vision-image {
            flex: 1;
        }
        
        .vision-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Who We Are Section */
        .who-we-are-hero {
            background-image: url('main.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            position: relative;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .who-we-are-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }
        
        .who-we-are-title {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .who-we-are-title h1 {
            font-size: 3rem;
        }
        
        /* Contact Section Styles */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .contact-info p {
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #007bff;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        .contact-detail h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .contact-detail p {
            margin: 0;
            color: #555;
        }
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #555;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer Styles */
        footer {
            background-color: #007bff;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .newsletter-form {
            margin-top: 20px;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }
        
        .social-link:hover {
            background-color: white;
            color: #007bff;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container, .vision-container {
                flex-direction: column;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2, .about-content h3, .vision-content h2, .contact-info h2 {
                font-size: 2rem;
            }
            
            .service-types {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2, .about-content h3, .vision-content h2, .contact-info h2 {
                font-size: 1.8rem;
            }
            
            .stat-item h2 {
                font-size: 2.5rem;
            }
        }
        
        /* Blog Post Page */
        .blog-post {
            padding: 80px 0;
        }
        
        .blog-post-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .blog-post-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .blog-post-image img {
            width: 100%;
        }
        
        .blog-post-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .blog-post-content p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .blog-post-meta {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            color: #777;
        }
        
        .blog-post-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .blog-post-meta i {
            margin-right: 5px;
        }
        
        .comments-section {
            margin-top: 50px;
        }
        
        .comments-section h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
        
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            height: 150px;
            resize: vertical;
            margin-bottom: 20px;
        }
        
        .comment-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .comment-form .form-row {
            display: flex;
            gap: 20px;
        }
        
        .comment-form .form-row .form-group {
            flex: 1;
        }
        
        @media (max-width: 768px) {
            .comment-form .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .blog-post-content h1 {
                font-size: 2rem;
            }
        }
        
        /* Our Stats Section */
        .our-stats {
            position: relative;
            background-color: #007bff;
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            overflow: hidden;
        }
        
        .our-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('ourstats.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .our-stats-content {
            position: relative;
            z-index: 1;
        }
        
        .our-stats h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
