:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0);
    padding: 1rem 0;
    z-index: 1;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: light;
    color: white !important;
}

.navbar-brand i {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.nav-link {
    /* color: white !important; */
    margin: 0 1rem;
    font-weight: light;
}

.btn-contact {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(0, 61, 122, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    background-image: url('../../assets/images/hero-image.png');
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-learn {
    background: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border: 1px solid white;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 3rem 0;
    /* box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05); */
}

.stats-section .container {
    border-bottom: 1px solid #CDCDCD;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    /* color: var(--primary-blue); */
}

.stat-label {
    font-size: 1rem;
    color: #666;
    /* text-transform: uppercase; */
}

.team-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px; /* optional */
  object-fit: cover;
  max-width: 1100px;
  margin: auto;
}


/* About Section */
.about-section {
    padding: 4rem 0;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

/* .image-border {
    border-right: 2px solid var(--primary-blue);
    height: 100%;
} */

/* Project Images */
.project-images {
    margin: 3rem 0;
}

.project-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners-section {
    background: #fff;
    /* padding: 3rem 0; */
    text-align: center;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
}

.values-section h2 {
    font-size: 29px;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.values-area {
    background-image: url('../assets/images/house-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.value-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.value-number {
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.services-section h2 {
    text-align: start;
    font-size: 2.5rem;
}

.services-section p {
    text-align: start;
    margin-bottom: 3rem;
    font-size: 35px;
    font-weight: 500;
}

.service-item {
    background: white;
    padding: 14px;
    border-radius: 10px;
    /* margin-bottom: 2rem; */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Projects Section */
.projects-section {
    padding: 4rem 0;
}

.projects-section h2 {
    font-size: 2rem;
    color: #000;
    /* margin-bottom: 2rem; */
}

.projects-section p {
    font-size: 15px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-info {
    padding: 2rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.services-row {
    display: flex;
    justify-content: space-between;
}

.services-row-title {
    color: #898989;
}


/* Team Photo Section */
.team-section {
    padding: 0;
}

.team-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.testimonials-section h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #F3F9FF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background: #ddd;
}

.stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: white;
    /* color: white; */
    padding: 4rem 0;
    /* text-align: center; */
}

.cta-section h2 {
    font-size: 60px;
    margin-bottom: 0px;
}

.cta-section h3 {
    font-size: 56px;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: white;
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    border-color: var(--primary-blue);
}

/* Footer */
.footer {
    background: #F4FAFF;
    /* color: white; */
    padding: 3rem 0 1rem;
}

.footer-section h5 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #000;
    text-decoration: none;
}

.footer-bottom {
    /* border-top: 1px solid #333; */
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #888;
}

.values-section {
    background: #ffffff;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6c757d;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #6c757d;
}

.section-title span {
    color: #000;
}

.values-wrapper {
    align-items: center;
}

.values-image {
    max-width: 100%;
}

.value-box {
    background: #eef6ff;
    padding: 25px;
    position: relative;
    border-radius: 2px;
}

.value-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-box p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.value-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #0d5cb6;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}