:root {
    --primary-color: #0066cc;
    --secondary-color: #00aaff;
    --dark-color: #333;
    --light-color: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text p {
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 300;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-link {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_banner.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature p {
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}


.about-preview {
    padding: 60px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.about-card p {
    color: #555;
    font-size: 1rem;
}

.testimonial-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.testimonial-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    position: relative;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.testimonial-content::before {
    content: "“";
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

.main-footer {
    background-color: #f0f0f0; /* light gray */
    padding: 60px 0 30px;
    color: #333;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    color: #555;
    transition: color 0.3s ease;
}

.footer-links li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-contact li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-logo img {
    width: 140px;
    margin-bottom: 10px;
}

.footer-logo p {
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 0.85rem;
    color: #777;
}


.about-section.enhanced {
    background-color: var(--light-color);
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.values-section {
    background-color: #fff;
    padding: 60px 0;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background-color: var(--light-color);
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.services-intro.enhanced {
    background-color: #f7f9fc;
    padding: 60px 0;
    text-align: center;
}

.section-header.center h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-header.center p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
}

.service-list.enhanced {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.service-content ul {
    padding-left: 20px;
    color: #444;
    font-size: 0.9rem;
}

.service-content ul li {
    margin-bottom: 6px;
    list-style: disc;
}

.service-cta.enhanced {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.contact-section.enhanced {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-method i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-method h4 {
    margin: 0 0 4px;
}

.contact-method p,
.contact-method a {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #005fa3;
}

.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert.error {
    background-color: #ffe5e5;
    color: #b70000;
}

.alert.success {
    background-color: #e6ffe6;
    color: #007a00;
}

.map-section {
    padding: 60px 20px;
    background-color: #f1f1f1;
}

.map-section .map-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}


