 /* Global Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
header {
    background-color: #00796B;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a{
    color: white;
    text-decoration: none;
}

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

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #B2DFDB;
}

/* Hero Section - Top part of Z */
.hero {
    background-color: #00796B;
    color: white;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

.hero-image {
    flex: 1;
    background-color: #E0F2F1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00796B;
    font-size: 24px;
    border-radius: 8px;
}

/* Feature Section 1 - Diagonal of Z */
.feature-diagonal {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.feature-card-large {
    width: 80%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 40px;
}

.feature-card-large:nth-child(odd) {
    align-self: flex-start;
}

.feature-card-large-content {
    padding: 30px;
}

.feature-card-large h2 {
    color: #004D40;
    margin-bottom: 15px;
    font-size: 26px;
}

.feature-card-large h3 {
    color: #00796B;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Feature Grid - Bottom of Z */
.feature-grid {
    margin: 60px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card-img {
    height: 180px;
    background-color: #E0F2F1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00796B;
    font-weight: bold;
    overflow: hidden;
}

.feature-card-content {
    padding: 20px;
}

.feature-card h4 {
    margin-bottom: 10px;
    color: #00796B;
}

/* CTA Section */
.cta {
    background-color: #004D40;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin: 40px 0;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    max-width: 50%;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #00796B;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00897B;
}

/* Blog Content */
.blog-content {
    background-color: white;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.blog-content h2 {
    color: #004D40;
    margin: 30px 0 15px;
    font-size: 26px;
}

.blog-content h3 {
    color: #00796B;
    margin: 20px 0 10px;
    font-size: 20px;
}

.blog-content p {
    margin-bottom: 15px;
}
.hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bgimg{
object-fit: contain;
width: 100%;
margin-top: 61px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .feature-card-large {
        width: 100%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cta {
        text-align: center;
    }
    
    .cta-container {
        justify-content: center;
    }
    
    .cta-content {
        max-width: 100%;
    }
    .flexCont{
        
        flex-direction: column;
    }
}